
Appendix A - Complete List of TP Channel Arrays
CHAR VRQ_PAGES[][50] = {'VRQ-Main' //This page is the main VRQ page where all popups are displayed
,'VRQ-Browse' //Page with 6 Browse lines, displayed when VRQ is on Browse page
,'VRQ-Browse CoverArt' //Page with 6 Cover Art dynamic images, displayed when VRQ is on Browse
page and Browse By Covers is used.
,'VRQ-Player Chapters' //Similar to Browse, displayed when VRQ is on Chapters page
,'VRQ-Player Details' //Page with Movie title, Genre, Cast, etc. Displayed when VRQ is on
Details page
,'VRQ-Now Playing Chapters' //Similar to Chapters, but has extra info on the left side. Displayed
when VRQ is in DVD mode (playing a movie)
,'VRQ-Now Playing Details' //Similar to Details, but has extra info on the left side. Displayed
when VRQ is in DVD mode (playing a movie)
,'VRQ-Search Letter Row' //Search keyboard popup page
};
CHAR VRQ_NAV_THUMB_IMAGES[][15] = {'nav_thumb_1' //Thumbnail image for line 1
,'nav_thumb_2' //Thumbnail image for line 2
,'nav_thumb_3' //Thumbnail image for line 3
,'nav_thumb_4' //Thumbnail image for line 4
,'nav_thumb_5' //Thumbnail image for line 5
,'nav_thumb_6' //Thumbnail image for line 6
};
CHAR VRQ_NAV_FULL_IMAGES[][15] = {'nav_full_1' //Full size image for line 1
,'nav_full_2' //Full size image for line 2
,'nav_full_3' //Full size image for line 3
,'nav_full_4' //Full size image for line 4
,'nav_full_5' //Full size image for line 5
,'nav_full_6' //Full size image for line 6
};
CHAR VRQ_PLAYER_IMAGE[] = 'player_full'; //Full size image for Player page
CHAR VRQ_SYSTEM_ICONS[][25] = {'' //intentionally blank (no image)
,'NOWPLAYING.png' //Now Playing icon
,'ALLDISCS.png' //All Discs icon
,'GENRES.png' //Genres icon
,'RATINGS.png' //Ratings icon
,'ACTORS.png' //Actors icon
,'DIRECTORS.png' //Directors icon
,'RECENTLYADDED.png' //Recently Added icon
,'RECENTLYPLAYED.png' //Recently Played icon
,'CHANGERS.png' //Changers icon
};
/*********************************************************************************
INTEGER VRQ_CMDS[]: This array contains the channel numbers for all the commands
available in the module. For any command you do not wish to use or is marked
"Not Used" or "reserved", please set the value to 9999, as is the case for some
of the values already.
**NOTE: It is ESSENTIAL that you keep the array IN ORDER and do not delete
any of the indexes in the array. It will not work otherwise.
**********************************************************************************/
INTEGER VRQ_CMDS[] = { 1 //Connect to VRQ 1
,9999 //Not Used 2 *reserved for future use
,9999 //Not Used 3 *reserved for future use
,9999 //Not Used 4 *reserved for future use
,9999 //Not Used 5 *reserved for future use
,9999 //Not Used 6 *reserved for future use
,7 //Recently Added 7
,8 //Recently Played 8
,9 //Changers 9
,10 //All Movies 10
,11 //Actors 11
,12 //Directors 12
,13 //Genres 13
,14 //Ratings 14
,15 //Now Playing 15
,16 //Page Up 6 16
,17 //Page Down 6 17
,18 //Cursor UP 18
,19 //Cursor Down 19
,20 //Cursor Left 20
,21 //Cursor Right 21
- A 1 -
,22 //Go to top 22