aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/kobo/settings/gestures.lua
blob: a15d3447fe2d63b05a37bea3e17910c0d77aded3 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
-- we can read Lua syntax here!
return {
    ["custom_multiswipes"] = {},
    ["gesture_fm"] = {
        ["hold_bottom_left_corner"] = {
            ["history"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "history",
                },
            },
        },
        ["hold_bottom_right_corner"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "suspend",
                },
            },
            ["suspend"] = true,
        },
        ["hold_top_left_corner"] = {
            ["exit"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "exit",
                },
            },
        },
        ["hold_top_right_corner"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "terminal",
                },
            },
            ["terminal"] = true,
        },
        ["multiswipe"] = {},
        ["multiswipe_east_north"] = {
            ["history"] = true,
        },
        ["multiswipe_east_north_west"] = {},
        ["multiswipe_east_north_west_east"] = {},
        ["multiswipe_east_south"] = {
            ["go_to"] = true,
        },
        ["multiswipe_east_south_west_north"] = {
            ["full_refresh"] = true,
        },
        ["multiswipe_east_west"] = {},
        ["multiswipe_east_west_east"] = {
            ["favorites"] = true,
        },
        ["multiswipe_north_east"] = {},
        ["multiswipe_north_south"] = {
            ["folder_up"] = true,
        },
        ["multiswipe_north_south_north"] = {},
        ["multiswipe_north_west"] = {
            ["folder_shortcuts"] = true,
        },
        ["multiswipe_northwest_southwest_northwest"] = {
            ["toggle_wifi"] = true,
        },
        ["multiswipe_south_east"] = {},
        ["multiswipe_south_east_north"] = {},
        ["multiswipe_south_east_north_south"] = {},
        ["multiswipe_south_north"] = {},
        ["multiswipe_south_north_south"] = {},
        ["multiswipe_south_west"] = {
            ["show_frontlight_dialog"] = true,
        },
        ["multiswipe_southeast_northeast"] = {},
        ["multiswipe_southeast_northeast_northwest"] = {
            ["wifi_on"] = true,
        },
        ["multiswipe_southeast_southwest_northwest"] = {
            ["wifi_off"] = true,
        },
        ["multiswipe_west_east"] = {},
        ["multiswipe_west_east_west"] = {
            ["open_previous_document"] = true,
        },
        ["multiswipe_west_north"] = {},
        ["multiswipe_west_south"] = {
            ["back"] = true,
        },
        ["one_finger_swipe_right_edge_down"] = {
            ["full_refresh"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "full_refresh",
                },
            },
        },
        ["one_finger_swipe_right_edge_up"] = {
            ["full_refresh"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "full_refresh",
                },
            },
        },
        ["pinch_gesture"] = {
            ["folder_up"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "folder_up",
                },
            },
        },
        ["short_diagonal_swipe"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "show_menu",
                },
            },
            ["show_menu"] = true,
        },
        ["spread_gesture"] = {
            ["open_previous_document"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "open_previous_document",
                },
            },
        },
        ["tap_left_bottom_corner"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "show_frontlight_dialog",
                },
            },
            ["show_frontlight_dialog"] = true,
        },
        ["two_finger_swipe_east"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "toggle_wifi",
                },
            },
            ["toggle_wifi"] = true,
        },
        ["two_finger_swipe_north"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "show_network_info",
                },
            },
            ["show_network_info"] = true,
        },
        ["two_finger_swipe_south"] = {
            ["reboot"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "reboot",
                },
            },
        },
        ["two_finger_swipe_west"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "toggle_ssh_server",
                },
            },
            ["toggle_ssh_server"] = true,
        },
    },
    ["gesture_reader"] = {
        ["double_tap_left_side"] = {
            ["page_jmp"] = -10,
        },
        ["double_tap_right_side"] = {
            ["page_jmp"] = 10,
        },
        ["hold_bottom_left_corner"] = {
            ["history"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "history",
                },
            },
        },
        ["hold_bottom_right_corner"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "suspend",
                },
            },
            ["suspend"] = true,
        },
        ["hold_top_left_corner"] = {
            ["screenshot"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "screenshot",
                },
            },
        },
        ["hold_top_right_corner"] = {
            ["book_info"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "book_info",
                },
            },
        },
        ["multiswipe"] = {},
        ["multiswipe_east_north"] = {
            ["history"] = true,
        },
        ["multiswipe_east_north_west"] = {
            ["zoom"] = "contentwidth",
        },
        ["multiswipe_east_north_west_east"] = {
            ["zoom"] = "pagewidth",
        },
        ["multiswipe_east_south"] = {
            ["go_to"] = true,
        },
        ["multiswipe_east_south_west_north"] = {
            ["full_refresh"] = true,
        },
        ["multiswipe_east_west"] = {
            ["latest_bookmark"] = true,
        },
        ["multiswipe_east_west_east"] = {
            ["favorites"] = true,
        },
        ["multiswipe_north_east"] = {
            ["toc"] = true,
        },
        ["multiswipe_north_south"] = {},
        ["multiswipe_north_south_north"] = {
            ["prev_chapter"] = true,
        },
        ["multiswipe_north_west"] = {
            ["bookmarks"] = true,
        },
        ["multiswipe_northwest_southwest_northwest"] = {
            ["toggle_wifi"] = true,
        },
        ["multiswipe_south_east"] = {
            ["toggle_reflow"] = true,
        },
        ["multiswipe_south_east_north"] = {
            ["zoom"] = "contentheight",
        },
        ["multiswipe_south_east_north_south"] = {
            ["zoom"] = "pageheight",
        },
        ["multiswipe_south_north"] = {
            ["skim"] = true,
        },
        ["multiswipe_south_north_south"] = {
            ["next_chapter"] = true,
        },
        ["multiswipe_south_west"] = {
            ["show_frontlight_dialog"] = true,
        },
        ["multiswipe_southeast_northeast"] = {
            ["follow_nearest_link"] = true,
        },
        ["multiswipe_southeast_northeast_northwest"] = {
            ["wifi_on"] = true,
        },
        ["multiswipe_southeast_southwest_northwest"] = {
            ["wifi_off"] = true,
        },
        ["multiswipe_west_east"] = {
            ["previous_location"] = true,
        },
        ["multiswipe_west_east_west"] = {
            ["open_previous_document"] = true,
        },
        ["multiswipe_west_north"] = {
            ["book_status"] = true,
        },
        ["multiswipe_west_south"] = {
            ["back"] = true,
        },
        ["one_finger_swipe_right_edge_down"] = {
            ["page_browser"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "page_browser",
                },
            },
        },
        ["one_finger_swipe_right_edge_up"] = {
            ["book_map"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "book_map",
                },
            },
        },
        ["pinch_gesture"] = {
            ["filemanager"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "filemanager",
                },
            },
        },
        ["short_diagonal_swipe"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "show_menu",
                },
            },
            ["show_menu"] = true,
        },
        ["spread_gesture"] = {
            ["open_previous_document"] = true,
            ["settings"] = {
                ["order"] = {
                    [1] = "open_previous_document",
                },
            },
        },
        ["tap_left_bottom_corner"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "show_frontlight_dialog",
                },
            },
            ["show_frontlight_dialog"] = true,
        },
        ["tap_top_left_corner"] = {
            ["toggle_page_flipping"] = true,
        },
        ["tap_top_right_corner"] = {
            ["toggle_bookmark"] = true,
        },
        ["two_finger_swipe_east"] = {
            ["toc"] = true,
        },
        ["two_finger_swipe_north"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "toggle_gsensor",
                },
            },
            ["toggle_gsensor"] = true,
        },
        ["two_finger_swipe_south"] = {
            ["settings"] = {
                ["order"] = {
                    [1] = "skim",
                },
            },
            ["skim"] = true,
        },
        ["two_finger_swipe_west"] = {
            ["bookmarks"] = true,
        },
    },
}