blob: 22f27e2b03768026dc32c354b3497d4e5bf393f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Key bindings</name>
<id>org.inkscape.jessyink.key_bindings</id>
<param name="tab" type="notebook">
<page name="slide" gui-text="Slide mode">
<param name="slide_backWithEffects" type="string" gui-text="Back (with effects):">LEFT, PAGE_UP</param>
<param name="slide_nextWithEffects" type="string" gui-text="Next (with effects):">RIGHT, PAGE_DOWN, SPACE</param>
<param name="slide_backWithoutEffects" type="string" gui-text="Back (without effects):">UP</param>
<param name="slide_nextWithoutEffects" type="string" gui-text="Next (without effects):">DOWN</param>
<param name="slide_firstSlide" type="string" gui-text="First slide:">HOME</param>
<param name="slide_lastSlide" type="string" gui-text="Last slide:">END</param>
<param name="slide_switchToIndexMode" type="string" gui-text="Switch to index mode:">i</param>
<param name="slide_switchToDrawingMode" type="string" gui-text="Switch to drawing mode:">d</param>
<param name="slide_setDuration" type="string" gui-text="Set duration:">D</param>
<param name="slide_addSlide" type="string" gui-text="Add slide:">n</param>
<param name="slide_toggleProgressBar" type="string" gui-text="Toggle progress bar:">p</param>
<param name="slide_resetTimer" type="string" gui-text="Reset timer:">t</param>
<param name="slide_export" type="string" gui-text="Export presentation:">e</param>
</page>
<page name="drawing" gui-text="Drawing mode">
<param name="drawing_switchToSlideMode" type="string" gui-text="Switch to slide mode:">ESCAPE, d</param>
<param name="drawing_pathWidthDefault" type="string" gui-text="Set path width to default:">0</param>
<param name="drawing_pathWidth1" type="string" gui-text="Set path width to 1:">1</param>
<param name="drawing_pathWidth3" type="string" gui-text="Set path width to 3:">3</param>
<param name="drawing_pathWidth5" type="string" gui-text="Set path width to 5:">5</param>
<param name="drawing_pathWidth7" type="string" gui-text="Set path width to 7:">7</param>
<param name="drawing_pathWidth9" type="string" gui-text="Set path width to 9:">9</param>
<param name="drawing_undo" type="string" gui-text="Undo last path segment:">z</param>
</page>
<page name="drawing2" gui-text="Path Colors">
<param name="drawing_pathColourBlue" type="string" gui-text="Set path color to blue:">b</param>
<param name="drawing_pathColourCyan" type="string" gui-text="Set path color to cyan:">c</param>
<param name="drawing_pathColourGreen" type="string" gui-text="Set path color to green:">g</param>
<param name="drawing_pathColourBlack" type="string" gui-text="Set path color to black:">k</param>
<param name="drawing_pathColourMagenta" type="string" gui-text="Set path color to magenta:">m</param>
<param name="drawing_pathColourOrange" type="string" gui-text="Set path color to orange:">o</param>
<param name="drawing_pathColourRed" type="string" gui-text="Set path color to red:">r</param>
<param name="drawing_pathColourWhite" type="string" gui-text="Set path color to white:">w</param>
<param name="drawing_pathColourYellow" type="string" gui-text="Set path color to yellow:">y</param>
</page>
<page name="index" gui-text="Index mode">
<param name="index_selectSlideToLeft" type="string" gui-text="Select the slide to the left:">LEFT</param>
<param name="index_selectSlideToRight" type="string" gui-text="Select the slide to the right:">RIGHT</param>
<param name="index_selectSlideAbove" type="string" gui-text="Select the slide above:">UP</param>
<param name="index_selectSlideBelow" type="string" gui-text="Select the slide below:">DOWN</param>
<param name="index_previousPage" type="string" gui-text="Previous page:">PAGE_UP</param>
<param name="index_nextPage" type="string" gui-text="Next page:">PAGE_DOWN</param>
<param name="index_firstSlide" type="string" gui-text="First slide:">HOME</param>
<param name="index_lastSlide" type="string" gui-text="Last slide:">END</param>
<param name="index_switchToSlideMode" type="string" gui-text="Switch to slide mode:">ENTER, i</param>
<param name="index_decreaseNumberOfColumns" type="string" gui-text="Decrease number of columns:">-</param>
<param name="index_increaseNumberOfColumns" type="string" gui-text="Increase number of columns:">+, =</param>
<param name="index_setNumberOfColumnsToDefault" type="string" gui-text="Set number of columns to default:">0</param>
</page>
<page name="help" gui-text="Help">
<label>This extension allows you customize the key bindings JessyInk uses. Please see code.google.com/p/jessyink for more details.</label>
</page>
</param>
<effect>
<object-type>g</object-type>
<effects-menu>
<submenu name="JessyInk"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">jessyink_key_bindings.py</command>
</script>
</inkscape-extension>
|