Advertisement
Guest User

user

a guest
Mar 19th, 2011
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.01 KB | None | 0 0
  1. <!-- This file contains the mapping of keys (gamepad, remote, and keyboard) to actions within XBMC -->
  2. <!-- The <global> section is a fall through - they will only be used if the button is not -->
  3. <!-- used in the current window's section. Note that there is only handling -->
  4. <!-- for a single action per button at this stage. -->
  5. <!-- For joystick/gamepad configuration under linux/win32, see below as it differs from xbox -->
  6. <!-- gamepads. -->
  7.  
  8. <!-- The format is: -->
  9. <!-- <device> -->
  10. <!-- <button>action</button> -->
  11. <!-- </device> -->
  12.  
  13. <!-- To map keys from other remotes using the RCA protocol, you may add <universalremote> blocks -->
  14. <!-- In this case, the tags used are <obc#> where # is the original button code (OBC) of the key -->
  15. <!-- You set it up by adding a <universalremote> block to the window or <global> section: -->
  16. <!-- <universalremote> -->
  17. <!-- <obc45>Stop</obc45> -->
  18. <!-- </universalremote> -->
  19.  
  20. <!-- Note that the action can be a built-in function. -->
  21. <!-- eg <B>XBMC.ActivateWindow(MyMusic)</B> -->
  22. <!-- would automatically go to My Music on the press of the B button. -->
  23.  
  24. <!-- Joysticks / Gamepads: -->
  25. <!-- See the sample PS3 controller configuration below for the format. -->
  26. <!-- -->
  27. <!-- Joystick Name: -->
  28. <!-- Do 'cat /proc/bus/input/devices' or see your xbmc log file to find the names of -->
  29. <!-- detected joysticks. The name used in the configuration should match the detected name. -->
  30. <!-- -->
  31. <!-- Button Ids: -->
  32. <!-- 'id' is the button ID used by SDL. Joystick button ids of connected joysticks appear -->
  33. <!-- in xbmc.log when they are pressed. Use your log to map custom buttons to actions. -->
  34. <!-- -->
  35. <!-- Axis Ids / Analog Controls -->
  36. <!-- Coming soon. -->
  37. <keymap>
  38. <global>
  39. <keyboard>
  40. <j>audionextlanguage</j>
  41. <k>UpdateLibrary(video)</k>
  42. <b>XBMC.ActivateWindow(videolibrary,movietitles,return)</b>
  43. <e>ActivateWindow(myvideolibrary, special://videoplaylists/Kinderserie.xsp)</e>
  44. <g>ActivateWindow(myvideolibrary, special://videoplaylists/TV-Serie.xsp)</g>
  45. <h>ActivateWindow(myvideolibrary, special://videoplaylists/Animation.xsp)</h>
  46. <p>Play</p>
  47. <q>Queue</q>
  48. <f>FastForward</f>
  49. <r>Rewind</r>
  50. <left>Left</left>
  51. <right>Right</right>
  52. <up>Up</up>
  53. <down>Down</down>
  54. <pageup>PageUp</pageup>
  55. <pagedown>PageDown</pagedown>
  56. <return>Select</return>
  57. <enter>Select</enter>
  58. <backspace>ParentDir</backspace>
  59. <m>ActivateWindow(PlayerControls)</m>
  60. <s>ActivateWindow(shutdownmenu)</s>
  61. <escape>PreviousMenu</escape>
  62. <i>Info</i>
  63. <menu>ContextMenu</menu>
  64. <c>ContextMenu</c>
  65. <space>Pause</space>
  66. <x>Stop</x>
  67. <period>SkipNext</period>
  68. <comma>SkipPrevious</comma>
  69. <tab>FullScreen</tab>
  70. <printscreen>Screenshot</printscreen>
  71. <s mod="ctrl">RandomPreset</s>
  72. <minus>VolumeDown</minus>
  73. <plus>VolumeUp</plus>
  74. <zero>Number0</zero>
  75. <one>Number1</one>
  76. <two>JumpSMS2</two>
  77. <three>JumpSMS3</three>
  78. <four>JumpSMS4</four>
  79. <five>JumpSMS5</five>
  80. <six>JumpSMS6</six>
  81. <seven>JumpSMS7</seven>
  82. <eight>JumpSMS8</eight>
  83. <nine>JumpSMS9</nine>
  84. <backslash>ToggleFullScreen</backslash>
  85. <browser_home>XBMC.ActivateWindow(Home)</browser_home>
  86. <f5 mod="ctrl,alt">XBMC.ActivateWindow(Home)</f5> <!--Added to support (GSB Home Jump) feature-->
  87. <browser_favorites>ActivateWindow(Favourites)</browser_favorites>
  88. <browser_refresh/>
  89. <browser_search/>
  90. <launch_app1_pc_icon>ActivateWindow(MyPrograms)</launch_app1_pc_icon>
  91. <launch_media_select>XBMC.ActivateWindow(MyMusic)</launch_media_select>
  92. <play_pause>Pause</play_pause>
  93. <stop>Stop</stop>
  94. <volume_up>VolumeUp</volume_up>
  95. <volume_mute>Mute</volume_mute>
  96. <volume_down>VolumeDown</volume_down>
  97. <next_track>SkipNext</next_track>
  98. <prev_track>SkipPrevious</prev_track>
  99. <launch_mail></launch_mail>
  100. <key id='61620'></key> <!-- same as above, launch_mail, but using button code (based on vkey id) -->
  101. <home>FirstPage</home>
  102. <end>LastPage</end>
  103. <key id='65446'>ParentDir</key>
  104. <key id='65459'>Play</key>
  105. <!-- ****************************************************** -->
  106. <!-- MS Media Center keyboard shortcuts sent by MCE remotes -->
  107. <!-- See http://msdn.microsoft.com/en-us/library/bb189249.aspx -->
  108. <p mod="ctrl,shift">Play</p> <!-- Play -->
  109. <s mod="ctrl,shift">Stop</s> <!-- Stop -->
  110. <p mod="ctrl">Pause</p> <!-- Pause -->
  111. <f mod="ctrl,shift">FastForward</f> <!-- Fwd -->
  112. <b mod="ctrl,shift">Rewind</b> <!-- Rew -->
  113. <f mod="ctrl">SkipNext</f> <!-- Skip -->
  114. <b mod="ctrl">SkipPrevious</b> <!-- Replay -->
  115. <d mod="ctrl">Info</d> <!-- MCE Details -->
  116. <f10>VolumeUp</f10> <!-- MCE Vol up -->
  117. <f9>VolumeDown</f9> <!-- MCE Vol down -->
  118. <f8>Mute</f8> <!-- MCE mute -->
  119. <g mod="ctrl">OSD</g> <!-- MCE Guide -->
  120. <m mod="ctrl">ActivateWindow(music)</m> <!-- MCE My music -->
  121. <i mod="ctrl">ActivateWindow(pictures)</i> <!-- MCE My pictures -->
  122. <e mod="ctrl">XBMC.ActivateWindow(videolibrary,tvshowtitles,return)</e> <!-- MCE TVSHOWS Window-->
  123. <!-- MCE keypresses without an obvious use in XBMC -->
  124. <o mod="ctrl">Notification(MCEKeypress, Recorded TV, 3)</o>
  125. <t mod="ctrl">Notification(MCEKeypress, Live TV, 3)</t>
  126. <t mod="ctrl,shift">Notification(MCEKeypress, My TV, 3)</t>
  127. <a mod="ctrl">Playlist</a> <!-- Radio Button Activates playlists using MCE remotes for videos/music -->
  128. <m mod="ctrl,shift">Notification(MCEKeypress, DVD menu, 3)</m>
  129. <u mod="ctrl">Notification(MCEKeypress, DVD subtitle, 3)</u>
  130. <eight mod="ctrl,shift">UpdateLibrary(video)</eight> <!-- Update Video Library using MCE Remotes-->
  131. <three mod="ctrl,shift">Playlist</three> <!-- Support Button Activates playlists using MCE remotes for videos/music-->
  132. <a mod="ctrl,shift">Notification(MCEKeypress, DVD audio, 3)</a>
  133. <!-- Yellow Button: ctrl-y: Switch audio language track -->
  134. <y mod="ctrl">audionextlanguage</y>
  135. </keyboard>
  136. </global>
  137. <LoginScreen>
  138. <keyboard>
  139. <end>XBMC.ShutDown()</end>
  140. </keyboard>
  141. </LoginScreen>
  142. <Home>
  143. <keyboard>
  144. <i>info</i>
  145. <end>XBMC.ShutDown()</end>
  146. </keyboard>
  147. </Home>
  148. <VirtualKeyboard>
  149. <keyboard>
  150. <zero>Number0</zero>
  151. <one>Number1</one>
  152. <two>Number2</two>
  153. <three>Number3</three>
  154. <four>Number4</four>
  155. <five>Number5</five>
  156. <six>Number6</six>
  157. <seven>Number7</seven>
  158. <eight>Number8</eight>
  159. <nine>Number9</nine>
  160. <backspace>Backspace</backspace>
  161. </keyboard>
  162. </VirtualKeyboard>
  163. <MyFiles>
  164. <keyboard>
  165. <space>Highlight</space>
  166. <delete>Delete</delete>
  167. <m>Move</m>
  168. <r>Rename</r>
  169. </keyboard>
  170. </MyFiles>
  171. <MyMusicPlaylist>
  172. <keyboard>
  173. <space>Playlist</space> <!-- Close playlist -->
  174. <delete>Delete</delete>
  175. <q>Delete</q> <!-- Used for MCE remotes to Delete music in playlist -->
  176. <u>MoveItemUp</u>
  177. <d>MoveItemDown</d>
  178. <pageup>MoveItemUp</pageup> <!-- Used for MCE remotes to Arrange playlist -->
  179. <pagedown>MoveItemDown</pagedown> <!-- Used for MCE remotes to arrange playlist -->
  180. <backspace>Playlist</backspace> <!-- Close playlist -->
  181. </keyboard>
  182. </MyMusicPlaylist>
  183. <MyMusicPlaylistEditor>
  184. <keyboard>
  185. <u>MoveItemUp</u>
  186. <d>MoveItemDown</d>
  187. <pageup>MoveItemUp</pageup> <!-- Used for MCE remotes to Arrange playlist -->
  188. <pagedown>MoveItemDown</pagedown> <!-- Used for MCE remotes to arrange playlist -->
  189. <delete>Delete</delete>
  190. <q>Delete</q> <!-- Used for MCE remotes to Delete music in playlist -->
  191. </keyboard>
  192. </MyMusicPlaylistEditor>
  193. <MyMusicFiles>
  194. <keyboard>
  195. <space>Playlist</space>
  196. <q>Queue</q> <!-- Used for MCE remotes to Queue music in playlist -->
  197. </keyboard>
  198. </MyMusicFiles>
  199. <MyMusicLibrary>
  200. <keyboard>
  201. <space>Playlist</space>
  202. <q>Queue</q> <!-- Used for MCE remotes to Queue music in playlist -->
  203. </keyboard>
  204. </MyMusicLibrary>
  205. <FullscreenVideo>
  206. <keyboard>
  207. <f>FastForward</f>
  208. <r>Rewind</r>
  209. <period>StepForward</period>
  210. <comma>StepBack</comma>
  211. <backspace>Fullscreen</backspace>
  212. <quote>SmallStepBack</quote>
  213. <opensquarebracket>BigStepForward</opensquarebracket>
  214. <closesquarebracket>BigStepBack</closesquarebracket>
  215. <return>OSD</return>
  216. <enter>OSD</enter>
  217. <m>OSD</m>
  218. <i>Info</i>
  219. <o>CodecInfo</o>
  220. <z>AspectRatio</z>
  221. <pageup>ZoomIn</pageup> <!-- Added for MCE Remotes for extra zooming -->
  222. <Pagedown>ZoomOut</Pagedown> <!-- Added for MCE Remotes for extra zooming -->
  223. <t>ShowSubtitles</t>
  224. <l>NextSubtitle</l>
  225. <left>StepBack</left>
  226. <right>StepForward</right>
  227. <up>BigStepForward</up>
  228. <down>BigStepBack</down>
  229. <a>AudioDelay</a>
  230. <escape>Fullscreen</escape>
  231. <v>XBMC.ActivateWindow(Teletext)</v>
  232. <zero>Number0</zero>
  233. <one>Number1</one>
  234. <two>Number2</two>
  235. <three>Number3</three>
  236. <four>Number4</four>
  237. <five>Number5</five>
  238. <six>Number6</six>
  239. <seven>Number7</seven>
  240. <eight>Number8</eight>
  241. <nine>Number9</nine>
  242. </keyboard>
  243. </FullscreenVideo>
  244. <VideoTimeSeek>
  245. <keyboard>
  246. <return>Select</return>
  247. <enter>Select</enter>
  248. </keyboard>
  249. </VideoTimeSeek>
  250. <FullscreenInfo>
  251. <keyboard>
  252. <f>FastForward</f>
  253. <r>Rewind</r>
  254. <period>StepForward</period>
  255. <backspace>Close</backspace>
  256. <o>CodecInfo</o>
  257. <i>Close</i>
  258. <d mod="ctrl">Close</d>
  259. <m>OSD</m>
  260. </keyboard>
  261. </FullscreenInfo>
  262. <PlayerControls>
  263. <keyboard>
  264. <escape>Close</escape>
  265. <m>close</m>
  266. </keyboard>
  267. </PlayerControls>
  268. <Visualisation>
  269. <keyboard>
  270. <f>FastForward</f>
  271. <r>Rewind</r>
  272. <period>SkipNext</period>
  273. <comma>SkipPrevious</comma>
  274. <return>ActivateWindow(MusicOSD)</return>
  275. <enter>ActivateWindow(MusicOSD)</enter>
  276. <m>ActivateWindow(MusicOSD)</m>
  277. <i>Info</i>
  278. <p>ActivateWindow(VisualisationPresetList)</p>
  279. <v>ActivateWindow(VisualisationSettings)</v>
  280. <n>ActivateWindow(MusicPlaylist)</n>
  281. <left>SkipPrevious</left>
  282. <right>SkipNext</right>
  283. <up>IncreaseRating</up>
  284. <down>DecreaseRating</down> <!--<back>NextPreset</back>!-->
  285. <o>CodecInfo</o>
  286. <l>LockPreset</l>
  287. <escape>FullScreen</escape>
  288. </keyboard>
  289. </Visualisation>
  290. <MusicOSD>
  291. <keyboard>
  292. <escape>Close</escape>
  293. <f>FastForward</f>
  294. <r>Rewind</r>
  295. <period>SkipNext</period>
  296. <comma>SkipPrevious</comma>
  297. <m>Close</m>
  298. <i>Info</i>
  299. <o>CodecInfo</o>
  300. <p>ActivateWindow(VisualisationPresetList)</p>
  301. <v>ActivateWindow(VisualisationSettings)</v>
  302. <n>ActivateWindow(MusicPlaylist)</n>
  303. </keyboard>
  304. </MusicOSD>
  305. <VisualisationSettings>
  306. <keyboard>
  307. <escape>Close</escape>
  308. <f>FastForward</f>
  309. <r>Rewind</r>
  310. <period>SkipNext</period>
  311. <comma>SkipPrevious</comma>
  312. <m>Close</m>
  313. <i>Info</i>
  314. <o>CodecInfo</o>
  315. <p>ActivateWindow(VisualisationPresetList)</p>
  316. <v>Close</v>
  317. <n>ActivateWindow(MusicPlaylist)</n>
  318. </keyboard>
  319. </VisualisationSettings>
  320. <VisualisationPresetList>
  321. <keyboard>
  322. <escape>Close</escape>
  323. <f>FastForward</f>
  324. <r>Rewind</r>
  325. <period>SkipNext</period>
  326. <comma>SkipPrevious</comma>
  327. <m>Close</m>
  328. <i>Info</i>
  329. <o>CodecInfo</o>
  330. <p>Close</p>
  331. <v>Close</v>
  332. <n>ActivateWindow(MusicPlaylist)</n>
  333. </keyboard>
  334. </VisualisationPresetList>
  335. <SlideShow>
  336. <keyboard>
  337. <zero>ZoomNormal</zero>
  338. <one>ZoomLevel1</one>
  339. <two>ZoomLevel2</two>
  340. <three>ZoomLevel3</three>
  341. <four>ZoomLevel4</four>
  342. <five>ZoomLevel5</five>
  343. <six>ZoomLevel6</six>
  344. <seven>ZoomLevel7</seven>
  345. <eight>ZoomLevel8</eight>
  346. <nine>ZoomLevel9</nine>
  347. <i>Info</i>
  348. <o>CodecInfo</o>
  349. <period>NextPicture</period>
  350. <comma>PreviousPicture</comma>
  351. <plus>ZoomIn</plus>
  352. <minus>ZoomOut</minus>
  353. <r>Rotate</r>
  354. <backspace>PreviousMenu</backspace>
  355. </keyboard>
  356. </SlideShow>
  357. <ScreenCalibration>
  358. <keyboard>
  359. <return>NextCalibration</return>
  360. <enter>NextCalibration</enter>
  361. <d>ResetCalibration</d>
  362. <r>NextResolution</r>
  363. </keyboard>
  364. </ScreenCalibration>
  365. <GUICalibration>
  366. <keyboard>
  367. <return>NextCalibration</return>
  368. <enter>NextCalibration</enter>
  369. <d>ResetCalibration</d>
  370. </keyboard>
  371. </GUICalibration>
  372. <SelectDialog>
  373. <keyboard>
  374. <backspace>Close</backspace>
  375. <escape>Close</escape>
  376. </keyboard>
  377. </SelectDialog>
  378. <VideoOSD>
  379. <keyboard>
  380. <backspace>Close</backspace>
  381. <escape>Close</escape>
  382. <m>Close</m>
  383. <g mod="ctrl">close</g> <!-- MCE Guide button -->
  384. <i>Info</i>
  385. <o>CodecInfo</o>
  386. </keyboard>
  387. </VideoOSD>
  388. <VideoMenu>
  389. <keyboard>
  390. <opensquarebracket>BigStepForward</opensquarebracket>
  391. <closesquarebracket>BigStepBack</closesquarebracket>
  392. <m>OSD</m>
  393. <i>Info</i>
  394. <o>CodecInfo</o>
  395. <z>AspectRatio</z>
  396. <t>ShowSubtitles</t>
  397. <l>NextSubtitle</l>
  398. <a>AudioDelay</a>
  399. <escape>Fullscreen</escape>
  400. <return>Select</return>
  401. <enter>Select</enter> <!-- backspace>Fullscreen</backspace -->
  402. <backspace>PreviousMenu</backspace>
  403. </keyboard>
  404. </VideoMenu>
  405. <OSDVideoSettings>
  406. <keyboard>
  407. <backspace>Close</backspace>
  408. <escape>Close</escape>
  409. <i>Info</i>
  410. <o>CodecInfo</o>
  411. </keyboard>
  412. </OSDVideoSettings>
  413. <OSDAudioSettings>
  414. <keyboard>
  415. <backspace>Close</backspace>
  416. <escape>Close</escape>
  417. <i>Info</i>
  418. <o>CodecInfo</o>
  419. </keyboard>
  420. </OSDAudioSettings>
  421. <VideoBookmarks>
  422. <keyboard>
  423. <backspace>Close</backspace>
  424. <escape>Close</escape>
  425. </keyboard>
  426. </VideoBookmarks>
  427. <MyVideoLibrary>
  428. <keyboard>
  429. <delete>Delete</delete>
  430. <space>Playlist</space>
  431. <w>ToggleWatched</w>
  432. <q>Queue</q> <!-- Used for MCE remotes to Queue Videos in playlist -->
  433. </keyboard>
  434. </MyVideoLibrary>
  435. <MyVideoFiles>
  436. <keyboard>
  437. <space>Playlist</space>
  438. <q>Queue</q> <!-- Used for MCE remotes to Queue Videos in playlist -->
  439. <w>ToggleWatched</w>
  440. </keyboard>
  441. </MyVideoFiles>
  442. <MyVideoPlaylist>
  443. <keyboard>
  444. <backspace>Playlist</backspace> <!-- Close playlist -->
  445. <space>Playlist</space> <!-- Close playlist -->
  446. <delete>Delete</delete>
  447. <q>Delete</q> <!-- Used for MCE remotes to Delete Videos in playlist -->
  448. <u>MoveItemUp</u>
  449. <d>MoveItemDown</d>
  450. <pageup>MoveItemUp</pageup> <!-- Used for MCE remotes to Arrange playlist -->
  451. <pagedown>MoveItemDown</pagedown> <!-- Used for MCE remotes to arrange playlist -->
  452. </keyboard>
  453. </MyVideoPlaylist>
  454. <ContextMenu>
  455. <keyboard>
  456. <c>Close</c>
  457. <menu>Close</menu>
  458. <backspace>Close</backspace>
  459. </keyboard>
  460. </ContextMenu>
  461. <FileStackingDialog>
  462. <keyboard>
  463. <backspace>Close</backspace>
  464. </keyboard>
  465. </FileStackingDialog>
  466. <Scripts>
  467. <keyboard>
  468. <i>info</i>
  469. </keyboard>
  470. </Scripts>
  471. <Weather>
  472. <keyboard>
  473. <backspace>PreviousMenu</backspace>
  474. <key id='65446'>PreviousMenu</key>
  475. </keyboard>
  476. </Weather>
  477. <Settings>
  478. <keyboard>
  479. <backspace>PreviousMenu</backspace>
  480. </keyboard>
  481. </Settings>
  482. <MyPicturesSettings>
  483. <keyboard>
  484. <backspace>PreviousMenu</backspace>
  485. </keyboard>
  486. </MyPicturesSettings>
  487. <MyProgramsSettings>
  488. <keyboard>
  489. <backspace>PreviousMenu</backspace>
  490. </keyboard>
  491. </MyProgramsSettings>
  492. <MyWeatherSettings>
  493. <keyboard>
  494. <backspace>PreviousMenu</backspace>
  495. </keyboard>
  496. </MyWeatherSettings>
  497. <MyMusicSettings>
  498. <keyboard>
  499. <backspace>PreviousMenu</backspace>
  500. </keyboard>
  501. </MyMusicSettings>
  502. <SystemSettings>
  503. <keyboard>
  504. <backspace>PreviousMenu</backspace>
  505. </keyboard>
  506. </SystemSettings>
  507. <MyVideosSettings>
  508. <keyboard>
  509. <backspace>PreviousMenu</backspace>
  510. </keyboard>
  511. </MyVideosSettings>
  512. <NetworkSettings>
  513. <keyboard>
  514. <backspace>PreviousMenu</backspace>
  515. </keyboard>
  516. </NetworkSettings>
  517. <AppearanceSettings>
  518. <keyboard>
  519. <backspace>PreviousMenu</backspace>
  520. </keyboard>
  521. </AppearanceSettings>
  522. <Profiles>
  523. <keyboard>
  524. <backspace>PreviousMenu</backspace>
  525. </keyboard>
  526. </Profiles>
  527. <systeminfo>
  528. <keyboard>
  529. <backspace>PreviousMenu</backspace>
  530. </keyboard>
  531. </systeminfo>
  532. <shutdownmenu>
  533. <keyboard>
  534. <backspace>PreviousMenu</backspace>
  535. <s>Close</s>
  536. </keyboard>
  537. </shutdownmenu>
  538. <submenu>
  539. <keyboard>
  540. <backspace>PreviousMenu</backspace>
  541. </keyboard>
  542. </submenu>
  543. <MusicInformation>
  544. <keyboard>
  545. <backspace>Close</backspace>
  546. <key id='65446'>Close</key>
  547. </keyboard>
  548. </MusicInformation>
  549. <MovieInformation>
  550. <keyboard>
  551. <backspace>Close</backspace>
  552. <i>Close</i>
  553. <d mod="ctrl">Close</d>
  554. <key id='65446'>Close</key>
  555. </keyboard>
  556. </MovieInformation>
  557. <AddonInformation>
  558. <keyboard>
  559. <backspace>Close</backspace>
  560. </keyboard>
  561. </AddonInformation>
  562. <AddonSettings>
  563. <keyboard>
  564. <backspace>Close</backspace>
  565. </keyboard>
  566. </AddonSettings>
  567. <TextViewer>
  568. <keyboard>
  569. <backspace>Close</backspace>
  570. </keyboard>
  571. </TextViewer>
  572. <LockSettings>
  573. <keyboard>
  574. <escape>Close</escape>
  575. <backspace>PreviousMenu</backspace>
  576. </keyboard>
  577. </LockSettings>
  578. <ProfileSettings>
  579. <keyboard>
  580. <escape>Close</escape>
  581. <backspace>PreviousMenu</backspace>
  582. </keyboard>
  583. </ProfileSettings>
  584. <PictureInfo>
  585. <keyboard>
  586. <period>NextPicture</period>
  587. <comma>PreviousPicture</comma>
  588. <i>Close</i>
  589. <d mod="ctrl">Close</d>
  590. <o>Close</o>
  591. <backspace>Close</backspace>
  592. <space>Pause</space>
  593. </keyboard>
  594. </PictureInfo>
  595. <Teletext>
  596. <keyboard>
  597. <backspace>Close</backspace>
  598. <escape>Close</escape>
  599. <v>Close</v>
  600. </keyboard>
  601. </Teletext>
  602. <Favourites>
  603. <keyboard>
  604. <backspace>Close</backspace>
  605. </keyboard>
  606. </Favourites>
  607. <NumericInput>
  608. <keyboard>
  609. <backspace>Close</backspace>
  610. </keyboard>
  611. </NumericInput>
  612. </keymap>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement