Window IDs: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Hitcher
No edit summary
No edit summary
 
(124 intermediate revisions by 16 users not shown)
Line 1: Line 1:
This table cross-references Window names, Window definitions, Window ID, and the delta Window ID's (this is the delta from the home window.) The code that performs the cross-reference is found in [https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk/xbmc/ButtonTranslator.cpp?view=markup ButtonTranslator.cpp].
{{mininav|[[Development]]|[[Add-on development]]}}
{{see also|Opening Windows and Dialogs|Python development|Skinning}}


* keymap.xml uses the Window name.
 
* XBMC's C++ code uses the Window definitions and Window ID's.
__TOC__
* skin .xml files use the Delta Window ID's
 
* XBMC.ActivateWindow() can use either the Window name, the Window ID, or the delta Window ID.
 
* sounds.xml can use the window name or window ID<br />
= Window IDs =
<section begin="main content" />
This table cross-references Window names, Window definitions, and Window ID.
 
Code that performs the cross-reference is found on Github as follows:
 
{{Github_link|[https://github.com/xbmc/xbmc/blob/master/xbmc/input/WindowTranslator.cpp Master Branch - WindowTranslator.cpp]}}
 
{{Github_link|[https://github.com/xbmc/xbmc/blob/master/xbmc/guilib/WindowIDs.h Master Branch - WindowsIDs.h]}}
 
 
 
* [[keymap.xml]] uses the Window name.
* Kodi's C++ code uses the Window definitions and Window ID's.
* ActivateWindow() should use the Window name.
* sounds.xml should use the window name<br />


'''You can use secondary parameters with all media windows, as can be seen here:'''
'''You can use secondary parameters with all media windows, as can be seen here:'''
* [[Opening Windows and Dialogs]]<br />
* '''[[Opening Windows and Dialogs]]'''
'''Example:'''
* You want a button in your skin or on your remote taking you directly to the movie listing you let that button do
ActivateWindow(VideoLibrary,MovieTitles)  (dharma)


ActivateWindow(Videos,MovieTitles)  (eden)


<br />
{| class="prettytable sortable"
 
|-
{| class="wikitable"
! Name !! Definition !! Window ID !! source XML file !! Remark
|-
| <code>home</code>
| <code>WINDOW_HOME</code>
| <code>10000</code>
| Home.xml
|-
| <code>programs</code>
| <code>WINDOW_PROGRAMS</code>
| <code>10001</code>
| MyPrograms.xml
|-
| <code>pictures</code>
| <code>WINDOW_PICTURES</code>
| <code>10002</code>
| MyPics.xml
|-
| <code>filemanager</code>
| <code>WINDOW_FILES</code>
| <code>10003</code>
| FileManager.xml
|-
| <code>settings</code>
| <code>WINDOW_SETTINGS_MENU</code>
| <code>10004</code>
| Settings.xml
|-
| <code>systeminfo</code>
| <code>WINDOW_SYSTEM_INFORMATION</code>
| <code>10007</code>
| SettingsSystemInfo.xml
|-
| <code>screencalibration</code>
| <code>WINDOW_SCREEN_CALIBRATION</code>
| <code>10011</code>
| SettingsScreenCalibration.xml
|-
| <code>systemsettings</code>
| <code>WINDOW_SETTINGS_START</code>
| <code>10016</code>
| SettingsCategory.xml
|-
| <code>systemsettings</code>
| <code>WINDOW_SETTINGS_SYSTEM</code>
| <code>10016</code>
| SettingsCategory.xml
|-
| <code>servicesettings</code>
| <code>WINDOW_SETTINGS_SERVICE</code>
| <code>10018</code>
| SettingsCategory.xml
|-
| <code>pvrsettings</code>
| <code>WINDOW_SETTINGS_MYPVR</code>
| <code>10021</code>
| SettingsCategory.xml
|-
| <code>gamesettings</code>
| <code>WINDOW_SETTINGS_MYGAMES</code>
| <code>10022</code>
| SettingsCategory.xml
|-
| <code>videos</code>
| <code>WINDOW_VIDEO_NAV</code>
| <code>10025</code>
| MyVideoNav.xml
|-
| <code>videoplaylist</code>
| <code>WINDOW_VIDEO_PLAYLIST</code>
| <code>10028</code>
| MyPlaylist.xml
|-
| <code>loginscreen</code>
| <code>WINDOW_LOGIN_SCREEN</code>
| <code>10029</code>
| LoginScreen.xml
|-
| <code>playersettings</code>
| <code>WINDOW_SETTINGS_PLAYER</code>
| <code>10030</code>
| SettingsCategory.xml
|-
| <code>mediasettings</code>
| <code>WINDOW_SETTINGS_MEDIA</code>
| <code>10031</code>
| SettingsCategory.xml
|-
| <code>interfacesettings</code>
| <code>WINDOW_SETTINGS_INTERFACE</code>
| <code>10032</code>
| SettingsCategory.xml
|-
| <code>profiles</code>
| <code>WINDOW_SETTINGS_PROFILES</code>
| <code>10034</code>
| SettingsProfile.xml
|-
| <code>skinsettings</code>
| <code>WINDOW_SKIN_SETTINGS</code>
| <code>10035</code>
| SkinSettings.xml
|-  
|-  
|  
| <code>addonbrowser</code>
<div class="indent">'''NAME''' </div>
| <code>WINDOW_ADDON_BROWSER</code>
|  
| <code>10040</code>
<div class="indent">'''DEFINITION''' </div>
| AddonBrowser.xml
|  
<div class="indent">'''WINDOW ID''' </div>
|  
<div class="indent">'''DELTA WINDOW ID''' </div>
|
<div class="indent">'''SOURCE XML FILE''' </div>
|-  
|-  
|  
| <code>eventlog</code>
<div class="indent">home </div>
| <code>WINDOW_EVENT_LOG</code>
|  
| <code>10050</code>
<div class="indent">WINDOW_HOME </div>
| EventLog.xml
|  
<div class="indent">10000 </div>
|  
<div class="indent">0 </div>
|
<div class="indent">Home.xml</div>
|-  
|-  
|  
| <code>favouritesbrowser</code>
<div class="indent">programs </div>
| <code>WINDOW_FAVOURITES</code>
|  
| <code>10060</code>
<div class="indent">WINDOW_PROGRAMS </div>
| MyFavourites.xml
|  
| Added in Kodi v20 Nexus <ref>https://github.com/xbmc/xbmc/pull/22001</ref>
<div class="indent">10001 </div>
|  
<div class="indent">1 </div>
|
<div class="indent">MyPrograms.xml</div>
|-  
|-  
|  
| <code>pointer</code>
<div class="indent">pictures </div>
| <code>WINDOW_DIALOG_POINTER</code>
|  
| <code>10099</code>
<div class="indent">WINDOW_PICTURES </div>
| Pointer.xml
|  
<div class="indent">10002 </div>
|  
<div class="indent">2 </div>
|
<div class="indent">MyPics.xml</div>
|-  
|-  
|  
| <code>yesnodialog</code>
<div class="indent">filemanager </div>
| <code>WINDOW_DIALOG_YES_NO</code>
|  
| <code>10100</code>
<div class="indent">WINDOW_FILES </div>
| DialogConfirm.xml
|  
<div class="indent">10003 </div>
|  
<div class="indent">3 </div>
|
<div class="indent">FileManager.xml</div>
|-  
|-  
|  
| <code>progressdialog</code>
<div class="indent">settings </div>
| <code>WINDOW_DIALOG_PROGRESS</code>
|  
| <code>10101</code>
<div class="indent">WINDOW_SETTINGS_MENU </div>
| DialogConfirm.xml
|  
<div class="indent">10004 </div>
|  
<div class="indent">4 </div>
|
<div class="indent">Settings.xml </div>
|-  
|-  
|  
| <code>virtualkeyboard</code>
<div class="indent">music </div>
| <code>WINDOW_DIALOG_KEYBOARD</code>
|  
| <code>10103</code>
<div class="indent">WINDOW_MUSIC </div>
| DialogKeyboard.xml
|  
<div class="indent">10005 </div>
|  
<div class="indent">5 </div>
|
<div class="indent">None – this is just a wrapper for the current My Music view (who's IDs are 501 and 502) </div>
|-  
|-  
|  
| <code>volumebar</code>
<div class="indent">video </div>
| <code>WINDOW_DIALOG_VOLUME_BAR</code>
|  
| <code>10104</code>
<div class="indent">WINDOW_VIDEOS </div>
| DialogVolumeBar.xml
|  
<div class="indent">10006 </div>
|  
<div class="indent">6 </div>
|
<div class="indent">None – this is just a wrapper for the current My Video view (who's IDs are 21-25)  </div>
|-  
|-  
|  
| <code>submenu</code>
<div class="indent">systeminfo </div>
| <code>WINDOW_DIALOG_SUB_MENU</code>
|  
| <code>10105</code>
<div class="indent">WINDOW_SYSTEM_INFORMATION </div>
| DialogSubMenu.xml
|  
<div class="indent">10007 </div>
|  
<div class="indent">7 </div>
|
<div class="indent">SettingsSystemInfo.xml </div>
|-  
|-  
|  
| <code>contextmenu</code>
<div class="indent">screencalibration </div>
| <code>WINDOW_DIALOG_CONTEXT_MENU</code>
|  
| <code>10106</code>
<div class="indent">WINDOW_MOVIE_CALIBRATION </div>
| DialogContextMenu.xml
|  
<div class="indent">10011 </div>
|  
<div class="indent">11 </div>
|
<div class="indent">SettingsScreenCalibration.xml </div>
|-  
|-  
|  
| <code>notification</code>
<div class="indent">picturessettings </div>
| <code>WINDOW_DIALOG_KAI_TOAST</code>
|  
| <code>10107</code>
<div class="indent">WINDOW_SETTINGS_MYPICTURES </div>
| DialogNotification.xml
|  
<div class="indent">10012 </div>
|  
<div class="indent">12 </div>
|
<div class="indent">SettingsCategory.xml </div>
|-  
|-  
|  
| <code>numericinput</code>
<div class="indent">programssettings </div>
| <code>WINDOW_DIALOG_NUMERIC</code>
|  
| <code>10109</code>
<div class="indent">WINDOW_SETTINGS_MYPROGRAMS </div>
| DialogNumeric.xml
|  
<div class="indent">10013 </div>
|  
<div class="indent">13 </div>
|
<div class="indent"> SettingsCategory.xml </div>
|-  
|-  
|  
| <code>gamepadinput</code>
<div class="indent">weathersettings </div>
| <code>WINDOW_DIALOG_GAMEPAD</code>
|  
| <code>10110</code>
<div class="indent">WINDOW_SETTINGS_MYWEATHER </div>
| DialogSelect.xml
|  
<div class="indent">10014 </div>
|  
<div class="indent">14 </div>
|
<div class="indent"> SettingsCategory.xml </div>
|-  
|-  
|  
| <code>shutdownmenu</code>
<div class="indent">musicsettings </div>
| <code>WINDOW_DIALOG_BUTTON_MENU</code>
|  
| <code>10111</code>
<div class="indent">WINDOW_SETTINGS_MYMUSIC </div>
| DialogButtonMenu.xml
|  
<div class="indent">10015 </div>
|  
<div class="indent">15 </div>
|
<div class="indent"> SettingsCategory.xml </div>
|-  
|-  
|  
| <code>playercontrols</code>
<div class="indent">systemsettings </div>
| <code>WINDOW_DIALOG_PLAYER_CONTROLS</code>
|  
| <code>10114</code>
<div class="indent">WINDOW_SETTINGS_SYSTEM </div>
| PlayerControls.xml
|  
<div class="indent">10016 </div>
|  
<div class="indent">16 </div>
|
<div class="indent">SettingsCategory.xml </div>
|-  
|-  
|  
| <code>seekbar</code>
<div class="indent">videossettings </div>
| <code>WINDOW_DIALOG_SEEK_BAR</code>
|  
| <code>10115</code>
<div class="indent">WINDOW_SETTINGS_MYVIDEOS </div>
| DialogSeekBar.xml
|  
<div class="indent">10017 </div>
|  
<div class="indent">17 </div>
|
<div class="indent"> SettingsCategory.xml </div>
|-  
|-  
|  
| <code>playerprocessinfo</code>
<div class="indent">networksettings </div>
| <code>WINDOW_DIALOG_PLAYER_PROCESS_INFO</code>
|
| <code>10116</code>
<div class="indent">WINDOW_SETTINGS_NETWORK </div>
| DialogPlayerProcessInfo.xml
|  
<div class="indent">10018 </div>
|  
<div class="indent">18 </div>
|  
<div class="indent"> SettingsCategory.xml (eden)</div>
|-
|
<div class="indent">servicesettings </div>
|
<div class="indent">WINDOW_SETTINGS_SERVICE </div>
|
<div class="indent">10018 </div>
|
<div class="indent">18 </div>
|
<div class="indent"> SettingsCategory.xml  (frodo)</div>
|-  
|-  
|  
| <code>musicosd</code>
<div class="indent">appearancesettings </div>
| <code>WINDOW_DIALOG_MUSIC_OSD</code>
|  
| <code>10120</code>
<div class="indent">WINDOW_SETTINGS_APPEARANCE </div>
| MusicOSD.xml
|  
<div class="indent">10019 </div>
|  
<div class="indent">19 </div>
|
<div class="indent">SettingsCategory.xml </div>
|-  
|-  
| <code>visualisationpresetlist</code>
| <code>WINDOW_DIALOG_VIS_SETTINGS</code>
| <code>10121</code>
|  
|  
<div class="indent">scripts </div>
|
<div class="indent">WINDOW_SCRIPTS </div>
|
<div class="indent">10020 </div>
|
<div class="indent">20 </div>
|
<div class="indent">MyScripts.xml </div>
|-  
|-  
|  
| <code>visualisationpresetlist</code>
<div class="indent">videofiles </div>
| <code>WINDOW_DIALOG_VIS_PRESET_LIST</code>
|  
| <code>10122</code>
<div class="indent">WINDOW_VIDEO_FILES </div>
| DialogSelect.xml
|  
<div class="indent">10024 </div>
|  
<div class="indent">24 </div>
|
<div class="indent">MyVideo.xml (deprecated)</div>
|-  
|-  
|  
| <code>osdvideosettings</code>
<div class="indent">videolibrary </div>
| <code>WINDOW_DIALOG_VIDEO_OSD_SETTINGS</code>
|
| <code>10123</code>
<div class="indent">WINDOW_VIDEO_NAV </div>
| DialogSettings.xml
|  
<div class="indent">10025 </div>
|  
<div class="indent">25 </div>
|  
<div class="indent">MyVideoNav.xml - Replaces the following .XML files: MyVideoGenre (WINDOW_VIDEO_GENRE), MyVideoActors (WINDOW_VIDEO_ACTOR), MyVideoYear (WINDOW_VIDEO_YEAR), MyVideoTitle (WINDOW_VIDEO_TITLE) </div>
|-  
|-  
|  
| <code>osdaudiosettings</code>
<div class="indent">videoplaylist </div>
| <code>WINDOW_DIALOG_AUDIO_OSD_SETTINGS</code>
|  
| <code>10124</code>
<div class="indent">WINDOW_VIDEO_PLAYLIST </div>
| DialogSettings.xml
|  
<div class="indent">10028 </div>
|  
<div class="indent">28 </div>
|
<div class="indent">MyVideoPlaylist.xml </div>
|-  
|-  
|  
| <code>videobookmarks</code>
<div class="indent">loginscreen </div>
| <code>WINDOW_DIALOG_VIDEO_BOOKMARKS</code>
|  
| <code>10125</code>
<div class="indent">WINDOW_LOGINSCREEN </div>
| VideoOSDBookmarks.xml
|  
<div class="indent">10029 </div>
|  
<div class="indent">29 </div>
|
<div class="indent">LoginScreen.xml </div>
|-  
|-  
|  
| <code>filebrowser</code>
<div class="indent">profiles </div>
| <code>WINDOW_DIALOG_FILE_BROWSER</code>
|  
| <code>10126</code>
<div class="indent">WINDOW_SETTINGS_PROFILES </div>
| FileBrowser.xml
|  
<div class="indent">10034 </div>
|  
<div class="indent">34 </div>
|
<div class="indent">SettingsProfile.xml </div>
|-  
|-  
|  
| <code>networksetup</code>
<div class="indent">addonbrowser </div>
| <code>WINDOW_DIALOG_NETWORK_SETUP</code>
|  
| <code>10128</code>
<div class="indent">WINDOW_ADDON_BROWSER </div>
| DialogSettings.xml
|  
<div class="indent">10040 </div>
|  
<div class="indent">40 </div>
|
<div class="indent">AddonBrowser.xml </div>
|-  
|-  
|  
| <code>mediasource</code>
<div class="indent">yesnodialog </div>
| <code>WINDOW_DIALOG_MEDIA_SOURCE</code>
|  
| <code>10129</code>
<div class="indent">WINDOW_DIALOG_YES_NO </div>
| DialogMediaSource.xml
|  
<div class="indent">10100 </div>
|  
<div class="indent">100 </div>
|
<div class="indent">DialogYesNo.xml </div>
|-  
|-  
|  
| <code>profilesettings</code>
<div class="indent">progressdialog </div>
| <code>WINDOW_DIALOG_PROFILE_SETTINGS</code>
|  
| <code>10130</code>
<div class="indent">WINDOW_DIALOG_PROGRESS </div>
| DialogSettings.xml
|  
<div class="indent">10101 </div>
|  
<div class="indent">101 </div>
|
<div class="indent">DialogProgress.xml </div>
|-  
|-  
|  
| <code>locksettings</code>
<div class="indent">virtualkeyboard </div>
| <code>WINDOW_DIALOG_LOCK_SETTINGS</code>
|  
| <code>10131</code>
<div class="indent">WINDOW_DIALOG_KEYBOARD </div>
| DialogSettings.xml
|  
<div class="indent">10103 </div>
|  
<div class="indent">103 </div>
|
<div class="indent">DialogKeyboard.xml </div>
|-  
|-  
|  
| <code>contentsettings</code>
<div class="indent">volumebar </div>
| <code>WINDOW_DIALOG_CONTENT_SETTINGS</code>
|  
| <code>10132</code>
<div class="indent">WINDOW_DIALOG_VOLUME_BAR </div>
| DialogSettings.xml
|  
<div class="indent">10104 </div>
|  
<div class="indent">104 </div>
|
<div class="indent">DialogVolumeBar.xml </div>
|-  
|-  
 
| <code>libexportsettings</code>
| <code>WINDOW_DIALOG_LIBEXPORT_SETTINGS</code>
| <code>10133</code>
| DialogSettings.xml
|-  
|-  
|  
| <code>favourites</code>
<div class="indent">contextmenu </div>
| <code>WINDOW_DIALOG_FAVOURITES</code>
|  
| <code>10134</code>
<div class="indent">WINDOW_DIALOG_CONTEXT_MENU </div>
| DialogFavourites.xml
|  
| Deprecated. Will be removed in Kodi v21
<div class="indent">10106 </div>
|  
<div class="indent">106 </div>
|  
<div class="indent">DialogContextMenu.xml </div>
|-  
|-  
|  
| <code>songinformation</code>
<div class="indent">infodialog </div>
| <code>WINDOW_DIALOG_SONG_INFO</code>
|  
| <code>10135</code>
<div class="indent">WINDOW_DIALOG_KAI_TOAST </div>
| DialogMusicInfo.xml
|  
<div class="indent">10107 </div>
|  
<div class="indent">107 </div>
|
<div class="indent">DialogKaiToast.xml </div>
|-  
|-  
|  
| <code>smartplaylisteditor</code>
<div class="indent">numericinput </div>
| <code>WINDOW_DIALOG_SMART_PLAYLIST_EDITOR</code>
|  
| <code>10136</code>
<div class="indent">WINDOW_DIALOG_NUMERIC </div>
| SmartPlaylistEditor.xml
|  
<div class="indent">10109 </div>
|  
<div class="indent">109 </div>
|
<div class="indent">DialogNumeric.xml </div>
|-  
|-  
|  
| <code>smartplaylistrule</code>
<div class="indent">shutdownmenu </div>
| <code>WINDOW_DIALOG_SMART_PLAYLIST_RULE</code>
|  
| <code>10137</code>
<div class="indent">WINDOW_DIALOG_BUTTON_MENU </div>
| SmartPlaylistRule.xml
|  
<div class="indent">10111 </div>
|  
<div class="indent">111 </div>
|
<div class="indent">DialogButtonMenu.xml </div>
|-  
|-  
|  
| <code>busydialog</code>
<div class="indent">musicscan </div>
| <code>WINDOW_DIALOG_BUSY</code>
|  
| <code>10138</code>
<div class="indent">WINDOW_DIALOG_MUSIC_SCAN </div>
| DialogBusy.xml
|  
<div class="indent">10112 </div>
|  
<div class="indent">112 </div>
|
<div class="indent">DialogMusicScan.xml </div>
|-  
|-  
| <code>pictureinfo</code>
| <code>WINDOW_DIALOG_PICTURE_INFO</code>
| <code>10139</code>
| DialogPictureInfo.xml
|-  
|-  
|  
| <code>addonsettings</code>
<div class="indent">mutebug </div>
| <code>WINDOW_DIALOG_ADDON_SETTINGS</code>
|  
| <code>10140</code>
<div class="indent">WINDOW_DIALOG_MUTE_BUG </div>
| DialogAddonSettings.xml
|  
<div class="indent">10113 </div>
|  
<div class="indent">113 </div>
|
<div class="indent">DialogMuteBug.xml </div>
|-  
|-  
|  
| <code>fullscreeninfo</code>
<div class="indent">playercontrols </div>
| <code>WINDOW_DIALOG_FULLSCREEN_INFO</code>
|  
| <code>10142</code>
<div class="indent">WINDOW_DIALOG_PLAYER_CONTROLS </div>
| DialogFullScreenInfo.xml
|  
<div class="indent">10114 </div>
|  
<div class="indent">114 </div>
|
<div class="indent">PlayerControls.xml </div>
|-  
|-  
|  
| <code>sliderdialog</code>
<div class="indent">seekbar </div>
| <code>WINDOW_DIALOG_SLIDER</code>
|  
| <code>10145</code>
<div class="indent">WINDOW_DIALOG_SEEK_BAR </div>
| DialogSlider.xml
|  
<div class="indent">10115 </div>
|  
<div class="indent">115 </div>
|
<div class="indent">DialogSeekBar.xml </div>
|-  
|-  
|  
| <code>addoninformation</code>
<div class="indent">musicosd </div>
| <code>WINDOW_DIALOG_ADDON_INFO</code>
|  
| <code>10146</code>
<div class="indent">WINDOW_DIALOG_MUSIC_OSD </div>
| DialogAddonInfo.xml
|  
<div class="indent">10120 </div>
|  
<div class="indent">120 </div>
|
<div class="indent">MusicOSD.xml </div>
|-  
|-  
|  
| <code>textviewer</code>
<div class="indent">visualisationpresetlist </div>
| <code>WINDOW_DIALOG_TEXT_VIEWER</code>
|  
| <code>10147</code>
<div class="indent">WINDOW_DIALOG_VIS_PRESET_LIST </div>
| DialogTextViewer.xml
|  
<div class="indent">10122 </div>
|  
<div class="indent">122 </div>
|
<div class="indent">VisualizationPresetList.xml </div>
|-  
|-  
|  
| <code></code>
<div class="indent">osdvideosettings</div>
| <code>WINDOW_DIALOG_PLAY_EJECT</code>
|  
| <code>10148</code>
<div class="indent">WINDOW_DIALOG_VIDEO_OSD_SETTINGS </div>
| DialogConfirm.xml
|  
<div class="indent">10123 </div>
|  
<div class="indent">123 </div>
|
<div class="indent">VideoOSDSettings.xml </div>
|-  
|-  
|  
| <code></code>
<div class="indent">osdaudiosettings</div>
| <code>WINDOW_DIALOG_PERIPHERALS</code>
|  
| <code>10149</code>
<div class="indent">WINDOW_DIALOG_AUDIO_OSD_SETTINGS </div>
| DialogSelect.xml
|  
<div class="indent">10124 </div>
|  
<div class="indent">124 </div>
|
<div class="indent">VideoOSDSettings.xml </div>
|-  
|-  
|  
| <code>peripheralsettings</code>
<div class="indent">videobookmarks </div>
| <code>WINDOW_DIALOG_PERIPHERAL_SETTINGS</code>
|  
| <code>10150</code>
<div class="indent">WINDOW_DIALOG_VIDEO_BOOKMARKS </div>
| DialogSettings.xml
|  
<div class="indent">10125 </div>
|  
<div class="indent">125 </div>
|
<div class="indent">VideoOSDBookmarks.xml </div>
|-  
|-  
|  
| <code>extendedprogressdialog</code>
<div class="indent">filebrowser </div>
| <code>WINDOW_DIALOG_EXT_PROGRESS</code>
|  
| <code>10151</code>
<div class="indent">WINDOW_DIALOG_FILE_BROWSER </div>
| DialogExtendedProgressBar.xml
|  
|-
<div class="indent">10126 </div>
| <code>mediafilter</code>
|  
| <code>WINDOW_DIALOG_MEDIA_FILTER</code>
<div class="indent">126 </div>
| <code>10152</code>
|  
| DialogSettings.xml
<div class="indent">FileBrowser.xml </div>
|-
| <code>subtitlesearch</code>
| <code>WINDOW_DIALOG_SUBTITLES</code>
| <code>10153</code>
| DialogSubtitles.xml
|-  
|-  
| <code></code>
| <code>WINDOW_DIALOG_KEYBOARD_TOUCH</code>
| <code>10156</code>
|  
|  
<div class="indent">networksetup </div>
|
<div class="indent">WINDOW_DIALOG_NETWORK_SETUP </div>
|
<div class="indent">10128 </div>
|
<div class="indent">128 </div>
|
<div class="indent">DialogNetworkSetup.xml </div>
|-  
|-  
|  
| <code>osdcmssettings</code>
<div class="indent">mediasource </div>
| <code>WINDOW_DIALOG_CMS_OSD_SETTINGS</code>
|  
| <code>10157</code>
<div class="indent">WINDOW_DIALOG_MEDIA_SOURCE </div>
| DialogSettings.xml
|  
<div class="indent">10129 </div>
|  
<div class="indent">129 </div>
|
<div class="indent">DialogMediaSource.xml </div>
|-  
|-  
|  
| <code>infoprovidersettings</code>
<div class="indent">profilesettings </div>
| <code>WINDOW_DIALOG_INFOPROVIDER_SETTINGS</code>
|  
| <code>10158</code>
<div class="indent">WINDOW_PROFILE_SETTINGS </div>
| DialogSettings.xml
|  
<div class="indent">10130 </div>
|  
<div class="indent">130 </div>
|
<div class="indent">ProfileSettings.xml </div>
|-  
|-  
|  
| <code>osdsubtitlesettings</code>
<div class="indent">locksettings </div>
| <code>WINDOW_DIALOG_SUBTITLE_OSD_SETTINGS</code>
|  
| <code>10159</code>
<div class="indent">WINDOW_LOCK_SETTINGS </div>
| DialogSettings.xml
|  
<div class="indent">10131 </div>
|  
<div class="indent">131 </div>
|
<div class="indent">LockSettings.xml </div>
|-  
|-  
|  
| <code>busydialognocancel</code>
<div class="indent">contentsettings </div>
| <code>WINDOW_DIALOG_BUSY_NOCANCEL</code>
|  
| <code>10160</code>
<div class="indent">WINDOW_DIALOG_CONTENT_SETTINGS </div>
| DialogBusy.xml
|  
<div class="indent">10132 </div>
|  
<div class="indent">132 </div>
|
<div class="indent">DialogContentSettings.xml </div>
|-  
|-  
|  
| <code>musicplaylist</code>
<div class="indent">videoscan </div>
| <code>WINDOW_MUSIC_PLAYLIST</code>
|  
| <code>10500</code>
<div class="indent">WINDOW_DIALOG_VIDEO_SCAN </div>
| MyPlaylist.xml
|  
<div class="indent">10133 </div>
|  
<div class="indent">133 </div>
|
<div class="indent">DialogVideoScan.xml </div>
|-  
|-  
|  
| <code>music</code>
<div class="indent">favourites </div>
| <code>WINDOW_MUSIC_NAV</code>
|  
| <code>10502</code>
<div class="indent">WINDOW_DIALOG_FAVOURITES </div>
| MyMusicNav.xml
|  
<div class="indent">10134 </div>
|  
<div class="indent">134 </div>
|
<div class="indent">DialogFavourites.xml </div>
|-  
|-  
| <code>musicplaylisteditor</code>
| <code>WINDOW_MUSIC_PLAYLIST_EDITOR</code>
| <code>10503</code>
| MyMusicPlaylistEditor.xml
|-
| <code>teletext</code>
| <code>WINDOW_DIALOG_OSD_TELETEXT</code>
| <code>10550</code>
|  
|  
<div class="indent">songinformation</div>
|-
|  
 
<div class="indent">WINDOW_DIALOG_SONG_INFO</div>
| <code>pvrguideinfo</code>
|  
| <code>WINDOW_DIALOG_PVR_GUIDE_INFO</code>
<div class="indent">10135 </div>
| <code>10600</code>
|  
| DialogPVRInfo.xml
<div class="indent">135 </div>
|-
|  
| <code>pvrrecordinginfo</code>
<div class="indent">DialogSongInfo.xml </div>
| <code>WINDOW_DIALOG_PVR_RECORDING_INFO</code>
| <code>10601</code>
| DialogPVRInfo.xml
|-
| <code>pvrtimersetting</code>
| <code>WINDOW_DIALOG_PVR_TIMER_SETTING</code>
| <code>10602</code>
| DialogSettings.xml
|-
| <code>pvrgroupmanager</code>
| <code>WINDOW_DIALOG_PVR_GROUP_MANAGER</code>
| <code>10603</code>
| DialogPVRGroupManager.xml
|-
| <code>pvrchannelmanager</code>
| <code>WINDOW_DIALOG_PVR_CHANNEL_MANAGER</code>
| <code>10604</code>
| DialogPVRChannelManager.xml
|-
| <code>pvrguidesearch</code>
| <code>WINDOW_DIALOG_PVR_GUIDE_SEARCH</code>
| <code>10605</code>
| DialogPVRGuideSearch.xml
|-
| <code>pvrchannelscan</code>
| <code>WINDOW_DIALOG_PVR_CHANNEL_SCAN</code>
| <code>10606</code>
| none (unused)
|-
| <code>pvrupdateprogress</code>
| <code>WINDOW_DIALOG_PVR_UPDATE_PROGRESS</code>
| <code>10607</code>
| none (unused)
|-
| <code>pvrosdchannels</code>
| <code>WINDOW_DIALOG_PVR_OSD_CHANNELS</code>
| <code>10608</code>
| DialogPVRChannelsOSD.xml
|-
| <code>pvrchannelguide</code>
| <code>WINDOW_DIALOG_PVR_CHANNEL_GUIDE</code>
| <code>10609</code>
| DialogPVRChannelGuide.xml
|-  
|-  
|  
| <code>pvrradiordsinfo</code>
<div class="indent">smartplaylisteditor </div>
| <code>WINDOW_DIALOG_PVR_RADIO_RDS_INFO</code>
|  
| <code>10610</code>
<div class="indent">WINDOW_DIALOG_SMART_PLAYLIST_EDITOR </div>
| DialogPVRRadioRDSInfo.xml
|  
|-
<div class="indent">10136 </div>
| <code>pvrrecordingsettings</code>
|  
| <code>WINDOW_DIALOG_PVR_RECORDING_SETTING</code>
<div class="indent">136 </div>
| <code>10611</code>
|  
| DialogSettings.xml
<div class="indent">SmartPlaylistEditor.xml </div>
|-
| <code></code>
| <code>WINDOW_DIALOG_PVR_CLIENT_PRIORITIES</code>
| <code>10612</code>
| DialogSettings.xml
|-
| <code>pvrguidecontrols</code>
| <code>WINDOW_DIALOG_PVR_GUIDE_CONTROLS</code>
| <code>10613</code>
|
| <ref>https://github.com/xbmc/xbmc/pull/16638</ref>
|-
| <code>tvchannels</code>
| <code>WINDOW_TV_CHANNELS</code>
| <code>10700</code>
| MyPVRChannels.xml
|-
| <code>tvrecordings</code>
| <code>WINDOW_TV_RECORDINGS</code>
| <code>10701</code>
| MyPVRRecordings.xml
|-
| <code>tvguide</code>
| <code>WINDOW_TV_GUIDE</code>
| <code>10702</code>
| MyPVRGuide.xml
|-
| <code>tvtimers</code>
| <code>WINDOW_TV_TIMERS</code>
| <code>10703</code>
| MyPVRTimers.xml
|-
| <code>tvsearch</code>
| <code>WINDOW_TV_SEARCH</code>
| <code>10704</code>
| MyPVRSearch.xml
|-
| <code>radiochannels</code>
| <code>WINDOW_RADIO_CHANNELS</code>
| <code>10705</code>
| MyPVRChannels.xml
|-
| <code>radiorecordings</code>
| <code>WINDOW_RADIO_RECORDINGS</code>
| <code>10706</code>
| MyPVRRecordings.xml
|-
| <code>radioguide</code>
| <code>WINDOW_RADIO_GUIDE</code>
| <code>10707</code>
| MyPVRGuide.xml
|-
| <code>radiotimers</code>
| <code>WINDOW_RADIO_TIMERS</code>
| <code>10708</code>
| MyPVRTimers.xml
|-
| <code>radiosearch</code>
| <code>WINDOW_RADIO_SEARCH</code>
| <code>10709</code>
| MyPVRSearch.xml
|-
| <code>tvtimerrules</code>
| <code>WINDOW_TV_TIMER_RULES</code>
| <code>10710</code>
| MyPVRTimers.xml
|-
| <code>radiotimerrules</code>
| <code>WINDOW_RADIO_TIMER_RULES</code>
| <code>10711</code>
| MyPVRTimers.xml
|-
| <code>FullscreenLiveTV</code>
| <code>WINDOW_FULLSCREEN_LIVETV</code>
| <code>10800</code>
| None (shortcut to fullscreenvideo)
|-
| <code>fullscreenradio</code>
| <code>WINDOW_FULLSCREEN_RADIO</code>
| <code>10801</code>
| None (shortcut to visualisation)
|-  
|-  
|  
| <code>fullscreenlivetvpreview</code>
<div class="indent">smartplaylistrule </div>
| <code>WINDOW_FULLSCREEN_LIVETV_PREVIEW</code>
|  
| <code>10802</code>
<div class="indent">WINDOW_DIALOG_SMART_PLAYLIST_RULE </div>
| None (shortcut to fullscreenlivetv)
|  
<div class="indent">10137 </div>
|  
<div class="indent">137 </div>
|
<div class="indent">SmartPlaylistRule.xml </div>
|-  
|-  
|  
| <code>fullscreenradiopreview</code>
<div class="indent">busydialog </div>
| <code>WINDOW_FULLSCREEN_RADIO_PREVIEW</code>
|  
| <code>10803</code>
<div class="indent">WINDOW_DIALOG_BUSY </div>
| None (shortcut to fullscreenradio
|  
<div class="indent">10138 </div>
|  
<div class="indent">138 </div>
|
<div class="indent">DialogBusy.xml </div>
|-  
|-  
|  
| <code>fullscreenlivetvinput</code>
<div class="indent">pictureinfo</div>
| <code>WINDOW_FULLSCREEN_LIVETV_INPUT</code>
|  
| <code>10804</code>
<div class="indent">WINDOW_DIALOG_PICTURE_INFO</div>
| None (shortcut to fullscreenlivetv)
|  
<div class="indent">10139 </div>
|  
<div class="indent">139 </div>
|
<div class="indent">DialogPictureInfo.xml </div>
|-  
|-  
|  
| <code>fullscreenradioinput</code>
<div class="indent">addonsettings</div>
| <code>WINDOW_FULLSCREEN_RADIO_INPUT</code>
|  
| <code>10805</code>
<div class="indent">WINDOW_DIALOG_ADDON_SETTINGS</div>
| None (shortcut to fullscreenradio)
|  
<div class="indent">10140 </div>
|  
<div class="indent">140 </div>
|
<div class="indent">DialogAddonSettings.xml </div>
|-  
|-  
|  
| <code>gamecontrollers</code>
<div class="indent">accesspoints</div>
| <code>WINDOW_DIALOG_GAME_CONTROLLERS</code>
|  
| <code>10820</code>
<div class="indent">WINDOW_DIALOG_ACCESS_POINTS</div>
| DialogGameControllers.xml
|  
<div class="indent">10141 </div>
|  
<div class="indent">141 </div>
|
<div class="indent">DialogAccessPoints.xml </div>
|-  
|-  
|  
| <code>games</code>
<div class="indent">fullscreeninfo</div>
| <code>WINDOW_GAMES</code>
|  
| <code>10821</code>
<div class="indent">WINDOW_DIALOG_FULLSCREEN_INFO</div>
| MyGames.xml
|  
<div class="indent">10142 </div>
|  
<div class="indent">142 </div>
|
<div class="indent">DialogFullScreenInfo.xml </div>
|-  
|-  
|  
| <code>gameosd</code>
<div class="indent">karaokeselector</div>
| <code>WINDOW_DIALOG_GAME_OSD</code>
|  
| <code>10822</code>
<div class="indent">WINDOW_DIALOG_KARAOKE_SONGSELECT</div>
| GameOSD.xml
|  
<div class="indent">10143 </div>
|  
<div class="indent">143 </div>
|
<div class="indent">DialogKaraokeSongSelector.xml </div>
|-  
|-  
|  
| <code>gamevideofilter</code>
<div class="indent">karaokelargeselector</div>
| <code>WINDOW_DIALOG_GAME_VIDEO_FILTER</code>
|  
| <code>10823</code>
<div class="indent">WINDOW_DIALOG_KARAOKE_SELECTOR</div>
| DialogSelect.xml
|  
<div class="indent">10144 </div>
|  
<div class="indent">144 </div>
|
<div class="indent">DialogKaraokeSongSelectorLarge.xml </div>
|-  
|-  
|  
| <code>gameviewmode</code>
<div class="indent">sliderdialog</div>
| <code>WINDOW_DIALOG_GAME_STRETCH_MODE</code>
|  
| <code>10824</code>
<div class="indent">WINDOW_DIALOG_SLIDER</div>
| DialogSelect.xml
|  
<div class="indent">10145 </div>
|  
<div class="indent">145 </div>
|
<div class="indent">DialogSlider.xml </div>
|-  
|-  
|  
| <code>gamevolume</code>
<div class="indent">addoninformation </div>
| <code>WINDOW_DIALOG_GAME_VOLUME</code>
|  
| <code>10825</code>
<div class="indent">WINDOW_DIALOG_ADDON_INFO </div>
| DialogVolumeBar.xml
|  
<div class="indent">10146 </div>
|  
<div class="indent">146 </div>
|
<div class="indent">DialogAddonInfo.xml</div>
|-  
|-  
|  
| <code>gameadvancedsettings</code>
<div class="indent">textviewer </div>
| <code>WINDOW_DIALOG_GAME_ADVANCED_SETTINGS</code>
|  
| <code>10826</code>
<div class="indent">WINDOW_DIALOG_TEXT_VIEWER </div>
| DialogAddonSettings.xml
|  
<div class="indent">10147 </div>
|  
<div class="indent">147 </div>
|
<div class="indent">DialogTextViewer.xml</div>
|-  
|-  
|  
| <code>gamevideorotation</code>
<div class="indent">peripherals </div>
| <code>WINDOW_DIALOG_GAME_VIDEO_ROTATION</code>
|  
| <code>10827</code>
<div class="indent">WINDOW_DIALOG_PERIPHERAL_MANAGER </div>
| DialogSelect.xml
|  
<div class="indent">10149 </div>
|  
<div class="indent">149 </div>
|
<div class="indent">DialogPeripheralManager.xml </div>
|-  
|-  
|  
| <code>gameports</code>
<div class="indent">peripheralsettings </div>
| <code>WINDOW_DIALOG_GAME_PORTS</code>
|  
| <code>10828</code>
<div class="indent">WINDOW_DIALOG_PERIPHERAL_SETTINGS </div>
| DialogGameControllers.xml
|  
| <ref>https://github.com/xbmc/xbmc/pull/20505</ref>
<div class="indent">10150 </div>
|  
<div class="indent">150 </div>
|
<div class="indent">DialogPeripheralSettings.xml </div>
|-  
|-  
|  
| <code>ingamesaves</code>
<div class="indent">extendedprogressdialog </div>
| <code>WINDOW_DIALOG_IN_GAME_SAVES</code>
|  
| <code>10829</code>
<div class="indent">WINDOW_DIALOG_EXT_PROGRESS </div>
| DialogSelect.xml
|  
| <ref>https://github.com/xbmc/xbmc/pull/20913</ref>
<div class="indent">10151 </div>
|  
<div class="indent">151 </div>
|
<div class="indent">DialogExtendedProgressBar.xml </div>
|-  
|-  
|  
| <code>gamesaves</code>
<div class="indent">musicplaylist </div>
| <code>WINDOW_DIALOG_GAME_SAVES</code>
|  
| <code>10830</code>
<div class="indent">WINDOW_MUSIC_PLAYLIST </div>
| DialogSelect.xml
|  
| <ref>https://github.com/xbmc/xbmc/pull/20913</ref>
<div class="indent">10500 </div>
|  
<div class="indent">500 </div>
|
<div class="indent">MyMusicPlaylist.xml </div>
|-  
|-  
|  
| <code>gameagents</code>
<div class="indent">musicfiles </div>
| <code>WINDOW_DIALOG_GAME_AGENTS</code>
|  
| <code>10831</code>
<div class="indent">WINDOW_MUSIC_FILES </div>
| DialogGameControllers.xml
|  
| <ref>https://github.com/xbmc/xbmc/pull/23548</ref>
<div class="indent">10501 </div>
|  
<div class="indent">501 </div>
|
<div class="indent">MyMusicSongs.xml </div>
|-  
|-  
|  
| <code>Custom Skin Windows</code>
<div class="indent">musiclibrary </div>
| <code>- </code>
|  
| <code>- </code>
<div class="indent">WINDOW_MUSIC_NAV </div>
|
|  
| custom*.xml - WINDOW_ID's from 11100 to 11199 reserved for Skins
<div class="indent">10502 </div>
|  
<div class="indent">502 </div>
|  
<div class="indent">MyMusicNav.xml </div>
|-  
|-  
|  
| <code>selectdialog</code>
<div class="indent">musicplaylisteditor </div>
| <code>WINDOW_DIALOG_SELECT</code>
|  
| <code>12000</code>
<div class="indent">WINDOW_MUSIC_PLAYLIST_EDITOR </div>
| DialogSelect.xml
|  
<div class="indent">10503 </div>
|  
<div class="indent">503 </div>
|
<div class="indent">MyMusicPlaylistEditor.xml </div>
|-  
|-  
|  
| <code>musicinformation</code>
<div class="indent">virtualkeyboard </div>
| <code>WINDOW_DIALOG_MUSIC_INFO</code>
|  
| <code>12001</code>
<div class="indent">WINDOW_VIRTUAL_KEYBOARD </div>
| DialogMusicInfo.xml
|  
<div class="indent">11000 </div>
|  
<div class="indent">1000 </div>
|
<div class="indent">none</div>
|-  
|-  
|  
| <code>okdialog</code>
<div class="indent">selectdialog </div>
| <code>WINDOW_DIALOG_OK</code>
|  
| <code>12002</code>
<div class="indent">WINDOW_DIALOG_SELECT </div>
| DialogConfirm.xml
|  
<div class="indent">12000 </div>
|  
<div class="indent">2000 </div>
|
<div class="indent">DialogSelect.xml </div>
|-  
|-  
|  
| <code>movieinformation</code>
<div class="indent">musicinformation </div>
| <code>WINDOW_DIALOG_VIDEO_INFO</code>
|  
| <code>12003</code>
<div class="indent">WINDOW_MUSIC_INFO </div>
| DialogVideoInfo.xml
|  
<div class="indent">12001 </div>
|  
<div class="indent">2001 </div>
|
<div class="indent">DialogAlbumInfo.xml </div>
|-  
|-  
|  
| <code>managevideoversions</code>
<div class="indent">okdialog </div>
| <code>WINDOW_DIALOG_MANAGE_VIDEO_VERSIONS</code>
|  
| <code>12004</code>
<div class="indent">WINDOW_DIALOG_OK </div>
| DialogVideoManager.xml
|  
| Added in Kodi v21 Omega
<div class="indent">12002 </div>
|  
<div class="indent">2002 </div>
|  
<div class="indent">DialogOK.xml </div>
|-  
|-  
|  
| <code>fullscreenvideo</code>
<div class="indent">movieinformation </div>
| <code>WINDOW_FULLSCREEN_VIDEO</code>
|  
| <code>12005</code>
<div class="indent">WINDOW_VIDEO_INFO </div>
| VideoFullScreen.xml
|  
<div class="indent">12003 </div>
|  
<div class="indent">2003 </div>
|
<div class="indent">DialogVideoInfo.xml </div>
|-  
|-  
|  
| <code>visualisation</code>
<div class="indent">fullscreenvideo </div>
| <code>WINDOW_VISUALISATION</code>
|  
| <code>12006</code>
<div class="indent">WINDOW_FULLSCREEN_VIDEO </div>
| MusicVisualisation.xml
|  
<div class="indent">12005 </div>
|  
<div class="indent">2005 </div>
|
<div class="indent">VideoFullScreen.xml </div>
|-  
|-  
|  
| <code>slideshow</code>
<div class="indent">visualisation </div>
| <code>WINDOW_SLIDESHOW</code>
|  
| <code>12007</code>
<div class="indent">WINDOW_VISUALISATION </div>
| SlideShow.xml
|  
<div class="indent">12006 </div>
|  
<div class="indent">2006 </div>
|
<div class="indent">MusicVisualisation.xml </div>
|-  
|-  
|  
| <code>dialogcolorpicker</code>
<div class="indent">slideshow </div>
| <code>WINDOW_DIALOG_COLOR_PICKER</code>
|  
| <code>12008</code>
<div class="indent">WINDOW_SLIDESHOW </div>
| DialogColorPicker.xml
|  
| Added in Kodi v20 Nexus
<div class="indent">12007 </div>
|  
<div class="indent">2007 </div>
|  
<div class="indent">SlideShow.xml </div>
|-  
|-  
|  
| <code>selectvideoversion</code>
<div class="indent">filestackingdialog </div>
| <code>WINDOW_DIALOG_SELECT_VIDEO_VERSION</code>
|  
| <code>12015</code>
<div class="indent">WINDOW_DIALOG_FILESTACKING </div>
| DialogSelect.xml
|  
| Added in Kodi v21 Omega
<div class="indent">12008 </div>
|  
<div class="indent">2008 </div>
|  
<div class="indent">DialogFileStacking.xml </div>
|-  
|-  
|  
| <code>selectvideoextra</code>
<div class="indent">karaoke </div>
| <code>WINDOW_DIALOG_SELECT_VIDEO_EXTRA</code>
|  
| <code>12016</code>
<div class="indent">WINDOW_KARAOKELYRICS </div>
| DialogSelect.xml
|  
| Added in Kodi v21 Omega
<div class="indent">12009 </div>
|  
<div class="indent">2009 </div>
|  
<div class="indent">MusicKaraokeLyrics.xml </div>
|-  
|-  
|  
| <code>managevideoextras</code>
<div class="indent">weather </div>
| <code>WINDOW_DIALOG_MANAGE_VIDEO_EXTRAS</code>
|  
| <code>12017</code>
<div class="indent">WINDOW_WEATHER </div>
| DialogVideoManager.xml
|  
| Added in Kodi v21 Omega
<div class="indent">12600 </div>
|  
<div class="indent">2600 </div>
|  
<div class="indent">MyWeather.xml </div>
|-  
|-  
|  
| <code>weather</code>
<div class="indent">screensaver </div>
| <code>WINDOW_WEATHER</code>
|  
| <code>12600</code>
<div class="indent">WINDOW_SCREENSAVER </div>
| MyWeather.xml
|  
<div class="indent">12900 </div>
|  
<div class="indent">2900 </div>
|
<div class="indent">none </div>
|-  
|-  
|  
| <code>screensaver</code>
<div class="indent">videoosd </div>
| <code>WINDOW_SCREENSAVER</code>
|  
| <code>12900</code>
<div class="indent">WINDOW_OSD </div>
| none
|  
<div class="indent">12901 </div>
|  
<div class="indent">2901 </div>
|
<div class="indent">VideoOSD.xml </div>
|-  
|-  
|  
| <code>videoosd</code>
<div class="indent">videomenu </div>
| <code>WINDOW_DIALOG_VIDEO_OSD</code>
|  
| <code>12901</code>
<div class="indent">WINDOW_MEDIA_MENU </div>
| VideoOSD.xml
|  
<div class="indent">12902 </div>
|  
<div class="indent">2902 </div>
|
<div class="indent">none </div>
|-  
|-  
|  
| <code>videomenu</code>
<div class="indent">startup </div>
| <code>WINDOW_VIDEO_MENU</code>
|  
| <code>12902</code>
<div class="indent">WINDOW_STARTUP </div>
| none
|  
<div class="indent">12999 </div>
|  
<div class="indent">2999 </div>
|
<div class="indent">startup.xml </div>
|-  
|-  
|  
| <code>videotimeseek</code>
<div class="indent">startwindow </div>
| <code>WINDOW_VIDEO_TIME_SEEK</code>
|
| <code>12905</code>
<div class="indent">- </div>
| none
|  
<div class="indent">- </div>
|  
<div class="indent">- </div>
|  
<div class="indent">shortcut to the current startwindow </div>
|}
 
In addition, there are the following “special” windows whose id is not really a concern (and you'll notice isn't unique)
{| class="wikitable"
|-  
|-  
|   Pointer
| <code>fullscreengame</code>
|   -
| <code>WINDOW_FULLSCREEN_GAME</code>
|   -
| <code>12906</code>
|   105
| none
|  Pointer.xml
|-  
|-  
| <code>splash</code>
| <code>WINDOW_SPLASH</code>
| <code>12997</code>
|  
|  
<div class="indent">musicoverlay </div>
|-
|  
| <code>startwindow</code>
<div class="indent">WINDOW_MUSIC_OVERLAY </div>
| <code>WINDOW_START</code>
|  
| <code>12998</code>
<div class="indent">12903 </div>
| shortcut to the current startwindow
|  
|-
<div class="indent">2903 </div>
| <code>startup</code>
|  
| <code>WINDOW_STARTUP_ANIM</code>
<div class="indent">MusicOverlay.xml </div>
| <code>12999</code>
| Startup.xml
|-
| colspan="5" bgcolor="#ffffff" | In addition, there are the following "special" windows whose id is not really a concern (and you'll notice isn't unique)
|-  
|-  
| <code>Python Windows</code>
| <code>- </code>
| <code>-</code>
|
| WINDOW_ID's from 13000 to 13099 reserved for Python
|-
| <code>addon</code>
| <code>- </code>
| <code>- </code>
|  
|  
<div class="indent">videooverlay </div>
| WINDOW_ID's from 14000 to 14099 reserved for Addons
|  
<div class="indent">WINDOW_VIDEO_OVERLAY </div>
|
<div class="indent">12904 </div>
|
<div class="indent">2904 </div>
|
<div class="indent">VideoOverlay.xml </div>
|-
|  Python Windows
|  -
|  -
|  30<span class="nobr">00–309</span>9
|  none
|}
|}
<section end="main content" />
= Removed window IDs =
* <code>programssettings</code> - Removed in ?
* <code>scripts</code> - Removed in v10 Dharma
* <code>networksettings</code> - Removed in v12 Frodo
* <code>musicscan</code> - Removed in v12 Frodo
* <code>videoscan</code> - Removed in v12 Frodo
* <code>videofiles</code> - Removed in v13 Gotham
* <code>pvr</code> - Replaced in v14 Helix with more specific PVR windows
* <code>karaoke</code> - Removed in v16 Jarvis
* <code>musicoverlay</code> - Removed in v16 Jarvis
* <code>videooverlay</code> - Removed in v16 Jarvis
* <code>musicfiles</code> - Removed in v16 Jarvis
* <code>infodialog</code> - Removed in v17 Jarvis
* <code>video</code> - Removed in v17 Krypton
* <code>videolibrary</code> - Removed in v17 Krypton
* <code>musiclibrary</code> - Removed in v17 Krypton
* <code>mutebug</code> - Removed in v17 Krypton
* <code>videossettings</code> - Removed in v17 Krypton
* <code>musicsettings</code> - Removed in v17 Krypton
* <code>appearancesettings</code> - Removed in v17 Krypton
* <code>picturessettings</code> - Removed in v17 Krypton
* <code>weathersettings</code> - Removed in v17 Krypton
* <code>osdaudiodspsettings</code> - Removed in v18 Leia
* <code>testpattern</code> - Removed in v18 Leia <ref>https://github.com/xbmc/xbmc/pull/14725</ref>
* <code>accesspoints</code> - Removed in v19 Matrix <ref>https://github.com/xbmc/xbmc/pull/16120</ref>
= References =
<references />
= See also =
* [[Keymaps]]
* [[Action IDs]]
* [[Built-in scripting]]
{{top}}
{{updated|20}}


[[Category:Skin Development]]
[[Category:Python]]
[[Category:Python]]
[[Category:Add-on development]]
[[Category:Skin development]]

Latest revision as of 17:55, 9 April 2024

Home icon grey.png   ▶ Development ▶ Add-on development ▶ Window IDs



Window IDs

This table cross-references Window names, Window definitions, and Window ID.

Code that performs the cross-reference is found on Github as follows:

Github Logo.png Master Branch - WindowTranslator.cpp
Github Logo.png Master Branch - WindowsIDs.h


  • keymap.xml uses the Window name.
  • Kodi's C++ code uses the Window definitions and Window ID's.
  • ActivateWindow() should use the Window name.
  • sounds.xml should use the window name

You can use secondary parameters with all media windows, as can be seen here:


Name Definition Window ID source XML file Remark
home WINDOW_HOME 10000 Home.xml
programs WINDOW_PROGRAMS 10001 MyPrograms.xml
pictures WINDOW_PICTURES 10002 MyPics.xml
filemanager WINDOW_FILES 10003 FileManager.xml
settings WINDOW_SETTINGS_MENU 10004 Settings.xml
systeminfo WINDOW_SYSTEM_INFORMATION 10007 SettingsSystemInfo.xml
screencalibration WINDOW_SCREEN_CALIBRATION 10011 SettingsScreenCalibration.xml
systemsettings WINDOW_SETTINGS_START 10016 SettingsCategory.xml
systemsettings WINDOW_SETTINGS_SYSTEM 10016 SettingsCategory.xml
servicesettings WINDOW_SETTINGS_SERVICE 10018 SettingsCategory.xml
pvrsettings WINDOW_SETTINGS_MYPVR 10021 SettingsCategory.xml
gamesettings WINDOW_SETTINGS_MYGAMES 10022 SettingsCategory.xml
videos WINDOW_VIDEO_NAV 10025 MyVideoNav.xml
videoplaylist WINDOW_VIDEO_PLAYLIST 10028 MyPlaylist.xml
loginscreen WINDOW_LOGIN_SCREEN 10029 LoginScreen.xml
playersettings WINDOW_SETTINGS_PLAYER 10030 SettingsCategory.xml
mediasettings WINDOW_SETTINGS_MEDIA 10031 SettingsCategory.xml
interfacesettings WINDOW_SETTINGS_INTERFACE 10032 SettingsCategory.xml
profiles WINDOW_SETTINGS_PROFILES 10034 SettingsProfile.xml
skinsettings WINDOW_SKIN_SETTINGS 10035 SkinSettings.xml
addonbrowser WINDOW_ADDON_BROWSER 10040 AddonBrowser.xml
eventlog WINDOW_EVENT_LOG 10050 EventLog.xml
favouritesbrowser WINDOW_FAVOURITES 10060 MyFavourites.xml Added in Kodi v20 Nexus [1]
pointer WINDOW_DIALOG_POINTER 10099 Pointer.xml
yesnodialog WINDOW_DIALOG_YES_NO 10100 DialogConfirm.xml
progressdialog WINDOW_DIALOG_PROGRESS 10101 DialogConfirm.xml
virtualkeyboard WINDOW_DIALOG_KEYBOARD 10103 DialogKeyboard.xml
volumebar WINDOW_DIALOG_VOLUME_BAR 10104 DialogVolumeBar.xml
submenu WINDOW_DIALOG_SUB_MENU 10105 DialogSubMenu.xml
contextmenu WINDOW_DIALOG_CONTEXT_MENU 10106 DialogContextMenu.xml
notification WINDOW_DIALOG_KAI_TOAST 10107 DialogNotification.xml
numericinput WINDOW_DIALOG_NUMERIC 10109 DialogNumeric.xml
gamepadinput WINDOW_DIALOG_GAMEPAD 10110 DialogSelect.xml
shutdownmenu WINDOW_DIALOG_BUTTON_MENU 10111 DialogButtonMenu.xml
playercontrols WINDOW_DIALOG_PLAYER_CONTROLS 10114 PlayerControls.xml
seekbar WINDOW_DIALOG_SEEK_BAR 10115 DialogSeekBar.xml
playerprocessinfo WINDOW_DIALOG_PLAYER_PROCESS_INFO 10116 DialogPlayerProcessInfo.xml
musicosd WINDOW_DIALOG_MUSIC_OSD 10120 MusicOSD.xml
visualisationpresetlist WINDOW_DIALOG_VIS_SETTINGS 10121
visualisationpresetlist WINDOW_DIALOG_VIS_PRESET_LIST 10122 DialogSelect.xml
osdvideosettings WINDOW_DIALOG_VIDEO_OSD_SETTINGS 10123 DialogSettings.xml
osdaudiosettings WINDOW_DIALOG_AUDIO_OSD_SETTINGS 10124 DialogSettings.xml
videobookmarks WINDOW_DIALOG_VIDEO_BOOKMARKS 10125 VideoOSDBookmarks.xml
filebrowser WINDOW_DIALOG_FILE_BROWSER 10126 FileBrowser.xml
networksetup WINDOW_DIALOG_NETWORK_SETUP 10128 DialogSettings.xml
mediasource WINDOW_DIALOG_MEDIA_SOURCE 10129 DialogMediaSource.xml
profilesettings WINDOW_DIALOG_PROFILE_SETTINGS 10130 DialogSettings.xml
locksettings WINDOW_DIALOG_LOCK_SETTINGS 10131 DialogSettings.xml
contentsettings WINDOW_DIALOG_CONTENT_SETTINGS 10132 DialogSettings.xml
libexportsettings WINDOW_DIALOG_LIBEXPORT_SETTINGS 10133 DialogSettings.xml
favourites WINDOW_DIALOG_FAVOURITES 10134 DialogFavourites.xml Deprecated. Will be removed in Kodi v21
songinformation WINDOW_DIALOG_SONG_INFO 10135 DialogMusicInfo.xml
smartplaylisteditor WINDOW_DIALOG_SMART_PLAYLIST_EDITOR 10136 SmartPlaylistEditor.xml
smartplaylistrule WINDOW_DIALOG_SMART_PLAYLIST_RULE 10137 SmartPlaylistRule.xml
busydialog WINDOW_DIALOG_BUSY 10138 DialogBusy.xml
pictureinfo WINDOW_DIALOG_PICTURE_INFO 10139 DialogPictureInfo.xml
addonsettings WINDOW_DIALOG_ADDON_SETTINGS 10140 DialogAddonSettings.xml
fullscreeninfo WINDOW_DIALOG_FULLSCREEN_INFO 10142 DialogFullScreenInfo.xml
sliderdialog WINDOW_DIALOG_SLIDER 10145 DialogSlider.xml
addoninformation WINDOW_DIALOG_ADDON_INFO 10146 DialogAddonInfo.xml
textviewer WINDOW_DIALOG_TEXT_VIEWER 10147 DialogTextViewer.xml
WINDOW_DIALOG_PLAY_EJECT 10148 DialogConfirm.xml
WINDOW_DIALOG_PERIPHERALS 10149 DialogSelect.xml
peripheralsettings WINDOW_DIALOG_PERIPHERAL_SETTINGS 10150 DialogSettings.xml
extendedprogressdialog WINDOW_DIALOG_EXT_PROGRESS 10151 DialogExtendedProgressBar.xml
mediafilter WINDOW_DIALOG_MEDIA_FILTER 10152 DialogSettings.xml
subtitlesearch WINDOW_DIALOG_SUBTITLES 10153 DialogSubtitles.xml
WINDOW_DIALOG_KEYBOARD_TOUCH 10156
osdcmssettings WINDOW_DIALOG_CMS_OSD_SETTINGS 10157 DialogSettings.xml
infoprovidersettings WINDOW_DIALOG_INFOPROVIDER_SETTINGS 10158 DialogSettings.xml
osdsubtitlesettings WINDOW_DIALOG_SUBTITLE_OSD_SETTINGS 10159 DialogSettings.xml
busydialognocancel WINDOW_DIALOG_BUSY_NOCANCEL 10160 DialogBusy.xml
musicplaylist WINDOW_MUSIC_PLAYLIST 10500 MyPlaylist.xml
music WINDOW_MUSIC_NAV 10502 MyMusicNav.xml
musicplaylisteditor WINDOW_MUSIC_PLAYLIST_EDITOR 10503 MyMusicPlaylistEditor.xml
teletext WINDOW_DIALOG_OSD_TELETEXT 10550
pvrguideinfo WINDOW_DIALOG_PVR_GUIDE_INFO 10600 DialogPVRInfo.xml
pvrrecordinginfo WINDOW_DIALOG_PVR_RECORDING_INFO 10601 DialogPVRInfo.xml
pvrtimersetting WINDOW_DIALOG_PVR_TIMER_SETTING 10602 DialogSettings.xml
pvrgroupmanager WINDOW_DIALOG_PVR_GROUP_MANAGER 10603 DialogPVRGroupManager.xml
pvrchannelmanager WINDOW_DIALOG_PVR_CHANNEL_MANAGER 10604 DialogPVRChannelManager.xml
pvrguidesearch WINDOW_DIALOG_PVR_GUIDE_SEARCH 10605 DialogPVRGuideSearch.xml
pvrchannelscan WINDOW_DIALOG_PVR_CHANNEL_SCAN 10606 none (unused)
pvrupdateprogress WINDOW_DIALOG_PVR_UPDATE_PROGRESS 10607 none (unused)
pvrosdchannels WINDOW_DIALOG_PVR_OSD_CHANNELS 10608 DialogPVRChannelsOSD.xml
pvrchannelguide WINDOW_DIALOG_PVR_CHANNEL_GUIDE 10609 DialogPVRChannelGuide.xml
pvrradiordsinfo WINDOW_DIALOG_PVR_RADIO_RDS_INFO 10610 DialogPVRRadioRDSInfo.xml
pvrrecordingsettings WINDOW_DIALOG_PVR_RECORDING_SETTING 10611 DialogSettings.xml
WINDOW_DIALOG_PVR_CLIENT_PRIORITIES 10612 DialogSettings.xml
pvrguidecontrols WINDOW_DIALOG_PVR_GUIDE_CONTROLS 10613 [2]
tvchannels WINDOW_TV_CHANNELS 10700 MyPVRChannels.xml
tvrecordings WINDOW_TV_RECORDINGS 10701 MyPVRRecordings.xml
tvguide WINDOW_TV_GUIDE 10702 MyPVRGuide.xml
tvtimers WINDOW_TV_TIMERS 10703 MyPVRTimers.xml
tvsearch WINDOW_TV_SEARCH 10704 MyPVRSearch.xml
radiochannels WINDOW_RADIO_CHANNELS 10705 MyPVRChannels.xml
radiorecordings WINDOW_RADIO_RECORDINGS 10706 MyPVRRecordings.xml
radioguide WINDOW_RADIO_GUIDE 10707 MyPVRGuide.xml
radiotimers WINDOW_RADIO_TIMERS 10708 MyPVRTimers.xml
radiosearch WINDOW_RADIO_SEARCH 10709 MyPVRSearch.xml
tvtimerrules WINDOW_TV_TIMER_RULES 10710 MyPVRTimers.xml
radiotimerrules WINDOW_RADIO_TIMER_RULES 10711 MyPVRTimers.xml
FullscreenLiveTV WINDOW_FULLSCREEN_LIVETV 10800 None (shortcut to fullscreenvideo)
fullscreenradio WINDOW_FULLSCREEN_RADIO 10801 None (shortcut to visualisation)
fullscreenlivetvpreview WINDOW_FULLSCREEN_LIVETV_PREVIEW 10802 None (shortcut to fullscreenlivetv)
fullscreenradiopreview WINDOW_FULLSCREEN_RADIO_PREVIEW 10803 None (shortcut to fullscreenradio
fullscreenlivetvinput WINDOW_FULLSCREEN_LIVETV_INPUT 10804 None (shortcut to fullscreenlivetv)
fullscreenradioinput WINDOW_FULLSCREEN_RADIO_INPUT 10805 None (shortcut to fullscreenradio)
gamecontrollers WINDOW_DIALOG_GAME_CONTROLLERS 10820 DialogGameControllers.xml
games WINDOW_GAMES 10821 MyGames.xml
gameosd WINDOW_DIALOG_GAME_OSD 10822 GameOSD.xml
gamevideofilter WINDOW_DIALOG_GAME_VIDEO_FILTER 10823 DialogSelect.xml
gameviewmode WINDOW_DIALOG_GAME_STRETCH_MODE 10824 DialogSelect.xml
gamevolume WINDOW_DIALOG_GAME_VOLUME 10825 DialogVolumeBar.xml
gameadvancedsettings WINDOW_DIALOG_GAME_ADVANCED_SETTINGS 10826 DialogAddonSettings.xml
gamevideorotation WINDOW_DIALOG_GAME_VIDEO_ROTATION 10827 DialogSelect.xml
gameports WINDOW_DIALOG_GAME_PORTS 10828 DialogGameControllers.xml [3]
ingamesaves WINDOW_DIALOG_IN_GAME_SAVES 10829 DialogSelect.xml [4]
gamesaves WINDOW_DIALOG_GAME_SAVES 10830 DialogSelect.xml [5]
gameagents WINDOW_DIALOG_GAME_AGENTS 10831 DialogGameControllers.xml [6]
Custom Skin Windows - - custom*.xml - WINDOW_ID's from 11100 to 11199 reserved for Skins
selectdialog WINDOW_DIALOG_SELECT 12000 DialogSelect.xml
musicinformation WINDOW_DIALOG_MUSIC_INFO 12001 DialogMusicInfo.xml
okdialog WINDOW_DIALOG_OK 12002 DialogConfirm.xml
movieinformation WINDOW_DIALOG_VIDEO_INFO 12003 DialogVideoInfo.xml
managevideoversions WINDOW_DIALOG_MANAGE_VIDEO_VERSIONS 12004 DialogVideoManager.xml Added in Kodi v21 Omega
fullscreenvideo WINDOW_FULLSCREEN_VIDEO 12005 VideoFullScreen.xml
visualisation WINDOW_VISUALISATION 12006 MusicVisualisation.xml
slideshow WINDOW_SLIDESHOW 12007 SlideShow.xml
dialogcolorpicker WINDOW_DIALOG_COLOR_PICKER 12008 DialogColorPicker.xml Added in Kodi v20 Nexus
selectvideoversion WINDOW_DIALOG_SELECT_VIDEO_VERSION 12015 DialogSelect.xml Added in Kodi v21 Omega
selectvideoextra WINDOW_DIALOG_SELECT_VIDEO_EXTRA 12016 DialogSelect.xml Added in Kodi v21 Omega
managevideoextras WINDOW_DIALOG_MANAGE_VIDEO_EXTRAS 12017 DialogVideoManager.xml Added in Kodi v21 Omega
weather WINDOW_WEATHER 12600 MyWeather.xml
screensaver WINDOW_SCREENSAVER 12900 none
videoosd WINDOW_DIALOG_VIDEO_OSD 12901 VideoOSD.xml
videomenu WINDOW_VIDEO_MENU 12902 none
videotimeseek WINDOW_VIDEO_TIME_SEEK 12905 none
fullscreengame WINDOW_FULLSCREEN_GAME 12906 none
splash WINDOW_SPLASH 12997
startwindow WINDOW_START 12998 shortcut to the current startwindow
startup WINDOW_STARTUP_ANIM 12999 Startup.xml
In addition, there are the following "special" windows whose id is not really a concern (and you'll notice isn't unique)
Python Windows - - WINDOW_ID's from 13000 to 13099 reserved for Python
addon - - WINDOW_ID's from 14000 to 14099 reserved for Addons



Removed window IDs

  • programssettings - Removed in ?
  • scripts - Removed in v10 Dharma
  • networksettings - Removed in v12 Frodo
  • musicscan - Removed in v12 Frodo
  • videoscan - Removed in v12 Frodo
  • videofiles - Removed in v13 Gotham
  • pvr - Replaced in v14 Helix with more specific PVR windows
  • karaoke - Removed in v16 Jarvis
  • musicoverlay - Removed in v16 Jarvis
  • videooverlay - Removed in v16 Jarvis
  • musicfiles - Removed in v16 Jarvis
  • infodialog - Removed in v17 Jarvis
  • video - Removed in v17 Krypton
  • videolibrary - Removed in v17 Krypton
  • musiclibrary - Removed in v17 Krypton
  • mutebug - Removed in v17 Krypton
  • videossettings - Removed in v17 Krypton
  • musicsettings - Removed in v17 Krypton
  • appearancesettings - Removed in v17 Krypton
  • picturessettings - Removed in v17 Krypton
  • weathersettings - Removed in v17 Krypton
  • osdaudiodspsettings - Removed in v18 Leia
  • testpattern - Removed in v18 Leia [7]
  • accesspoints - Removed in v19 Matrix [8]


References


See also



Return to top