User:Ned Scott/Sandbox2: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(Blanked the page)
No edit summary
Line 1: Line 1:
 
<syntaxhighlight lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <global>
    <touch>
      <tap>LeftClick</tap>
      <longpress>RightClick</longpress>
      <tap pointers="2">RightClick</tap>
      <pan>PanGesture</pan>
      <swipe direction="left">SwipeLeft</swipe>
      <swipe direction="left" pointers="2">Back</swipe>
      <swipe direction="right">SwipeRight</swipe>
      <swipe direction="up">SwipeUp</swipe>
      <swipe direction="down">SwipeDown</swipe>
    </touch>
  </global>
  <FullScreenVideo>
    <touch>
      <swipe direction="left">StepBack</swipe>
      <swipe direction="right">StepForward</swipe>
      <swipe direction="up">ChapterOrBigStepForward</swipe>
      <swipe direction="down">ChapterOrBigStepBack</swipe>
      <swipe direction="left" pointers="2">SmallStepBack</swipe>
      <swipe direction="down" pointers="2">Stop</swipe>
      <swipe direction="up" pointers="2">SwitchPlayer</swipe>
      <zoom>AspectRatio</zoom>
    </touch>
  </FullScreenVideo>
  <SlideShow>
    <touch>
      <zoom>ZoomGesture</zoom>
      <rotate>RotateGesture</rotate>
    </touch>
  </SlideShow>
</keymap>
</syntaxhighlight>

Revision as of 01:07, 2 December 2013

<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <global>
    <touch>
      <tap>LeftClick</tap>
      <longpress>RightClick</longpress>
      <tap pointers="2">RightClick</tap>
      <pan>PanGesture</pan>
      <swipe direction="left">SwipeLeft</swipe>
      <swipe direction="left" pointers="2">Back</swipe>
      <swipe direction="right">SwipeRight</swipe>
      <swipe direction="up">SwipeUp</swipe>
      <swipe direction="down">SwipeDown</swipe>
    </touch>
  </global>
  <FullScreenVideo>
    <touch>
      <swipe direction="left">StepBack</swipe>
      <swipe direction="right">StepForward</swipe>
      <swipe direction="up">ChapterOrBigStepForward</swipe>
      <swipe direction="down">ChapterOrBigStepBack</swipe>
      <swipe direction="left" pointers="2">SmallStepBack</swipe>
      <swipe direction="down" pointers="2">Stop</swipe>
      <swipe direction="up" pointers="2">SwitchPlayer</swipe>
      <zoom>AspectRatio</zoom>
    </touch>
  </FullScreenVideo>
  <SlideShow>
    <touch>
      <zoom>ZoomGesture</zoom>
      <rotate>RotateGesture</rotate>
    </touch>
  </SlideShow>
</keymap>