blob: adcfbd6a05e5f8108033c2f73fc9b4d86b12082f (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#:import resource_find kivy.resources.resource_find
<NextPage>:
source: resource_find('atlas://browser/next_page')
tooltip: 'One page down'
<PreviousPage>:
source: resource_find('atlas://browser/previous_page')
tooltip: 'One page up'
<ScrollUp>:
source: resource_find('atlas://browser/scroll_up')
tooltip: 'One row up'
<ScrollDown>:
source: resource_find('atlas://browser/scroll_down')
tooltip: 'One row down'
<JumpToPage>:
source: resource_find('atlas://browser/jump_to_page')
tooltip: 'Jump to a specified page'
<ZoomIn>:
source: resource_find('atlas://browser/zoom_in')
tooltip: 'Zoom in'
<ZoomOut>:
source: resource_find('atlas://browser/zoom_out')
tooltip: 'Zoom out'
<JumpToCursor>:
source: resource_find('atlas://browser/jump_to_cursor')
tooltip: 'Jump to cursor'
<SetCursor>:
source: resource_find('atlas://browser/set_cursor')
tooltip: 'Set the cursor'
<MoveCursorFirst>:
source: resource_find('atlas://browser/cursor_first')
tooltip: 'Go to first image'
<MoveCursorLast>:
source: resource_find('atlas://browser/cursor_last')
tooltip: 'Go to last image'
<MoveCursorUp>:
source: resource_find('atlas://browser/cursor_up')
tooltip: 'Cursor up'
<MoveCursorDown>:
source: resource_find('atlas://browser/cursor_down')
tooltip: 'Cursor down'
<MoveCursorLeft>:
source: resource_find('atlas://browser/cursor_left')
tooltip: 'Cursor left'
<MoveCursorRight>:
source: resource_find('atlas://browser/cursor_right')
tooltip: 'Cursor right'
<SelectAll>:
source: resource_find('atlas://browser/select_all')
tooltip: 'Select all'
<SelectNone>:
source: resource_find('atlas://browser/select_none')
tooltip: 'Clear selection'
<SelectInvert>:
source: resource_find('atlas://browser/select_invert')
tooltip: 'Invert selection'
<SelectSingle>:
source: resource_find('atlas://browser/select_single')
tooltip: 'Select one'
<SelectMulti>:
source: resource_find('atlas://browser/select_multi')
tooltip: 'Select many'
<SelectAdditive>:
source: resource_find('atlas://browser/select_add')
tooltip: 'Add to selection'
<SelectSubtractive>:
source: resource_find('atlas://browser/select_sub')
tooltip: 'Remove from selection'
<SelectRange>:
source: resource_find('atlas://browser/select_range')
tooltip: 'Select range'
<Select>:
source: resource_find('atlas://browser/select')
tooltip: 'Select/deselect an item'
## EOF ##
|