Kodi Community Forum

Full Version: TVGuide window Keymap.xml ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Is there a section in keymap.xml for TVGuide view? (MyPVRGuide.xml)

I'm running Helix now and previously with Gotham I could assign a close button for the TVGuide in keymap using this:

<TV>
<remote>
<guide>Close</guide>
</remote>
</TV>

That way I could close the TVGuide using the same button.
Now I need to use exit button which results in multiple key presses and going completely back to home screen to get back to fullscreen again.

I'm not talking about the PVROSDGuide (DialogPVROSDGuide.xml) which is for the guide for that specific channel your watching but the complete EPG view
i'm using <FullScreen>
Code:
<TVGuide>
  <remote>
     <guide>PreviousMenu</guide>
  </remote>
</TVGuide>

New window names:

TVChannels & RadioChannels -> MyPVRChannels.xml
TVGuide & RadioGuide -> MyPVRGuide.xml
TVRecordings & RadioRecordings -> MyPVRRecordings.xml
TVSearch & RadioSearch -> MyPVRSearch.xml
TVTimers & RadioTimers -> MyPVRTimers.xml
(2014-10-11, 20:58)Jönke Wrote: [ -> ]i'm using <FullScreen>

Mmm the standard keymap shipped in my OpenELEC version doesn't have <FullScreen> only <FullscreenVideo>, <FullscreenInfo>, <FullscreenLiveTV>and <FullscreenRadio>.

Although <TV> wasn't in default remote.xml also when I was using Gotham, i'll give it a shot.

/edit:
(2014-10-11, 21:01)xhaggi Wrote: [ -> ]
Code:
<TVGuide>
  <remote>
     <guide>PreviousMenu</guide>
  </remote>
</TVGuide>

New window names:

TVChannels & RadioChannels -> MyPVRChannels.xml
TVGuide & RadioGuide -> MyPVRGuide.xml
TVRecordings & RadioRecordings -> MyPVRRecordings.xml
TVSearch & RadioSearch -> MyPVRSearch.xml
TVTimers & RadioTimers -> MyPVRTimers.xml
I was thinking about TVGuide also but wasn't sure, did change keymap but didn't had time to test it yet.
Thanks for explaining.

Were could we find such info about new windows etc?
I checked wiki but didn't find this information.
What about <PVROSGuide> ? Is it the same as <TVGuide>?
When I enabled skin debug mode I saw that <PVROSDGuide> is for EPG information for current channel NOT for full EPG (TVGuide).

TVGuide, like xhaggi said, seems to do the trick. Strange that it wasn't in remote.xml shipped in OpenELEC (didn't checked xbmc github source yet)
Also please tell me what PVROSDCutter and PVROSDDirector is ? Smile
they are unused dialogs
Thanks for the hint about the wiki. I've added the window ids http://wiki.xbmc.org/index.php?title=Window_IDs
Thanks !

I´ve added this to my remote .xml and i´m very happy with it

PHP Code:
<TVGuide>
  <
remote>
     <
guide>PreviousMenu</guide>
  </
remote>
</
TVGuide>
<
TVSearch>
  <
remote>
     <
back>PreviousMenu</back>
  </
remote>
</
TVSearch>
<
TVTimers>
  <
remote>
     <
back>PreviousMenu</back>
  </
remote>
</
TVTimers>
<
TVRecordings>
  <
remote>
     <
back>PreviousMenu</back>
<
recordedtv>PreviousMenu</recordedtv>
  </
remote>
</
TVRecordings
@xhaggi is there a way to map buttons in the "Programme info" window ?
What i'm looking for is a way to close Programme info" window with info button again after i have opened the window with info button
Image
switch the skin in debug mode and check for the window id ... i think it's PVROSDGuide and then add this to your keymaps like you did for the other windows.

EDIT: but use <your-button>Close</your-button>
That wont work cause i allredy have to use <info>Select</info> mapp in <PVROSDGuide> to get info button to open programme info window.
What we need is a way to separate PVROSDGuide and also PVROSDChannels keymap from programe info

<PVROSDGuide>
<remote>
<back>Close</back>
<info>Select</info>
<menu>Close</menu>
<start>Close</start>
<guide>Close</guide>
</remote>
</PVROSDGuide>

Edit maybe this thread should be moved to pvr section of forum?
Please don't use the report button to ask for a thread move :P
(2014-10-17, 09:21)Ned Scott Wrote: [ -> ]Please don't use the report button to ask for a thread move Tongue

Sorry, won't happen again Wink
Pages: 1 2