├── CHANGELOG.md
├── LICENSE
├── README.md
├── documentation
├── 1-components.md
├── 2-Contenthandlers_Guide.md
├── 3-ViewStack_Guide.md
├── 4-SGDEX_Channel_Tutorial.md
├── 5-Themes_Guide.md
├── 6-ContentManager_with_Custom_Views_Guide.md
└── README.md
├── extensions
├── README.md
├── SGDEX.brs
└── SGDEX
│ ├── ButtonBar
│ ├── ButtonBar.brs
│ └── ButtonBar.xml
│ ├── ComponentController
│ ├── ComponentController.brs
│ ├── ComponentController.xml
│ └── ViewStack
│ │ ├── ViewManager.brs
│ │ ├── ViewManager.xml
│ │ └── ViewStack.xml
│ ├── ContentManager
│ ├── ContentManager.brs
│ ├── ContentManager.xml
│ ├── ContentManagerDetails
│ │ ├── ContentManagerDetails.brs
│ │ └── ContentManagerDetails.xml
│ ├── ContentManagerMedia
│ │ ├── ContentManagerMedia.brs
│ │ └── ContentManagerMedia.xml
│ ├── ContentManagerTimeGrid
│ │ ├── ContentManagerTimeGrid.brs
│ │ └── ContentManagerTimeGrid.xml
│ └── ContentManagerUtils.brs
│ ├── Handlers
│ ├── BookmarksHandler.brs
│ ├── BookmarksHandler.xml
│ ├── ContentHandler.brs
│ ├── ContentHandler.xml
│ ├── EntitlementHandler.brs
│ ├── EntitlementHandler.xml
│ ├── EntitlementHandler_RokuBilling.brs
│ ├── EntitlementHandler_TVOD.brs
│ ├── EntitlementHandler_UserPass.brs
│ ├── RAFHandler.brs
│ └── RAFHandler.xml
│ ├── Images
│ ├── ButtonBar
│ │ ├── btn_corner_left.png
│ │ ├── btn_corner_right.png
│ │ ├── gradient_black-transparent-vertical.png
│ │ ├── gradient_black-transparent.png
│ │ ├── ic_arrow_down.png
│ │ ├── ic_arrow_left.png
│ │ ├── ic_arrow_right.png
│ │ ├── ic_arrow_up.png
│ │ └── rectangle_background.png
│ ├── Progress bar.9.png
│ ├── focus.9.png
│ ├── list_focus.9.png
│ ├── loader.png
│ ├── pause.png
│ └── play.png
│ ├── Scenes
│ ├── BaseScene.brs
│ └── BaseScene.xml
│ └── Views
│ ├── CategoryListView
│ ├── CategoryListView.brs
│ ├── CategoryListView.xml
│ ├── ContentManager.brs
│ ├── MarkupListWithRewFF.brs
│ └── MarkupListWithRewFF.xml
│ ├── DetailsView
│ ├── DetailsView.brs
│ └── DetailsView.xml
│ ├── EntitlementView
│ ├── EntitlementView.brs
│ └── EntitlementView.xml
│ ├── GridView
│ ├── GridView.brs
│ └── GridView.xml
│ ├── MediaView
│ ├── MediaView.brs
│ ├── MediaView.xml
│ └── NowPlayingView
│ │ ├── CustomAudioNode.brs
│ │ ├── CustomAudioNode.xml
│ │ ├── NowPlayingView.brs
│ │ ├── NowPlayingView.xml
│ │ ├── TrickPlayBar.brs
│ │ └── TrickPlayBar.xml
│ ├── OtherNodes
│ ├── FadingBackground
│ │ ├── FadingBackground.brs
│ │ └── FadingBackground.xml
│ ├── FocusableGroup
│ │ ├── FocusableGroup.brs
│ │ ├── FocusableGroup.xml
│ │ └── FocusableLayoutGroup.xml
│ ├── ItemComponents
│ │ ├── ButtonBarItemComponent
│ │ │ ├── ButtonBarItemComponent.brs
│ │ │ └── ButtonBarItemComponent.xml
│ │ ├── DefaultRowTitleComponent
│ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ └── DefaultRowTitleComponent.xml
│ │ ├── MediaViewButtonItem
│ │ │ ├── MediaViewButtonItem.brs
│ │ │ └── MediaViewButtonItem.xml
│ │ ├── NarrowCategoryListItemComponent
│ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ └── NarrowCategoryListItemComponent.xml
│ │ ├── RoundedRectangleItemComponent
│ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ └── RoundedRectangleItemComponent.xml
│ │ ├── SimpleGridItemComponent
│ │ │ ├── SimpleGridItemComponent.brs
│ │ │ └── SimpleGridItemComponent.xml
│ │ ├── StandardCategoryListItemComponent
│ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ └── StandardCategoryListItemComponent.xml
│ │ ├── StandardGridItemComponent
│ │ │ ├── StandardGridItemComponent.brs
│ │ │ └── StandardGridItemComponent.xml
│ │ ├── TitleAndPosterGridItemComponent
│ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ └── Views
│ │ ├── DurationBar
│ │ ├── DurationBar.brs
│ │ └── DurationBar.xml
│ │ ├── ItemDetailsView
│ │ ├── ItemDetailsView.brs
│ │ └── ItemDetailsView.xml
│ │ ├── LoadingFacade
│ │ ├── LoadingFacade.brs
│ │ └── LoadingFacade.xml
│ │ └── StyledPoster
│ │ ├── StyledPoster.brs
│ │ └── StyledPoster.xml
│ ├── ParagraphView
│ ├── ParagraphView.brs
│ └── ParagraphView.xml
│ ├── SGDEXComponent
│ ├── SGDEXComponent.brs
│ └── SGDEXComponent.xml
│ ├── SearchView
│ ├── SearchView.brs
│ └── SearchView.xml
│ ├── SlideShowView
│ ├── SlideShowView.brs
│ └── SlideShowView.xml
│ ├── TimeGridView
│ ├── CustomTimeGrid
│ │ ├── CustomTimeGrid.brs
│ │ └── CustomTimeGrid.xml
│ ├── TimeGridChannelItemComponent
│ │ ├── TimeGridChannelItemComponent.brs
│ │ └── TimeGridChannelItemComponent.xml
│ ├── TimeGridView.brs
│ └── TimeGridView.xml
│ ├── VideoView
│ ├── EndcardView
│ │ ├── EndcardView.brs
│ │ └── EndcardView.xml
│ ├── VideoView.brs
│ └── VideoView.xml
│ └── utils
│ └── Utils.brs
└── samples
├── 1_Setup+and+HelloWorld
├── Readme.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ └── SGDEX
│ │ ├── ButtonBar
│ │ ├── ButtonBar.brs
│ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ ├── ComponentController.brs
│ │ ├── ComponentController.xml
│ │ └── ViewStack
│ │ │ ├── ViewManager.brs
│ │ │ ├── ViewManager.xml
│ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ ├── ContentManager.brs
│ │ ├── ContentManager.xml
│ │ ├── ContentManagerDetails
│ │ │ ├── ContentManagerDetails.brs
│ │ │ └── ContentManagerDetails.xml
│ │ ├── ContentManagerMedia
│ │ │ ├── ContentManagerMedia.brs
│ │ │ └── ContentManagerMedia.xml
│ │ ├── ContentManagerTimeGrid
│ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ └── ContentManagerTimeGrid.xml
│ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ ├── BookmarksHandler.brs
│ │ ├── BookmarksHandler.xml
│ │ ├── ContentHandler.brs
│ │ ├── ContentHandler.xml
│ │ ├── EntitlementHandler.brs
│ │ ├── EntitlementHandler.xml
│ │ ├── EntitlementHandler_RokuBilling.brs
│ │ ├── EntitlementHandler_TVOD.brs
│ │ ├── EntitlementHandler_UserPass.brs
│ │ ├── RAFHandler.brs
│ │ └── RAFHandler.xml
│ │ ├── Images
│ │ ├── ButtonBar
│ │ │ ├── btn_corner_left.png
│ │ │ ├── btn_corner_right.png
│ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ ├── gradient_black-transparent.png
│ │ │ ├── ic_arrow_down.png
│ │ │ ├── ic_arrow_left.png
│ │ │ ├── ic_arrow_right.png
│ │ │ ├── ic_arrow_up.png
│ │ │ └── rectangle_background.png
│ │ ├── Progress bar.9.png
│ │ ├── focus.9.png
│ │ ├── list_focus.9.png
│ │ ├── loader.png
│ │ ├── pause.png
│ │ └── play.png
│ │ ├── Scenes
│ │ ├── BaseScene.brs
│ │ └── BaseScene.xml
│ │ └── Views
│ │ ├── CategoryListView
│ │ ├── CategoryListView.brs
│ │ ├── CategoryListView.xml
│ │ ├── ContentManager.brs
│ │ ├── MarkupListWithRewFF.brs
│ │ └── MarkupListWithRewFF.xml
│ │ ├── DetailsView
│ │ ├── DetailsView.brs
│ │ └── DetailsView.xml
│ │ ├── EntitlementView
│ │ ├── EntitlementView.brs
│ │ └── EntitlementView.xml
│ │ ├── GridView
│ │ ├── GridView.brs
│ │ └── GridView.xml
│ │ ├── MediaView
│ │ ├── MediaView.brs
│ │ ├── MediaView.xml
│ │ └── NowPlayingView
│ │ │ ├── CustomAudioNode.brs
│ │ │ ├── CustomAudioNode.xml
│ │ │ ├── NowPlayingView.brs
│ │ │ ├── NowPlayingView.xml
│ │ │ ├── TrickPlayBar.brs
│ │ │ └── TrickPlayBar.xml
│ │ ├── OtherNodes
│ │ ├── FadingBackground
│ │ │ ├── FadingBackground.brs
│ │ │ └── FadingBackground.xml
│ │ ├── FocusableGroup
│ │ │ ├── FocusableGroup.brs
│ │ │ ├── FocusableGroup.xml
│ │ │ └── FocusableLayoutGroup.xml
│ │ ├── ItemComponents
│ │ │ ├── ButtonBarItemComponent
│ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ ├── DefaultRowTitleComponent
│ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ ├── MediaViewButtonItem
│ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ └── MediaViewButtonItem.xml
│ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ ├── SimpleGridItemComponent
│ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ ├── StandardGridItemComponent
│ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ └── StandardGridItemComponent.xml
│ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ └── Views
│ │ │ ├── DurationBar
│ │ │ ├── DurationBar.brs
│ │ │ └── DurationBar.xml
│ │ │ ├── ItemDetailsView
│ │ │ ├── ItemDetailsView.brs
│ │ │ └── ItemDetailsView.xml
│ │ │ ├── LoadingFacade
│ │ │ ├── LoadingFacade.brs
│ │ │ └── LoadingFacade.xml
│ │ │ └── StyledPoster
│ │ │ ├── StyledPoster.brs
│ │ │ └── StyledPoster.xml
│ │ ├── ParagraphView
│ │ ├── ParagraphView.brs
│ │ └── ParagraphView.xml
│ │ ├── SGDEXComponent
│ │ ├── SGDEXComponent.brs
│ │ └── SGDEXComponent.xml
│ │ ├── SearchView
│ │ ├── SearchView.brs
│ │ └── SearchView.xml
│ │ ├── SlideShowView
│ │ ├── SlideShowView.brs
│ │ └── SlideShowView.xml
│ │ ├── TimeGridView
│ │ ├── CustomTimeGrid
│ │ │ ├── CustomTimeGrid.brs
│ │ │ └── CustomTimeGrid.xml
│ │ ├── TimeGridChannelItemComponent
│ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ └── TimeGridChannelItemComponent.xml
│ │ ├── TimeGridView.brs
│ │ └── TimeGridView.xml
│ │ ├── VideoView
│ │ ├── EndcardView
│ │ │ ├── EndcardView.brs
│ │ │ └── EndcardView.xml
│ │ ├── VideoView.brs
│ │ └── VideoView.xml
│ │ └── utils
│ │ └── Utils.brs
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── 2_Basic+Channel
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── EpisodePickerLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── EndcardHandler.brs
│ │ ├── EndcardHandler.xml
│ │ ├── RootHandler.brs
│ │ ├── RootHandler.xml
│ │ ├── SeasonsHandler.brs
│ │ └── SeasonsHandler.xml
├── docs
│ ├── 1.png
│ ├── 2.jpg
│ └── 3.jpg
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 3_Grid
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── GridHandler.brs
│ │ └── GridHandler.xml
├── docs
│ └── 1.jpg
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 4_DetailsScreen
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── GridHandler.brs
│ │ └── GridHandler.xml
├── docs
│ └── 1.jpg
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 5_Video
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── GridHandler.brs
│ │ └── GridHandler.xml
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 6_Endcards
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── EndcardHandler.brs
│ │ ├── EndcardHandler.xml
│ │ ├── GridHandler.brs
│ │ └── GridHandler.xml
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 7_EpisodePickerScreen
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── EpisodePickerLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── GridHandler.brs
│ │ ├── GridHandler.xml
│ │ ├── SeasonsHandler.brs
│ │ └── SeasonsHandler.xml
├── docs
│ └── 1.jpg
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 8_Custom+Screen
├── README.md
├── components
│ ├── CustomView
│ │ └── custom.xml
│ ├── CustomViewLogic.brs
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── EpisodePickerLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── GridHandler.brs
│ │ ├── GridHandler.xml
│ │ ├── SeasonsHandler.brs
│ │ └── SeasonsHandler.xml
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── 9_Bookmarks
├── README.md
├── components
│ ├── BookmarksHelper.brs
│ ├── DeepLinkingLogic.brs
│ ├── DetailsViewLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── RegistryBookmarksHandler.brs
│ ├── RegistryBookmarksHandler.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── DetailsHandler.brs
│ │ └── DetailsHandler.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── ButtonBar_MultiStack
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── GridViewLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── SearchViewLogic.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── ButtonBarHandler.brs
│ │ ├── ButtonBarHandler.xml
│ │ ├── GridHandler.brs
│ │ ├── GridHandler.xml
│ │ ├── SearchHandler.brs
│ │ └── SearchHandler.xml
├── feed
│ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── overhangLogo.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── CustomDetails_ContentManager
├── README.md
├── components
│ ├── CustomSlide.brs
│ ├── CustomSlide.xml
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHSlide.brs
│ │ ├── CHSlide.xml
│ │ ├── CHSlideItem.brs
│ │ └── CHSlideItem.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── spinner.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── CustomGrid_ContentManager
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── HomeView
│ │ ├── CustomZoomRowList.brs
│ │ ├── CustomZoomRowList.xml
│ │ ├── SimpleGridItem.brs
│ │ └── SimpleGridItem.xml
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── MediaScreenLogic.brs
│ ├── PlaybackView
│ │ ├── CustomMediaView.brs
│ │ ├── CustomMediaView.xml
│ │ ├── CustomUI.brs
│ │ ├── CustomUI.xml
│ │ └── ProxyVideo.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── GridHandler
│ │ ├── CHPaginatedRow.brs
│ │ ├── CHPaginatedRow.xml
│ │ ├── CHRoot.brs
│ │ └── CHRoot.xml
│ │ └── MediaHandler
│ │ ├── CHAudio.brs
│ │ ├── CHAudio.xml
│ │ ├── CHVideo.brs
│ │ └── CHVideo.xml
├── images
│ ├── fail.png
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── loading.png
│ ├── placeholder.png
│ ├── spinner.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── CustomTimeGrid_ContentManager
├── README.md
├── api
│ ├── 1_channels.json
│ ├── 2_channel_16172.json
│ ├── 2_channel_16173.json
│ ├── 2_channel_16174.json
│ ├── 2_channel_16175.json
│ ├── 2_channel_16176.json
│ ├── 2_channel_16177.json
│ ├── 2_channel_16178.json
│ ├── 2_channel_16179.json
│ ├── 2_channel_16180.json
│ ├── 2_channel_16181.json
│ ├── 2_channel_16182.json
│ ├── 2_channel_16183.json
│ ├── 2_channel_48.json
│ ├── 2_channel_49.json
│ ├── 2_channel_50.json
│ ├── 2_channel_51.json
│ ├── 2_channel_52.json
│ ├── 2_channel_53.json
│ ├── 2_channel_54.json
│ ├── 2_channel_55.json
│ ├── 2_channel_56.json
│ ├── 2_channel_57.json
│ ├── 2_channel_59.json
│ ├── 2_channel_60.json
│ ├── 2_channel_61.json
│ ├── 2_channel_62.json
│ ├── 2_channel_63.json
│ ├── 2_channel_66.json
│ ├── 2_channel_68.json
│ ├── 2_channel_69.json
│ ├── 3_guide_16172.json
│ ├── 3_guide_16173.json
│ ├── 3_guide_16174.json
│ ├── 3_guide_16175.json
│ ├── 3_guide_16176.json
│ ├── 3_guide_16177.json
│ ├── 3_guide_16178.json
│ ├── 3_guide_16179.json
│ ├── 3_guide_16180.json
│ ├── 3_guide_16181.json
│ ├── 3_guide_16182.json
│ ├── 3_guide_16183.json
│ ├── 3_guide_48.json
│ ├── 3_guide_49.json
│ ├── 3_guide_50.json
│ ├── 3_guide_51.json
│ ├── 3_guide_52.json
│ ├── 3_guide_53.json
│ ├── 3_guide_54.json
│ ├── 3_guide_55.json
│ ├── 3_guide_56.json
│ ├── 3_guide_57.json
│ ├── 3_guide_59.json
│ ├── 3_guide_60.json
│ ├── 3_guide_61.json
│ ├── 3_guide_62.json
│ ├── 3_guide_63.json
│ ├── 3_guide_66.json
│ ├── 3_guide_68.json
│ └── 3_guide_69.json
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── MyTimeGrid.brs
│ ├── MyTimeGrid.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHRoot.brs
│ │ ├── CHRoot.xml
│ │ ├── CHRow.brs
│ │ └── CHRow.xml
├── images
│ ├── background.jpg
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── placeholder.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── EntitlementView_RokuBilling
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsScreenLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoPlayerLogic.brs
│ └── content
│ │ ├── CGDetails.brs
│ │ ├── CGDetails.xml
│ │ ├── CGRoot.brs
│ │ ├── CGRoot.xml
│ │ ├── CheckEntitlementHandler.brs
│ │ ├── CheckEntitlementHandler.xml
│ │ ├── HandlerEntitlement.brs
│ │ ├── HandlerEntitlement.xml
│ │ └── feed.json
├── images
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
├── ParagraphView
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── ParagraphHelper.brs
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHRoot.brs
│ │ └── CHRoot.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── overhangLogo.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── RAF_Client_Stitched
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── HandlerRAF.brs
│ │ ├── HandlerRAF.xml
│ │ ├── VideoHandler.brs
│ │ └── VideoHandler.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── README.md
├── Roku_Recommends
├── README.md
├── components
│ ├── CustomButtonBar
│ │ ├── ButtonBarItem.brs
│ │ ├── ButtonBarItem.xml
│ │ ├── CustomButtonBar.brs
│ │ └── CustomButtonBar.xml
│ ├── DeepLinkingLogic.brs
│ ├── DetailsView.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ ├── VideoView.brs
│ └── content
│ │ ├── CHButtonBar.brs
│ │ ├── CHButtonBar.xml
│ │ ├── CHRoot.brs
│ │ ├── CHRoot.xml
│ │ ├── HandlerRAF.brs
│ │ └── HandlerRAF.xml
├── images
│ ├── browse.png
│ ├── home.png
│ ├── icon_focus_hd.png
│ ├── icon_side_hd.png
│ ├── movies-folder.png
│ ├── options.png
│ ├── search.png
│ ├── series.png
│ ├── splash_fhd.jpg
│ └── splash_hd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── SearchView
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHSearch.brs
│ │ └── CHSearch.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── TimeGridView
├── README.md
├── api
│ ├── 1_channels.json
│ ├── 2_channel_16172.json
│ ├── 2_channel_16173.json
│ ├── 2_channel_16174.json
│ ├── 2_channel_16175.json
│ ├── 2_channel_16176.json
│ ├── 2_channel_16177.json
│ ├── 2_channel_16178.json
│ ├── 2_channel_16179.json
│ ├── 2_channel_16180.json
│ ├── 2_channel_16181.json
│ ├── 2_channel_16182.json
│ ├── 2_channel_16183.json
│ ├── 2_channel_48.json
│ ├── 2_channel_49.json
│ ├── 2_channel_50.json
│ ├── 2_channel_51.json
│ ├── 2_channel_52.json
│ ├── 2_channel_53.json
│ ├── 2_channel_54.json
│ ├── 2_channel_55.json
│ ├── 2_channel_56.json
│ ├── 2_channel_57.json
│ ├── 2_channel_59.json
│ ├── 2_channel_60.json
│ ├── 2_channel_61.json
│ ├── 2_channel_62.json
│ ├── 2_channel_63.json
│ ├── 2_channel_66.json
│ ├── 2_channel_68.json
│ ├── 2_channel_69.json
│ ├── 3_guide_16172.json
│ ├── 3_guide_16173.json
│ ├── 3_guide_16174.json
│ ├── 3_guide_16175.json
│ ├── 3_guide_16176.json
│ ├── 3_guide_16177.json
│ ├── 3_guide_16178.json
│ ├── 3_guide_16179.json
│ ├── 3_guide_16180.json
│ ├── 3_guide_16181.json
│ ├── 3_guide_16182.json
│ ├── 3_guide_16183.json
│ ├── 3_guide_48.json
│ ├── 3_guide_49.json
│ ├── 3_guide_50.json
│ ├── 3_guide_51.json
│ ├── 3_guide_52.json
│ ├── 3_guide_53.json
│ ├── 3_guide_54.json
│ ├── 3_guide_55.json
│ ├── 3_guide_56.json
│ ├── 3_guide_57.json
│ ├── 3_guide_59.json
│ ├── 3_guide_60.json
│ ├── 3_guide_61.json
│ ├── 3_guide_62.json
│ ├── 3_guide_63.json
│ ├── 3_guide_66.json
│ ├── 3_guide_68.json
│ └── 3_guide_69.json
├── components
│ ├── DeepLinkingLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHRoot.brs
│ │ ├── CHRoot.xml
│ │ ├── CHRow.brs
│ │ └── CHRow.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ └── main.brs
├── audio_mode
├── README.md
├── components
│ ├── DeepLinkingLogic.brs
│ ├── DetailsScreenLogic.brs
│ ├── MainScene.brs
│ ├── MainScene.xml
│ ├── MediaPlayerLogic.brs
│ ├── SGDEX
│ │ ├── ButtonBar
│ │ │ ├── ButtonBar.brs
│ │ │ └── ButtonBar.xml
│ │ ├── ComponentController
│ │ │ ├── ComponentController.brs
│ │ │ ├── ComponentController.xml
│ │ │ └── ViewStack
│ │ │ │ ├── ViewManager.brs
│ │ │ │ ├── ViewManager.xml
│ │ │ │ └── ViewStack.xml
│ │ ├── ContentManager
│ │ │ ├── ContentManager.brs
│ │ │ ├── ContentManager.xml
│ │ │ ├── ContentManagerDetails
│ │ │ │ ├── ContentManagerDetails.brs
│ │ │ │ └── ContentManagerDetails.xml
│ │ │ ├── ContentManagerMedia
│ │ │ │ ├── ContentManagerMedia.brs
│ │ │ │ └── ContentManagerMedia.xml
│ │ │ ├── ContentManagerTimeGrid
│ │ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ │ └── ContentManagerTimeGrid.xml
│ │ │ └── ContentManagerUtils.brs
│ │ ├── Handlers
│ │ │ ├── BookmarksHandler.brs
│ │ │ ├── BookmarksHandler.xml
│ │ │ ├── ContentHandler.brs
│ │ │ ├── ContentHandler.xml
│ │ │ ├── EntitlementHandler.brs
│ │ │ ├── EntitlementHandler.xml
│ │ │ ├── EntitlementHandler_RokuBilling.brs
│ │ │ ├── EntitlementHandler_TVOD.brs
│ │ │ ├── EntitlementHandler_UserPass.brs
│ │ │ ├── RAFHandler.brs
│ │ │ └── RAFHandler.xml
│ │ ├── Images
│ │ │ ├── ButtonBar
│ │ │ │ ├── btn_corner_left.png
│ │ │ │ ├── btn_corner_right.png
│ │ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ │ ├── gradient_black-transparent.png
│ │ │ │ ├── ic_arrow_down.png
│ │ │ │ ├── ic_arrow_left.png
│ │ │ │ ├── ic_arrow_right.png
│ │ │ │ ├── ic_arrow_up.png
│ │ │ │ └── rectangle_background.png
│ │ │ ├── Progress bar.9.png
│ │ │ ├── focus.9.png
│ │ │ ├── list_focus.9.png
│ │ │ ├── loader.png
│ │ │ ├── pause.png
│ │ │ └── play.png
│ │ ├── Scenes
│ │ │ ├── BaseScene.brs
│ │ │ └── BaseScene.xml
│ │ └── Views
│ │ │ ├── CategoryListView
│ │ │ ├── CategoryListView.brs
│ │ │ ├── CategoryListView.xml
│ │ │ ├── ContentManager.brs
│ │ │ ├── MarkupListWithRewFF.brs
│ │ │ └── MarkupListWithRewFF.xml
│ │ │ ├── DetailsView
│ │ │ ├── DetailsView.brs
│ │ │ └── DetailsView.xml
│ │ │ ├── EntitlementView
│ │ │ ├── EntitlementView.brs
│ │ │ └── EntitlementView.xml
│ │ │ ├── GridView
│ │ │ ├── GridView.brs
│ │ │ └── GridView.xml
│ │ │ ├── MediaView
│ │ │ ├── MediaView.brs
│ │ │ ├── MediaView.xml
│ │ │ └── NowPlayingView
│ │ │ │ ├── CustomAudioNode.brs
│ │ │ │ ├── CustomAudioNode.xml
│ │ │ │ ├── NowPlayingView.brs
│ │ │ │ ├── NowPlayingView.xml
│ │ │ │ ├── TrickPlayBar.brs
│ │ │ │ └── TrickPlayBar.xml
│ │ │ ├── OtherNodes
│ │ │ ├── FadingBackground
│ │ │ │ ├── FadingBackground.brs
│ │ │ │ └── FadingBackground.xml
│ │ │ ├── FocusableGroup
│ │ │ │ ├── FocusableGroup.brs
│ │ │ │ ├── FocusableGroup.xml
│ │ │ │ └── FocusableLayoutGroup.xml
│ │ │ ├── ItemComponents
│ │ │ │ ├── ButtonBarItemComponent
│ │ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ │ ├── DefaultRowTitleComponent
│ │ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ │ ├── MediaViewButtonItem
│ │ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ │ └── MediaViewButtonItem.xml
│ │ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ │ ├── SimpleGridItemComponent
│ │ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ │ ├── StandardGridItemComponent
│ │ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ │ └── StandardGridItemComponent.xml
│ │ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ │ └── Views
│ │ │ │ ├── DurationBar
│ │ │ │ ├── DurationBar.brs
│ │ │ │ └── DurationBar.xml
│ │ │ │ ├── ItemDetailsView
│ │ │ │ ├── ItemDetailsView.brs
│ │ │ │ └── ItemDetailsView.xml
│ │ │ │ ├── LoadingFacade
│ │ │ │ ├── LoadingFacade.brs
│ │ │ │ └── LoadingFacade.xml
│ │ │ │ └── StyledPoster
│ │ │ │ ├── StyledPoster.brs
│ │ │ │ └── StyledPoster.xml
│ │ │ ├── ParagraphView
│ │ │ ├── ParagraphView.brs
│ │ │ └── ParagraphView.xml
│ │ │ ├── SGDEXComponent
│ │ │ ├── SGDEXComponent.brs
│ │ │ └── SGDEXComponent.xml
│ │ │ ├── SearchView
│ │ │ ├── SearchView.brs
│ │ │ └── SearchView.xml
│ │ │ ├── SlideShowView
│ │ │ ├── SlideShowView.brs
│ │ │ └── SlideShowView.xml
│ │ │ ├── TimeGridView
│ │ │ ├── CustomTimeGrid
│ │ │ │ ├── CustomTimeGrid.brs
│ │ │ │ └── CustomTimeGrid.xml
│ │ │ ├── TimeGridChannelItemComponent
│ │ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ │ └── TimeGridChannelItemComponent.xml
│ │ │ ├── TimeGridView.brs
│ │ │ └── TimeGridView.xml
│ │ │ ├── VideoView
│ │ │ ├── EndcardView
│ │ │ │ ├── EndcardView.brs
│ │ │ │ └── EndcardView.xml
│ │ │ ├── VideoView.brs
│ │ │ └── VideoView.xml
│ │ │ └── utils
│ │ │ └── Utils.brs
│ └── content
│ │ ├── CHRoot.brs
│ │ └── CHRoot.xml
├── images
│ ├── icon_focus_hd.png
│ ├── icon_focus_sd.png
│ ├── icon_side_hd.png
│ ├── icon_side_sd.png
│ ├── splash_fhd.jpg
│ ├── splash_hd.jpg
│ └── splash_sd.jpg
├── manifest
└── source
│ ├── SGDEX.brs
│ ├── main.brs
│ └── rsg_utils.brs
└── video_preloading
├── README.md
├── components
├── CustomMedia
│ ├── CustomEndcardLayout.xml
│ ├── CustomMedia.brs
│ └── CustomMedia.xml
├── DeepLinkingLogic.brs
├── DetailsView.brs
├── MainScene.brs
├── MainScene.xml
├── SGDEX
│ ├── ButtonBar
│ │ ├── ButtonBar.brs
│ │ └── ButtonBar.xml
│ ├── ComponentController
│ │ ├── ComponentController.brs
│ │ ├── ComponentController.xml
│ │ └── ViewStack
│ │ │ ├── ViewManager.brs
│ │ │ ├── ViewManager.xml
│ │ │ └── ViewStack.xml
│ ├── ContentManager
│ │ ├── ContentManager.brs
│ │ ├── ContentManager.xml
│ │ ├── ContentManagerDetails
│ │ │ ├── ContentManagerDetails.brs
│ │ │ └── ContentManagerDetails.xml
│ │ ├── ContentManagerMedia
│ │ │ ├── ContentManagerMedia.brs
│ │ │ └── ContentManagerMedia.xml
│ │ ├── ContentManagerTimeGrid
│ │ │ ├── ContentManagerTimeGrid.brs
│ │ │ └── ContentManagerTimeGrid.xml
│ │ └── ContentManagerUtils.brs
│ ├── Handlers
│ │ ├── BookmarksHandler.brs
│ │ ├── BookmarksHandler.xml
│ │ ├── ContentHandler.brs
│ │ ├── ContentHandler.xml
│ │ ├── EntitlementHandler.brs
│ │ ├── EntitlementHandler.xml
│ │ ├── EntitlementHandler_RokuBilling.brs
│ │ ├── EntitlementHandler_TVOD.brs
│ │ ├── EntitlementHandler_UserPass.brs
│ │ ├── RAFHandler.brs
│ │ └── RAFHandler.xml
│ ├── Images
│ │ ├── ButtonBar
│ │ │ ├── btn_corner_left.png
│ │ │ ├── btn_corner_right.png
│ │ │ ├── gradient_black-transparent-vertical.png
│ │ │ ├── gradient_black-transparent.png
│ │ │ ├── ic_arrow_down.png
│ │ │ ├── ic_arrow_left.png
│ │ │ ├── ic_arrow_right.png
│ │ │ ├── ic_arrow_up.png
│ │ │ └── rectangle_background.png
│ │ ├── Progress bar.9.png
│ │ ├── focus.9.png
│ │ ├── list_focus.9.png
│ │ ├── loader.png
│ │ ├── pause.png
│ │ └── play.png
│ ├── Scenes
│ │ ├── BaseScene.brs
│ │ └── BaseScene.xml
│ └── Views
│ │ ├── CategoryListView
│ │ ├── CategoryListView.brs
│ │ ├── CategoryListView.xml
│ │ ├── ContentManager.brs
│ │ ├── MarkupListWithRewFF.brs
│ │ └── MarkupListWithRewFF.xml
│ │ ├── DetailsView
│ │ ├── DetailsView.brs
│ │ └── DetailsView.xml
│ │ ├── EntitlementView
│ │ ├── EntitlementView.brs
│ │ └── EntitlementView.xml
│ │ ├── GridView
│ │ ├── GridView.brs
│ │ └── GridView.xml
│ │ ├── MediaView
│ │ ├── MediaView.brs
│ │ ├── MediaView.xml
│ │ └── NowPlayingView
│ │ │ ├── CustomAudioNode.brs
│ │ │ ├── CustomAudioNode.xml
│ │ │ ├── NowPlayingView.brs
│ │ │ ├── NowPlayingView.xml
│ │ │ ├── TrickPlayBar.brs
│ │ │ └── TrickPlayBar.xml
│ │ ├── OtherNodes
│ │ ├── FadingBackground
│ │ │ ├── FadingBackground.brs
│ │ │ └── FadingBackground.xml
│ │ ├── FocusableGroup
│ │ │ ├── FocusableGroup.brs
│ │ │ ├── FocusableGroup.xml
│ │ │ └── FocusableLayoutGroup.xml
│ │ ├── ItemComponents
│ │ │ ├── ButtonBarItemComponent
│ │ │ │ ├── ButtonBarItemComponent.brs
│ │ │ │ └── ButtonBarItemComponent.xml
│ │ │ ├── DefaultRowTitleComponent
│ │ │ │ ├── DefaultRowTitleComponent.brs
│ │ │ │ └── DefaultRowTitleComponent.xml
│ │ │ ├── MediaViewButtonItem
│ │ │ │ ├── MediaViewButtonItem.brs
│ │ │ │ └── MediaViewButtonItem.xml
│ │ │ ├── NarrowCategoryListItemComponent
│ │ │ │ ├── NarrowCategoryListItemComponent.brs
│ │ │ │ └── NarrowCategoryListItemComponent.xml
│ │ │ ├── RoundedRectangleItemComponent
│ │ │ │ ├── RoundedRectangleItemComponent.brs
│ │ │ │ └── RoundedRectangleItemComponent.xml
│ │ │ ├── SimpleGridItemComponent
│ │ │ │ ├── SimpleGridItemComponent.brs
│ │ │ │ └── SimpleGridItemComponent.xml
│ │ │ ├── StandardCategoryListItemComponent
│ │ │ │ ├── StandardCategoryListItemComponent.brs
│ │ │ │ └── StandardCategoryListItemComponent.xml
│ │ │ ├── StandardGridItemComponent
│ │ │ │ ├── StandardGridItemComponent.brs
│ │ │ │ └── StandardGridItemComponent.xml
│ │ │ ├── TitleAndPosterGridItemComponent
│ │ │ │ ├── TitleAndPosterGridItemComponent.brs
│ │ │ │ └── TitleAndPosterGridItemComponent.xml
│ │ │ └── TitleUnderItemAndPosterGridItemComponent
│ │ │ │ ├── TitleUnderItemAndPosterGridItemComponent.brs
│ │ │ │ └── TitleUnderItemAndPosterGridItemComponent.xml
│ │ └── Views
│ │ │ ├── DurationBar
│ │ │ ├── DurationBar.brs
│ │ │ └── DurationBar.xml
│ │ │ ├── ItemDetailsView
│ │ │ ├── ItemDetailsView.brs
│ │ │ └── ItemDetailsView.xml
│ │ │ ├── LoadingFacade
│ │ │ ├── LoadingFacade.brs
│ │ │ └── LoadingFacade.xml
│ │ │ └── StyledPoster
│ │ │ ├── StyledPoster.brs
│ │ │ └── StyledPoster.xml
│ │ ├── ParagraphView
│ │ ├── ParagraphView.brs
│ │ └── ParagraphView.xml
│ │ ├── SGDEXComponent
│ │ ├── SGDEXComponent.brs
│ │ └── SGDEXComponent.xml
│ │ ├── SearchView
│ │ ├── SearchView.brs
│ │ └── SearchView.xml
│ │ ├── SlideShowView
│ │ ├── SlideShowView.brs
│ │ └── SlideShowView.xml
│ │ ├── TimeGridView
│ │ ├── CustomTimeGrid
│ │ │ ├── CustomTimeGrid.brs
│ │ │ └── CustomTimeGrid.xml
│ │ ├── TimeGridChannelItemComponent
│ │ │ ├── TimeGridChannelItemComponent.brs
│ │ │ └── TimeGridChannelItemComponent.xml
│ │ ├── TimeGridView.brs
│ │ └── TimeGridView.xml
│ │ ├── VideoView
│ │ ├── EndcardView
│ │ │ ├── EndcardView.brs
│ │ │ └── EndcardView.xml
│ │ ├── VideoView.brs
│ │ └── VideoView.xml
│ │ └── utils
│ │ └── Utils.brs
└── content
│ ├── CHRoot.brs
│ └── CHRoot.xml
├── images
├── icon_focus_hd.png
├── icon_side_hd.png
├── splash_fhd.jpg
└── splash_hd.jpg
├── manifest
└── source
├── SGDEX.brs
└── main.brs
/extensions/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/extensions/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/extensions/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/extensions/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/1_Setup+and+HelloWorld/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/1_Setup+and+HelloWorld/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/docs/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/docs/1.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/docs/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/docs/2.jpg
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/docs/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/docs/3.jpg
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/2_Basic+Channel/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/2_Basic+Channel/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | function GetSceneName() as String
4 | return "MainScene"
5 | end function
6 |
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/3_Grid/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/3_Grid/docs/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/docs/1.jpg
--------------------------------------------------------------------------------
/samples/3_Grid/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/3_Grid/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/3_Grid/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/3_Grid/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/3_Grid/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/3_Grid/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/3_Grid/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/3_Grid/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/docs/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/docs/1.jpg
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/4_DetailsScreen/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/4_DetailsScreen/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/5_Video/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/5_Video/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/5_Video/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/5_Video/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/5_Video/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/5_Video/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/5_Video/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/6_Endcards/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/6_Endcards/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/6_Endcards/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/6_Endcards/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/6_Endcards/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/6_Endcards/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/6_Endcards/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/docs/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/docs/1.jpg
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/7_EpisodePickerScreen/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/7_EpisodePickerScreen/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/8_Custom+Screen/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/8_Custom+Screen/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/9_Bookmarks/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/9_Bookmarks/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/9_Bookmarks/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/9_Bookmarks/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/9_Bookmarks/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/9_Bookmarks/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/components/content/ButtonBarHandler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/overhangLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/overhangLogo.png
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ButtonBar_MultiStack/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/ButtonBar_MultiStack/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2020 Roku Corp. All Rights Reserved. **********
2 |
3 | ' This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/MainScene.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/content/CHSlide.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/components/content/CHSlideItem.brs:
--------------------------------------------------------------------------------
1 |
2 | sub GetContent()
3 | sleep(700)
4 | m.top.content.Update({
5 | hdPosterUrl : "https://dummyimage.com/600x400/ffffff/ff0000.png&text=item+" + m.top.slideIndex.toStr()
6 | },true)
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/spinner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/spinner.png
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomDetails_ContentManager/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/CustomDetails_ContentManager/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2021 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/HomeView/SimpleGridItem.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2021 Roku Corp. All Rights Reserved. **********
2 |
3 | function itemContentChanged()
4 | itemPoster = m.top.findNode("itemPoster")
5 | itemPoster.uri = m.top.itemContent.HDPOSTERURL
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/fail.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/loading.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/placeholder.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/spinner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/spinner.png
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/CustomGrid_ContentManager/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomGrid_ContentManager/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16172.json:
--------------------------------------------------------------------------------
1 | {"object_id":16172,"path":"\/guide\/channels\/16172","channel":{"call_sign":"KSAZ-DT","call_sign_src":"KSAZ-DT","major":10,"minor":1,"network":"FOX","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16173.json:
--------------------------------------------------------------------------------
1 | {"object_id":16173,"path":"\/guide\/channels\/16173","channel":{"call_sign":"Heroes","call_sign_src":"Heroes","major":10,"minor":3,"network":"HEROICN","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16174.json:
--------------------------------------------------------------------------------
1 | {"object_id":16174,"path":"\/guide\/channels\/16174","channel":{"call_sign":"Light","call_sign_src":"Light","major":10,"minor":4,"network":"LIGHTTV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16175.json:
--------------------------------------------------------------------------------
1 | {"object_id":16175,"path":"\/guide\/channels\/16175","channel":{"call_sign":"KPNX-HD","call_sign_src":"KPNX-HD","major":12,"minor":1,"network":"NBC","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16176.json:
--------------------------------------------------------------------------------
1 | {"object_id":16176,"path":"\/guide\/channels\/16176","channel":{"call_sign":"Justice","call_sign_src":"Justice","major":12,"minor":3,"network":"JUSTNW","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16177.json:
--------------------------------------------------------------------------------
1 | {"object_id":16177,"path":"\/guide\/channels\/16177","channel":{"call_sign":"Quest","call_sign_src":"Quest","major":12,"minor":4,"network":"QUESTSD","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16178.json:
--------------------------------------------------------------------------------
1 | {"object_id":16178,"path":"\/guide\/channels\/16178","channel":{"call_sign":"getTV","call_sign_src":"getTV","major":35,"minor":3,"network":"GETTV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16179.json:
--------------------------------------------------------------------------------
1 | {"object_id":16179,"path":"\/guide\/channels\/16179","channel":{"call_sign":"ESCAPE","call_sign_src":"ESCAPE","major":35,"minor":4,"network":"ESCAPE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16180.json:
--------------------------------------------------------------------------------
1 | {"object_id":16180,"path":"\/guide\/channels\/16180","channel":{"call_sign":"BOUNCE","call_sign_src":"BOUNCE","major":33,"minor":4,"network":"BOUNCE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16181.json:
--------------------------------------------------------------------------------
1 | {"object_id":16181,"path":"\/guide\/channels\/16181","channel":{"call_sign":"KASW-HD","call_sign_src":"KASW-HD","major":61,"minor":1,"network":"CW","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16182.json:
--------------------------------------------------------------------------------
1 | {"object_id":16182,"path":"\/guide\/channels\/16182","channel":{"call_sign":"Grit","call_sign_src":"Grit","major":61,"minor":3,"network":"GRIT","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_16183.json:
--------------------------------------------------------------------------------
1 | {"object_id":16183,"path":"\/guide\/channels\/16183","channel":{"call_sign":"Escape","call_sign_src":"Escape","major":61,"minor":4,"network":"ESCAPE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_48.json:
--------------------------------------------------------------------------------
1 | {"object_id":48,"path":"\/guide\/channels\/48","channel":{"call_sign":"AZPBS","call_sign_src":"AZPBS","major":8,"minor":1,"network":"PBS","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_49.json:
--------------------------------------------------------------------------------
1 | {"object_id":49,"path":"\/guide\/channels\/49","channel":{"call_sign":"Life","call_sign_src":"Life","major":8,"minor":2,"network":"PBS","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_50.json:
--------------------------------------------------------------------------------
1 | {"object_id":50,"path":"\/guide\/channels\/50","channel":{"call_sign":"World","call_sign_src":"World","major":8,"minor":3,"network":"WORLD","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_51.json:
--------------------------------------------------------------------------------
1 | {"object_id":51,"path":"\/guide\/channels\/51","channel":{"call_sign":"ABC15","call_sign_src":"ABC15","major":15,"minor":1,"network":"ABC","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_52.json:
--------------------------------------------------------------------------------
1 | {"object_id":52,"path":"\/guide\/channels\/52","channel":{"call_sign":"ANTENNA","call_sign_src":"ANTENNA","major":15,"minor":2,"network":"ANTENNA","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_53.json:
--------------------------------------------------------------------------------
1 | {"object_id":53,"path":"\/guide\/channels\/53","channel":{"call_sign":"LAFFTV","call_sign_src":"LAFFTV","major":15,"minor":3,"network":"LAFF","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_54.json:
--------------------------------------------------------------------------------
1 | {"object_id":54,"path":"\/guide\/channels\/54","channel":{"call_sign":"KPHO-HD","call_sign_src":"KPHO-HD","major":5,"minor":1,"network":"CBS","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_55.json:
--------------------------------------------------------------------------------
1 | {"object_id":55,"path":"\/guide\/channels\/55","channel":{"call_sign":"Cozi","call_sign_src":"Cozi","major":5,"minor":2,"network":"COZITV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_56.json:
--------------------------------------------------------------------------------
1 | {"object_id":56,"path":"\/guide\/channels\/56","channel":{"call_sign":"KTVK-HD","call_sign_src":"KTVK-HD","major":3,"minor":1,"network":null,"resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_57.json:
--------------------------------------------------------------------------------
1 | {"object_id":57,"path":"\/guide\/channels\/57","channel":{"call_sign":"KTVK-SD","call_sign_src":"KTVK-SD","major":3,"minor":2,"network":"COMET","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_59.json:
--------------------------------------------------------------------------------
1 | {"object_id":59,"path":"\/guide\/channels\/59","channel":{"call_sign":"KSAZSD","call_sign_src":"KSAZSD","major":10,"minor":2,"network":"FOX","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_60.json:
--------------------------------------------------------------------------------
1 | {"object_id":60,"path":"\/guide\/channels\/60","channel":{"call_sign":"BUZZR","call_sign_src":"BUZZR","major":45,"minor":3,"network":"BUZZR","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_61.json:
--------------------------------------------------------------------------------
1 | {"object_id":61,"path":"\/guide\/channels\/61","channel":{"call_sign":"Movies!","call_sign_src":"Movies!","major":45,"minor":2,"network":"MVIES","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_62.json:
--------------------------------------------------------------------------------
1 | {"object_id":62,"path":"\/guide\/channels\/62","channel":{"call_sign":"ION","call_sign_src":"ION","major":51,"minor":1,"network":"ION","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_63.json:
--------------------------------------------------------------------------------
1 | {"object_id":63,"path":"\/guide\/channels\/63","channel":{"call_sign":"IONLife","call_sign_src":"IONLife","major":51,"minor":3,"network":"IONLIFE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_66.json:
--------------------------------------------------------------------------------
1 | {"object_id":66,"path":"\/guide\/channels\/66","channel":{"call_sign":"GRIT","call_sign_src":"GRIT","major":33,"minor":3,"network":"GRIT","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_68.json:
--------------------------------------------------------------------------------
1 | {"object_id":68,"path":"\/guide\/channels\/68","channel":{"call_sign":"KAZT","call_sign_src":"KAZT","major":7,"minor":1,"network":null,"resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/api/2_channel_69.json:
--------------------------------------------------------------------------------
1 | {"object_id":69,"path":"\/guide\/channels\/69","channel":{"call_sign":"MeTV","call_sign_src":"MeTV","major":7,"minor":2,"network":"METVN","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/background.jpg
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/placeholder.png
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/CustomTimeGrid_ContentManager/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/CustomTimeGrid_ContentManager/source/main.brs:
--------------------------------------------------------------------------------
1 | ' This function should be implemented in order to start SGDEX channel
2 | function GetSceneName() as String
3 | return "MainScene"
4 | end function
5 |
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/components/content/CGRoot.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/EntitlementView_RokuBilling/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/EntitlementView_RokuBilling/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2017 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/ParagraphView/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/ParagraphView/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/ParagraphView/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/ParagraphView/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/ParagraphView/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/ParagraphView/images/overhangLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/overhangLogo.png
--------------------------------------------------------------------------------
/samples/ParagraphView/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/ParagraphView/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/ParagraphView/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/ParagraphView/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/ParagraphView/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | ' This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/RAF_Client_Stitched/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/RAF_Client_Stitched/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2020 Roku Corp. All Rights Reserved. **********
2 |
3 | function GetSceneName() as String
4 | return "MainScene"
5 | end function
6 |
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/browse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/browse.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/home.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/movies-folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/movies-folder.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/options.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/search.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/series.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/series.png
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/Roku_Recommends/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/Roku_Recommends/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/Roku_Recommends/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | function GetSceneName() as String
4 | return "MainScene"
5 | end function
6 |
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/SearchView/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/SearchView/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/SearchView/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/SearchView/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/SearchView/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/SearchView/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/SearchView/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/SearchView/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/SearchView/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/SearchView/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start RCL channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16172.json:
--------------------------------------------------------------------------------
1 | {"object_id":16172,"path":"\/guide\/channels\/16172","channel":{"call_sign":"KSAZ-DT","call_sign_src":"KSAZ-DT","major":10,"minor":1,"network":"FOX","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16173.json:
--------------------------------------------------------------------------------
1 | {"object_id":16173,"path":"\/guide\/channels\/16173","channel":{"call_sign":"Heroes","call_sign_src":"Heroes","major":10,"minor":3,"network":"HEROICN","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16174.json:
--------------------------------------------------------------------------------
1 | {"object_id":16174,"path":"\/guide\/channels\/16174","channel":{"call_sign":"Light","call_sign_src":"Light","major":10,"minor":4,"network":"LIGHTTV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16175.json:
--------------------------------------------------------------------------------
1 | {"object_id":16175,"path":"\/guide\/channels\/16175","channel":{"call_sign":"KPNX-HD","call_sign_src":"KPNX-HD","major":12,"minor":1,"network":"NBC","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16176.json:
--------------------------------------------------------------------------------
1 | {"object_id":16176,"path":"\/guide\/channels\/16176","channel":{"call_sign":"Justice","call_sign_src":"Justice","major":12,"minor":3,"network":"JUSTNW","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16177.json:
--------------------------------------------------------------------------------
1 | {"object_id":16177,"path":"\/guide\/channels\/16177","channel":{"call_sign":"Quest","call_sign_src":"Quest","major":12,"minor":4,"network":"QUESTSD","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16178.json:
--------------------------------------------------------------------------------
1 | {"object_id":16178,"path":"\/guide\/channels\/16178","channel":{"call_sign":"getTV","call_sign_src":"getTV","major":35,"minor":3,"network":"GETTV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16179.json:
--------------------------------------------------------------------------------
1 | {"object_id":16179,"path":"\/guide\/channels\/16179","channel":{"call_sign":"ESCAPE","call_sign_src":"ESCAPE","major":35,"minor":4,"network":"ESCAPE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16180.json:
--------------------------------------------------------------------------------
1 | {"object_id":16180,"path":"\/guide\/channels\/16180","channel":{"call_sign":"BOUNCE","call_sign_src":"BOUNCE","major":33,"minor":4,"network":"BOUNCE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16181.json:
--------------------------------------------------------------------------------
1 | {"object_id":16181,"path":"\/guide\/channels\/16181","channel":{"call_sign":"KASW-HD","call_sign_src":"KASW-HD","major":61,"minor":1,"network":"CW","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16182.json:
--------------------------------------------------------------------------------
1 | {"object_id":16182,"path":"\/guide\/channels\/16182","channel":{"call_sign":"Grit","call_sign_src":"Grit","major":61,"minor":3,"network":"GRIT","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_16183.json:
--------------------------------------------------------------------------------
1 | {"object_id":16183,"path":"\/guide\/channels\/16183","channel":{"call_sign":"Escape","call_sign_src":"Escape","major":61,"minor":4,"network":"ESCAPE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_48.json:
--------------------------------------------------------------------------------
1 | {"object_id":48,"path":"\/guide\/channels\/48","channel":{"call_sign":"AZPBS","call_sign_src":"AZPBS","major":8,"minor":1,"network":"PBS","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_49.json:
--------------------------------------------------------------------------------
1 | {"object_id":49,"path":"\/guide\/channels\/49","channel":{"call_sign":"Life","call_sign_src":"Life","major":8,"minor":2,"network":"PBS","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_50.json:
--------------------------------------------------------------------------------
1 | {"object_id":50,"path":"\/guide\/channels\/50","channel":{"call_sign":"World","call_sign_src":"World","major":8,"minor":3,"network":"WORLD","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_51.json:
--------------------------------------------------------------------------------
1 | {"object_id":51,"path":"\/guide\/channels\/51","channel":{"call_sign":"ABC15","call_sign_src":"ABC15","major":15,"minor":1,"network":"ABC","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_52.json:
--------------------------------------------------------------------------------
1 | {"object_id":52,"path":"\/guide\/channels\/52","channel":{"call_sign":"ANTENNA","call_sign_src":"ANTENNA","major":15,"minor":2,"network":"ANTENNA","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_53.json:
--------------------------------------------------------------------------------
1 | {"object_id":53,"path":"\/guide\/channels\/53","channel":{"call_sign":"LAFFTV","call_sign_src":"LAFFTV","major":15,"minor":3,"network":"LAFF","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_54.json:
--------------------------------------------------------------------------------
1 | {"object_id":54,"path":"\/guide\/channels\/54","channel":{"call_sign":"KPHO-HD","call_sign_src":"KPHO-HD","major":5,"minor":1,"network":"CBS","resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_55.json:
--------------------------------------------------------------------------------
1 | {"object_id":55,"path":"\/guide\/channels\/55","channel":{"call_sign":"Cozi","call_sign_src":"Cozi","major":5,"minor":2,"network":"COZITV","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_56.json:
--------------------------------------------------------------------------------
1 | {"object_id":56,"path":"\/guide\/channels\/56","channel":{"call_sign":"KTVK-HD","call_sign_src":"KTVK-HD","major":3,"minor":1,"network":null,"resolution":"hd_1080"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_57.json:
--------------------------------------------------------------------------------
1 | {"object_id":57,"path":"\/guide\/channels\/57","channel":{"call_sign":"KTVK-SD","call_sign_src":"KTVK-SD","major":3,"minor":2,"network":"COMET","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_59.json:
--------------------------------------------------------------------------------
1 | {"object_id":59,"path":"\/guide\/channels\/59","channel":{"call_sign":"KSAZSD","call_sign_src":"KSAZSD","major":10,"minor":2,"network":"FOX","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_60.json:
--------------------------------------------------------------------------------
1 | {"object_id":60,"path":"\/guide\/channels\/60","channel":{"call_sign":"BUZZR","call_sign_src":"BUZZR","major":45,"minor":3,"network":"BUZZR","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_61.json:
--------------------------------------------------------------------------------
1 | {"object_id":61,"path":"\/guide\/channels\/61","channel":{"call_sign":"Movies!","call_sign_src":"Movies!","major":45,"minor":2,"network":"MVIES","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_62.json:
--------------------------------------------------------------------------------
1 | {"object_id":62,"path":"\/guide\/channels\/62","channel":{"call_sign":"ION","call_sign_src":"ION","major":51,"minor":1,"network":"ION","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_63.json:
--------------------------------------------------------------------------------
1 | {"object_id":63,"path":"\/guide\/channels\/63","channel":{"call_sign":"IONLife","call_sign_src":"IONLife","major":51,"minor":3,"network":"IONLIFE","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_66.json:
--------------------------------------------------------------------------------
1 | {"object_id":66,"path":"\/guide\/channels\/66","channel":{"call_sign":"GRIT","call_sign_src":"GRIT","major":33,"minor":3,"network":"GRIT","resolution":"sd"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_68.json:
--------------------------------------------------------------------------------
1 | {"object_id":68,"path":"\/guide\/channels\/68","channel":{"call_sign":"KAZT","call_sign_src":"KAZT","major":7,"minor":1,"network":null,"resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/api/2_channel_69.json:
--------------------------------------------------------------------------------
1 | {"object_id":69,"path":"\/guide\/channels\/69","channel":{"call_sign":"MeTV","call_sign_src":"MeTV","major":7,"minor":2,"network":"METVN","resolution":"hd_720"}}
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/TimeGridView/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/TimeGridView/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/TimeGridView/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/TimeGridView/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/TimeGridView/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/TimeGridView/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/TimeGridView/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/TimeGridView/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/TimeGridView/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/TimeGridView/source/main.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2019 Roku, Inc. All rights reserved.
2 |
3 | ' This function should be implemented in order to start SGDEX channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/audio_mode/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/components/SGDEX/Views/OtherNodes/ItemComponents/SimpleGridItemComponent/SimpleGridItemComponent.brs
--------------------------------------------------------------------------------
/samples/audio_mode/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/audio_mode/images/icon_focus_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/icon_focus_sd.png
--------------------------------------------------------------------------------
/samples/audio_mode/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/audio_mode/images/icon_side_sd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/icon_side_sd.png
--------------------------------------------------------------------------------
/samples/audio_mode/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/audio_mode/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/audio_mode/images/splash_sd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/audio_mode/images/splash_sd.jpg
--------------------------------------------------------------------------------
/samples/audio_mode/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2019 Roku Corp. All Rights Reserved. **********
2 |
3 | 'This function should be implemented in order to start RCL channel
4 | function GetSceneName() as String
5 | return "MainScene"
6 | end function
7 |
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/ComponentController/ViewStack/ViewStack.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/btn_corner_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/btn_corner_left.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/btn_corner_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/btn_corner_right.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/gradient_black-transparent-vertical.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/gradient_black-transparent.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_down.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_left.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_right.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/ic_arrow_up.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/ButtonBar/rectangle_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/ButtonBar/rectangle_background.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/Progress bar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/Progress bar.9.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/focus.9.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/list_focus.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/list_focus.9.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/loader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/loader.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/pause.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/components/SGDEX/Images/play.png
--------------------------------------------------------------------------------
/samples/video_preloading/components/SGDEX/Views/OtherNodes/ItemComponents/DefaultRowTitleComponent/DefaultRowTitleComponent.brs:
--------------------------------------------------------------------------------
1 | ' Copyright (c) 2018-2021 Roku, Inc. All rights reserved.
2 |
3 | sub onContentSet()
4 | if m.top.content <> invalid
5 | m.top.findNode("title").text = m.top.content.title
6 | end if
7 | end sub
8 |
--------------------------------------------------------------------------------
/samples/video_preloading/images/icon_focus_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/images/icon_focus_hd.png
--------------------------------------------------------------------------------
/samples/video_preloading/images/icon_side_hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/images/icon_side_hd.png
--------------------------------------------------------------------------------
/samples/video_preloading/images/splash_fhd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/images/splash_fhd.jpg
--------------------------------------------------------------------------------
/samples/video_preloading/images/splash_hd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rokudev/SceneGraphDeveloperExtensions/4ff929a54c2da31d5890d4807d94c99e981032f4/samples/video_preloading/images/splash_hd.jpg
--------------------------------------------------------------------------------
/samples/video_preloading/source/main.brs:
--------------------------------------------------------------------------------
1 | ' ********** Copyright 2021 Roku Corp. All Rights Reserved. **********
2 |
3 | function GetSceneName() as String
4 | return "MainScene"
5 | end function
6 |
--------------------------------------------------------------------------------