ratatui_ruby 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.builds/ruby-3.2.yml +1 -1
- data/.builds/ruby-3.3.yml +1 -1
- data/.builds/ruby-3.4.yml +1 -1
- data/.builds/ruby-4.0.0.yml +1 -1
- data/AGENTS.md +3 -2
- data/CHANGELOG.md +33 -7
- data/Steepfile +1 -0
- data/doc/concepts/application_testing.md +5 -5
- data/doc/concepts/event_handling.md +1 -1
- data/doc/contributors/design/ruby_frontend.md +40 -12
- data/doc/contributors/design/rust_backend.md +13 -1
- data/doc/contributors/releasing.md +215 -0
- data/doc/contributors/todo/align/api_completeness_audit-finished.md +6 -0
- data/doc/contributors/todo/align/api_completeness_audit-unfinished.md +1 -7
- data/doc/contributors/todo/align/term.md +351 -0
- data/doc/contributors/upstream_requests/paragraph_span_rects.md +259 -0
- data/doc/getting_started/quickstart.md +1 -1
- data/doc/getting_started/why.md +3 -3
- data/doc/images/app_external_editor.gif +0 -0
- data/doc/index.md +1 -6
- data/examples/app_external_editor/README.md +62 -0
- data/examples/app_external_editor/app.rb +344 -0
- data/examples/widget_list/app.rb +2 -4
- data/examples/widget_table/app.rb +8 -2
- data/ext/ratatui_ruby/Cargo.lock +1 -1
- data/ext/ratatui_ruby/Cargo.toml +1 -1
- data/ext/ratatui_ruby/src/events.rs +171 -203
- data/ext/ratatui_ruby/src/lib.rs +36 -0
- data/ext/ratatui_ruby/src/lib_header.rs +11 -0
- data/ext/ratatui_ruby/src/terminal/capabilities.rs +46 -0
- data/ext/ratatui_ruby/src/terminal/init.rs +92 -0
- data/ext/ratatui_ruby/src/terminal/mod.rs +12 -3
- data/ext/ratatui_ruby/src/terminal/queries.rs +15 -0
- data/ext/ratatui_ruby/src/terminal/query.rs +64 -2
- data/lib/ratatui_ruby/backend/window_size.rb +50 -0
- data/lib/ratatui_ruby/backend.rb +59 -0
- data/lib/ratatui_ruby/event/key/navigation.rb +10 -1
- data/lib/ratatui_ruby/event/key.rb +84 -0
- data/lib/ratatui_ruby/event/mouse.rb +95 -3
- data/lib/ratatui_ruby/event/resize.rb +45 -3
- data/lib/ratatui_ruby/layout/alignment.rb +91 -0
- data/lib/ratatui_ruby/layout/layout.rb +1 -2
- data/lib/ratatui_ruby/layout/size.rb +10 -3
- data/lib/ratatui_ruby/layout.rb +4 -0
- data/lib/ratatui_ruby/terminal/capabilities.rb +316 -0
- data/lib/ratatui_ruby/terminal/viewport.rb +1 -1
- data/lib/ratatui_ruby/terminal.rb +66 -0
- data/lib/ratatui_ruby/test_helper/global_state.rb +111 -0
- data/lib/ratatui_ruby/test_helper.rb +3 -0
- data/lib/ratatui_ruby/version.rb +1 -1
- data/lib/ratatui_ruby/widgets/table.rb +2 -2
- data/lib/ratatui_ruby.rb +25 -4
- data/sig/examples/app_external_editor/app.rbs +12 -0
- data/sig/generated/event_key_predicates.rbs +1348 -0
- data/sig/ratatui_ruby/backend/window_size.rbs +17 -0
- data/sig/ratatui_ruby/backend.rbs +12 -0
- data/sig/ratatui_ruby/event.rbs +7 -0
- data/sig/ratatui_ruby/layout/alignment.rbs +26 -0
- data/sig/ratatui_ruby/ratatui_ruby.rbs +2 -0
- data/sig/ratatui_ruby/terminal/capabilities.rbs +38 -0
- data/sig/ratatui_ruby/terminal/viewport.rbs +15 -1
- data/tasks/bump/bump_workflow.rb +49 -0
- data/tasks/bump/changelog.rb +57 -0
- data/tasks/bump/patch_release.rb +19 -0
- data/tasks/bump/release_branch.rb +17 -0
- data/tasks/bump/release_from_trunk.rb +49 -0
- data/tasks/bump/repository.rb +54 -0
- data/tasks/bump/ruby_gem.rb +6 -26
- data/tasks/bump/sem_ver.rb +4 -0
- data/tasks/bump/unreleased_section.rb +17 -0
- data/tasks/bump.rake +21 -11
- data/tasks/doc/documentation.rb +59 -0
- data/tasks/doc/link/file_url.rb +30 -0
- data/tasks/doc/link/relative_path.rb +61 -0
- data/tasks/doc/link/web_url.rb +55 -0
- data/tasks/doc/link.rb +52 -0
- data/tasks/doc/link_audit.rb +116 -0
- data/tasks/doc/problem.rb +40 -0
- data/tasks/doc/source_file.rb +93 -0
- data/tasks/doc.rake +18 -0
- data/tasks/rbs_predicates/predicate_catalog.rb +52 -0
- data/tasks/rbs_predicates/predicate_tests.rb +124 -0
- data/tasks/rbs_predicates/rbs_signature.rb +63 -0
- data/tasks/rbs_predicates.rake +31 -0
- data/tasks/test.rake +3 -0
- data/tasks/website/version.rb +23 -28
- metadata +38 -1
|
@@ -0,0 +1,1348 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2026 Kerrick Long <me@kerricklong.com>
|
|
2
|
+
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
3
|
+
#
|
|
4
|
+
# ╔═══════════════════════════════════════════════════════════════════╗
|
|
5
|
+
# ║ ⚠️ DO NOT EDIT THIS FILE ⚠️ ║
|
|
6
|
+
# ║ ║
|
|
7
|
+
# ║ This file is auto-generated by: rake rbs:predicates ║
|
|
8
|
+
# ║ Any manual changes will be overwritten on next generation. ║
|
|
9
|
+
# ║ ║
|
|
10
|
+
# ║ To modify predicates, edit the source in: ║
|
|
11
|
+
# ║ - ext/ratatui_ruby/src/events.rs (key mappings) ║
|
|
12
|
+
# ║ - tasks/rbs_predicates/predicate_catalog.rb ║
|
|
13
|
+
# ╚═══════════════════════════════════════════════════════════════════╝
|
|
14
|
+
|
|
15
|
+
module RatatuiRuby
|
|
16
|
+
class Event
|
|
17
|
+
class Key < Event
|
|
18
|
+
def up?: () -> bool
|
|
19
|
+
def down?: () -> bool
|
|
20
|
+
def left?: () -> bool
|
|
21
|
+
def right?: () -> bool
|
|
22
|
+
def enter?: () -> bool
|
|
23
|
+
def esc?: () -> bool
|
|
24
|
+
def backspace?: () -> bool
|
|
25
|
+
def tab?: () -> bool
|
|
26
|
+
def back_tab?: () -> bool
|
|
27
|
+
def null?: () -> bool
|
|
28
|
+
def home?: () -> bool
|
|
29
|
+
def end?: () -> bool
|
|
30
|
+
def page_up?: () -> bool
|
|
31
|
+
def page_down?: () -> bool
|
|
32
|
+
def insert?: () -> bool
|
|
33
|
+
def delete?: () -> bool
|
|
34
|
+
def caps_lock?: () -> bool
|
|
35
|
+
def scroll_lock?: () -> bool
|
|
36
|
+
def num_lock?: () -> bool
|
|
37
|
+
def print_screen?: () -> bool
|
|
38
|
+
def pause?: () -> bool
|
|
39
|
+
def menu?: () -> bool
|
|
40
|
+
def keypad_begin?: () -> bool
|
|
41
|
+
def media_play?: () -> bool
|
|
42
|
+
def media_pause?: () -> bool
|
|
43
|
+
def media_play_pause?: () -> bool
|
|
44
|
+
def media_reverse?: () -> bool
|
|
45
|
+
def media_stop?: () -> bool
|
|
46
|
+
def media_fast_forward?: () -> bool
|
|
47
|
+
def media_rewind?: () -> bool
|
|
48
|
+
def media_track_next?: () -> bool
|
|
49
|
+
def media_track_previous?: () -> bool
|
|
50
|
+
def media_record?: () -> bool
|
|
51
|
+
def media_lower_volume?: () -> bool
|
|
52
|
+
def media_raise_volume?: () -> bool
|
|
53
|
+
def media_mute_volume?: () -> bool
|
|
54
|
+
def left_shift?: () -> bool
|
|
55
|
+
def left_control?: () -> bool
|
|
56
|
+
def left_alt?: () -> bool
|
|
57
|
+
def left_super?: () -> bool
|
|
58
|
+
def left_hyper?: () -> bool
|
|
59
|
+
def left_meta?: () -> bool
|
|
60
|
+
def right_shift?: () -> bool
|
|
61
|
+
def right_control?: () -> bool
|
|
62
|
+
def right_alt?: () -> bool
|
|
63
|
+
def right_super?: () -> bool
|
|
64
|
+
def right_hyper?: () -> bool
|
|
65
|
+
def right_meta?: () -> bool
|
|
66
|
+
def iso_level3_shift?: () -> bool
|
|
67
|
+
def iso_level5_shift?: () -> bool
|
|
68
|
+
def `!?`: () -> bool
|
|
69
|
+
def `"?`: () -> bool
|
|
70
|
+
def `#?`: () -> bool
|
|
71
|
+
def `$?`: () -> bool
|
|
72
|
+
def `%?`: () -> bool
|
|
73
|
+
def `&?`: () -> bool
|
|
74
|
+
def `'?`: () -> bool
|
|
75
|
+
def `(?`: () -> bool
|
|
76
|
+
def `)?`: () -> bool
|
|
77
|
+
def `*?`: () -> bool
|
|
78
|
+
def `+?`: () -> bool
|
|
79
|
+
def `,?`: () -> bool
|
|
80
|
+
def `-?`: () -> bool
|
|
81
|
+
def `.?`: () -> bool
|
|
82
|
+
def `/?`: () -> bool
|
|
83
|
+
def `0?`: () -> bool
|
|
84
|
+
def `1?`: () -> bool
|
|
85
|
+
def `2?`: () -> bool
|
|
86
|
+
def `3?`: () -> bool
|
|
87
|
+
def `4?`: () -> bool
|
|
88
|
+
def `5?`: () -> bool
|
|
89
|
+
def `6?`: () -> bool
|
|
90
|
+
def `7?`: () -> bool
|
|
91
|
+
def `8?`: () -> bool
|
|
92
|
+
def `9?`: () -> bool
|
|
93
|
+
def `;?`: () -> bool
|
|
94
|
+
def `<?`: () -> bool
|
|
95
|
+
def `=?`: () -> bool
|
|
96
|
+
def `>?`: () -> bool
|
|
97
|
+
def `??`: () -> bool
|
|
98
|
+
def `@?`: () -> bool
|
|
99
|
+
def A?: () -> bool
|
|
100
|
+
def B?: () -> bool
|
|
101
|
+
def C?: () -> bool
|
|
102
|
+
def D?: () -> bool
|
|
103
|
+
def E?: () -> bool
|
|
104
|
+
def F?: () -> bool
|
|
105
|
+
def G?: () -> bool
|
|
106
|
+
def H?: () -> bool
|
|
107
|
+
def I?: () -> bool
|
|
108
|
+
def J?: () -> bool
|
|
109
|
+
def K?: () -> bool
|
|
110
|
+
def L?: () -> bool
|
|
111
|
+
def M?: () -> bool
|
|
112
|
+
def N?: () -> bool
|
|
113
|
+
def O?: () -> bool
|
|
114
|
+
def P?: () -> bool
|
|
115
|
+
def Q?: () -> bool
|
|
116
|
+
def R?: () -> bool
|
|
117
|
+
def S?: () -> bool
|
|
118
|
+
def T?: () -> bool
|
|
119
|
+
def U?: () -> bool
|
|
120
|
+
def V?: () -> bool
|
|
121
|
+
def W?: () -> bool
|
|
122
|
+
def X?: () -> bool
|
|
123
|
+
def Y?: () -> bool
|
|
124
|
+
def Z?: () -> bool
|
|
125
|
+
def `[?`: () -> bool
|
|
126
|
+
def `\?`: () -> bool
|
|
127
|
+
def `]?`: () -> bool
|
|
128
|
+
def `^?`: () -> bool
|
|
129
|
+
def _?: () -> bool
|
|
130
|
+
def a?: () -> bool
|
|
131
|
+
def b?: () -> bool
|
|
132
|
+
def c?: () -> bool
|
|
133
|
+
def d?: () -> bool
|
|
134
|
+
def e?: () -> bool
|
|
135
|
+
def f?: () -> bool
|
|
136
|
+
def g?: () -> bool
|
|
137
|
+
def h?: () -> bool
|
|
138
|
+
def i?: () -> bool
|
|
139
|
+
def j?: () -> bool
|
|
140
|
+
def k?: () -> bool
|
|
141
|
+
def l?: () -> bool
|
|
142
|
+
def m?: () -> bool
|
|
143
|
+
def n?: () -> bool
|
|
144
|
+
def o?: () -> bool
|
|
145
|
+
def p?: () -> bool
|
|
146
|
+
def q?: () -> bool
|
|
147
|
+
def r?: () -> bool
|
|
148
|
+
def s?: () -> bool
|
|
149
|
+
def t?: () -> bool
|
|
150
|
+
def u?: () -> bool
|
|
151
|
+
def v?: () -> bool
|
|
152
|
+
def w?: () -> bool
|
|
153
|
+
def x?: () -> bool
|
|
154
|
+
def y?: () -> bool
|
|
155
|
+
def z?: () -> bool
|
|
156
|
+
def `{?`: () -> bool
|
|
157
|
+
def `|?`: () -> bool
|
|
158
|
+
def `}?`: () -> bool
|
|
159
|
+
def `~?`: () -> bool
|
|
160
|
+
def f1?: () -> bool
|
|
161
|
+
def f2?: () -> bool
|
|
162
|
+
def f3?: () -> bool
|
|
163
|
+
def f4?: () -> bool
|
|
164
|
+
def f5?: () -> bool
|
|
165
|
+
def f6?: () -> bool
|
|
166
|
+
def f7?: () -> bool
|
|
167
|
+
def f8?: () -> bool
|
|
168
|
+
def f9?: () -> bool
|
|
169
|
+
def f10?: () -> bool
|
|
170
|
+
def f11?: () -> bool
|
|
171
|
+
def f12?: () -> bool
|
|
172
|
+
def f13?: () -> bool
|
|
173
|
+
def f14?: () -> bool
|
|
174
|
+
def f15?: () -> bool
|
|
175
|
+
def f16?: () -> bool
|
|
176
|
+
def f17?: () -> bool
|
|
177
|
+
def f18?: () -> bool
|
|
178
|
+
def f19?: () -> bool
|
|
179
|
+
def f20?: () -> bool
|
|
180
|
+
def f21?: () -> bool
|
|
181
|
+
def f22?: () -> bool
|
|
182
|
+
def f23?: () -> bool
|
|
183
|
+
def f24?: () -> bool
|
|
184
|
+
def alt_up?: () -> bool
|
|
185
|
+
def alt_down?: () -> bool
|
|
186
|
+
def alt_left?: () -> bool
|
|
187
|
+
def alt_right?: () -> bool
|
|
188
|
+
def alt_enter?: () -> bool
|
|
189
|
+
def alt_esc?: () -> bool
|
|
190
|
+
def alt_backspace?: () -> bool
|
|
191
|
+
def alt_tab?: () -> bool
|
|
192
|
+
def alt_back_tab?: () -> bool
|
|
193
|
+
def alt_null?: () -> bool
|
|
194
|
+
def alt_home?: () -> bool
|
|
195
|
+
def alt_end?: () -> bool
|
|
196
|
+
def alt_page_up?: () -> bool
|
|
197
|
+
def alt_page_down?: () -> bool
|
|
198
|
+
def alt_insert?: () -> bool
|
|
199
|
+
def alt_delete?: () -> bool
|
|
200
|
+
def alt_caps_lock?: () -> bool
|
|
201
|
+
def alt_scroll_lock?: () -> bool
|
|
202
|
+
def alt_num_lock?: () -> bool
|
|
203
|
+
def alt_print_screen?: () -> bool
|
|
204
|
+
def alt_pause?: () -> bool
|
|
205
|
+
def alt_menu?: () -> bool
|
|
206
|
+
def alt_keypad_begin?: () -> bool
|
|
207
|
+
def alt_media_play?: () -> bool
|
|
208
|
+
def alt_media_pause?: () -> bool
|
|
209
|
+
def alt_media_play_pause?: () -> bool
|
|
210
|
+
def alt_media_reverse?: () -> bool
|
|
211
|
+
def alt_media_stop?: () -> bool
|
|
212
|
+
def alt_media_fast_forward?: () -> bool
|
|
213
|
+
def alt_media_rewind?: () -> bool
|
|
214
|
+
def alt_media_track_next?: () -> bool
|
|
215
|
+
def alt_media_track_previous?: () -> bool
|
|
216
|
+
def alt_media_record?: () -> bool
|
|
217
|
+
def alt_media_lower_volume?: () -> bool
|
|
218
|
+
def alt_media_raise_volume?: () -> bool
|
|
219
|
+
def alt_media_mute_volume?: () -> bool
|
|
220
|
+
def alt_left_shift?: () -> bool
|
|
221
|
+
def alt_left_control?: () -> bool
|
|
222
|
+
def alt_left_alt?: () -> bool
|
|
223
|
+
def alt_left_super?: () -> bool
|
|
224
|
+
def alt_left_hyper?: () -> bool
|
|
225
|
+
def alt_left_meta?: () -> bool
|
|
226
|
+
def alt_right_shift?: () -> bool
|
|
227
|
+
def alt_right_control?: () -> bool
|
|
228
|
+
def alt_right_alt?: () -> bool
|
|
229
|
+
def alt_right_super?: () -> bool
|
|
230
|
+
def alt_right_hyper?: () -> bool
|
|
231
|
+
def alt_right_meta?: () -> bool
|
|
232
|
+
def alt_iso_level3_shift?: () -> bool
|
|
233
|
+
def alt_iso_level5_shift?: () -> bool
|
|
234
|
+
def `alt_!?`: () -> bool
|
|
235
|
+
def `alt_"?`: () -> bool
|
|
236
|
+
def `alt_#?`: () -> bool
|
|
237
|
+
def `alt_$?`: () -> bool
|
|
238
|
+
def `alt_%?`: () -> bool
|
|
239
|
+
def `alt_&?`: () -> bool
|
|
240
|
+
def `alt_'?`: () -> bool
|
|
241
|
+
def `alt_(?`: () -> bool
|
|
242
|
+
def `alt_)?`: () -> bool
|
|
243
|
+
def `alt_*?`: () -> bool
|
|
244
|
+
def `alt_+?`: () -> bool
|
|
245
|
+
def `alt_,?`: () -> bool
|
|
246
|
+
def `alt_-?`: () -> bool
|
|
247
|
+
def `alt_.?`: () -> bool
|
|
248
|
+
def `alt_/?`: () -> bool
|
|
249
|
+
def alt_0?: () -> bool
|
|
250
|
+
def alt_1?: () -> bool
|
|
251
|
+
def alt_2?: () -> bool
|
|
252
|
+
def alt_3?: () -> bool
|
|
253
|
+
def alt_4?: () -> bool
|
|
254
|
+
def alt_5?: () -> bool
|
|
255
|
+
def alt_6?: () -> bool
|
|
256
|
+
def alt_7?: () -> bool
|
|
257
|
+
def alt_8?: () -> bool
|
|
258
|
+
def alt_9?: () -> bool
|
|
259
|
+
def `alt_;?`: () -> bool
|
|
260
|
+
def `alt_<?`: () -> bool
|
|
261
|
+
def `alt_=?`: () -> bool
|
|
262
|
+
def `alt_>?`: () -> bool
|
|
263
|
+
def `alt_??`: () -> bool
|
|
264
|
+
def `alt_@?`: () -> bool
|
|
265
|
+
def alt_A?: () -> bool
|
|
266
|
+
def alt_B?: () -> bool
|
|
267
|
+
def alt_C?: () -> bool
|
|
268
|
+
def alt_D?: () -> bool
|
|
269
|
+
def alt_E?: () -> bool
|
|
270
|
+
def alt_F?: () -> bool
|
|
271
|
+
def alt_G?: () -> bool
|
|
272
|
+
def alt_H?: () -> bool
|
|
273
|
+
def alt_I?: () -> bool
|
|
274
|
+
def alt_J?: () -> bool
|
|
275
|
+
def alt_K?: () -> bool
|
|
276
|
+
def alt_L?: () -> bool
|
|
277
|
+
def alt_M?: () -> bool
|
|
278
|
+
def alt_N?: () -> bool
|
|
279
|
+
def alt_O?: () -> bool
|
|
280
|
+
def alt_P?: () -> bool
|
|
281
|
+
def alt_Q?: () -> bool
|
|
282
|
+
def alt_R?: () -> bool
|
|
283
|
+
def alt_S?: () -> bool
|
|
284
|
+
def alt_T?: () -> bool
|
|
285
|
+
def alt_U?: () -> bool
|
|
286
|
+
def alt_V?: () -> bool
|
|
287
|
+
def alt_W?: () -> bool
|
|
288
|
+
def alt_X?: () -> bool
|
|
289
|
+
def alt_Y?: () -> bool
|
|
290
|
+
def alt_Z?: () -> bool
|
|
291
|
+
def `alt_[?`: () -> bool
|
|
292
|
+
def `alt_\?`: () -> bool
|
|
293
|
+
def `alt_]?`: () -> bool
|
|
294
|
+
def `alt_^?`: () -> bool
|
|
295
|
+
def alt__?: () -> bool
|
|
296
|
+
def alt_a?: () -> bool
|
|
297
|
+
def alt_b?: () -> bool
|
|
298
|
+
def alt_c?: () -> bool
|
|
299
|
+
def alt_d?: () -> bool
|
|
300
|
+
def alt_e?: () -> bool
|
|
301
|
+
def alt_f?: () -> bool
|
|
302
|
+
def alt_g?: () -> bool
|
|
303
|
+
def alt_h?: () -> bool
|
|
304
|
+
def alt_i?: () -> bool
|
|
305
|
+
def alt_j?: () -> bool
|
|
306
|
+
def alt_k?: () -> bool
|
|
307
|
+
def alt_l?: () -> bool
|
|
308
|
+
def alt_m?: () -> bool
|
|
309
|
+
def alt_n?: () -> bool
|
|
310
|
+
def alt_o?: () -> bool
|
|
311
|
+
def alt_p?: () -> bool
|
|
312
|
+
def alt_q?: () -> bool
|
|
313
|
+
def alt_r?: () -> bool
|
|
314
|
+
def alt_s?: () -> bool
|
|
315
|
+
def alt_t?: () -> bool
|
|
316
|
+
def alt_u?: () -> bool
|
|
317
|
+
def alt_v?: () -> bool
|
|
318
|
+
def alt_w?: () -> bool
|
|
319
|
+
def alt_x?: () -> bool
|
|
320
|
+
def alt_y?: () -> bool
|
|
321
|
+
def alt_z?: () -> bool
|
|
322
|
+
def `alt_{?`: () -> bool
|
|
323
|
+
def `alt_|?`: () -> bool
|
|
324
|
+
def `alt_}?`: () -> bool
|
|
325
|
+
def `alt_~?`: () -> bool
|
|
326
|
+
def alt_f1?: () -> bool
|
|
327
|
+
def alt_f2?: () -> bool
|
|
328
|
+
def alt_f3?: () -> bool
|
|
329
|
+
def alt_f4?: () -> bool
|
|
330
|
+
def alt_f5?: () -> bool
|
|
331
|
+
def alt_f6?: () -> bool
|
|
332
|
+
def alt_f7?: () -> bool
|
|
333
|
+
def alt_f8?: () -> bool
|
|
334
|
+
def alt_f9?: () -> bool
|
|
335
|
+
def alt_f10?: () -> bool
|
|
336
|
+
def alt_f11?: () -> bool
|
|
337
|
+
def alt_f12?: () -> bool
|
|
338
|
+
def alt_f13?: () -> bool
|
|
339
|
+
def alt_f14?: () -> bool
|
|
340
|
+
def alt_f15?: () -> bool
|
|
341
|
+
def alt_f16?: () -> bool
|
|
342
|
+
def alt_f17?: () -> bool
|
|
343
|
+
def alt_f18?: () -> bool
|
|
344
|
+
def alt_f19?: () -> bool
|
|
345
|
+
def alt_f20?: () -> bool
|
|
346
|
+
def alt_f21?: () -> bool
|
|
347
|
+
def alt_f22?: () -> bool
|
|
348
|
+
def alt_f23?: () -> bool
|
|
349
|
+
def alt_f24?: () -> bool
|
|
350
|
+
def ctrl_up?: () -> bool
|
|
351
|
+
def ctrl_down?: () -> bool
|
|
352
|
+
def ctrl_left?: () -> bool
|
|
353
|
+
def ctrl_right?: () -> bool
|
|
354
|
+
def ctrl_enter?: () -> bool
|
|
355
|
+
def ctrl_esc?: () -> bool
|
|
356
|
+
def ctrl_backspace?: () -> bool
|
|
357
|
+
def ctrl_tab?: () -> bool
|
|
358
|
+
def ctrl_back_tab?: () -> bool
|
|
359
|
+
def ctrl_null?: () -> bool
|
|
360
|
+
def ctrl_home?: () -> bool
|
|
361
|
+
def ctrl_end?: () -> bool
|
|
362
|
+
def ctrl_page_up?: () -> bool
|
|
363
|
+
def ctrl_page_down?: () -> bool
|
|
364
|
+
def ctrl_insert?: () -> bool
|
|
365
|
+
def ctrl_delete?: () -> bool
|
|
366
|
+
def ctrl_caps_lock?: () -> bool
|
|
367
|
+
def ctrl_scroll_lock?: () -> bool
|
|
368
|
+
def ctrl_num_lock?: () -> bool
|
|
369
|
+
def ctrl_print_screen?: () -> bool
|
|
370
|
+
def ctrl_pause?: () -> bool
|
|
371
|
+
def ctrl_menu?: () -> bool
|
|
372
|
+
def ctrl_keypad_begin?: () -> bool
|
|
373
|
+
def ctrl_media_play?: () -> bool
|
|
374
|
+
def ctrl_media_pause?: () -> bool
|
|
375
|
+
def ctrl_media_play_pause?: () -> bool
|
|
376
|
+
def ctrl_media_reverse?: () -> bool
|
|
377
|
+
def ctrl_media_stop?: () -> bool
|
|
378
|
+
def ctrl_media_fast_forward?: () -> bool
|
|
379
|
+
def ctrl_media_rewind?: () -> bool
|
|
380
|
+
def ctrl_media_track_next?: () -> bool
|
|
381
|
+
def ctrl_media_track_previous?: () -> bool
|
|
382
|
+
def ctrl_media_record?: () -> bool
|
|
383
|
+
def ctrl_media_lower_volume?: () -> bool
|
|
384
|
+
def ctrl_media_raise_volume?: () -> bool
|
|
385
|
+
def ctrl_media_mute_volume?: () -> bool
|
|
386
|
+
def ctrl_left_shift?: () -> bool
|
|
387
|
+
def ctrl_left_control?: () -> bool
|
|
388
|
+
def ctrl_left_alt?: () -> bool
|
|
389
|
+
def ctrl_left_super?: () -> bool
|
|
390
|
+
def ctrl_left_hyper?: () -> bool
|
|
391
|
+
def ctrl_left_meta?: () -> bool
|
|
392
|
+
def ctrl_right_shift?: () -> bool
|
|
393
|
+
def ctrl_right_control?: () -> bool
|
|
394
|
+
def ctrl_right_alt?: () -> bool
|
|
395
|
+
def ctrl_right_super?: () -> bool
|
|
396
|
+
def ctrl_right_hyper?: () -> bool
|
|
397
|
+
def ctrl_right_meta?: () -> bool
|
|
398
|
+
def ctrl_iso_level3_shift?: () -> bool
|
|
399
|
+
def ctrl_iso_level5_shift?: () -> bool
|
|
400
|
+
def `ctrl_!?`: () -> bool
|
|
401
|
+
def `ctrl_"?`: () -> bool
|
|
402
|
+
def `ctrl_#?`: () -> bool
|
|
403
|
+
def `ctrl_$?`: () -> bool
|
|
404
|
+
def `ctrl_%?`: () -> bool
|
|
405
|
+
def `ctrl_&?`: () -> bool
|
|
406
|
+
def `ctrl_'?`: () -> bool
|
|
407
|
+
def `ctrl_(?`: () -> bool
|
|
408
|
+
def `ctrl_)?`: () -> bool
|
|
409
|
+
def `ctrl_*?`: () -> bool
|
|
410
|
+
def `ctrl_+?`: () -> bool
|
|
411
|
+
def `ctrl_,?`: () -> bool
|
|
412
|
+
def `ctrl_-?`: () -> bool
|
|
413
|
+
def `ctrl_.?`: () -> bool
|
|
414
|
+
def `ctrl_/?`: () -> bool
|
|
415
|
+
def ctrl_0?: () -> bool
|
|
416
|
+
def ctrl_1?: () -> bool
|
|
417
|
+
def ctrl_2?: () -> bool
|
|
418
|
+
def ctrl_3?: () -> bool
|
|
419
|
+
def ctrl_4?: () -> bool
|
|
420
|
+
def ctrl_5?: () -> bool
|
|
421
|
+
def ctrl_6?: () -> bool
|
|
422
|
+
def ctrl_7?: () -> bool
|
|
423
|
+
def ctrl_8?: () -> bool
|
|
424
|
+
def ctrl_9?: () -> bool
|
|
425
|
+
def `ctrl_;?`: () -> bool
|
|
426
|
+
def `ctrl_<?`: () -> bool
|
|
427
|
+
def `ctrl_=?`: () -> bool
|
|
428
|
+
def `ctrl_>?`: () -> bool
|
|
429
|
+
def `ctrl_??`: () -> bool
|
|
430
|
+
def `ctrl_@?`: () -> bool
|
|
431
|
+
def ctrl_A?: () -> bool
|
|
432
|
+
def ctrl_B?: () -> bool
|
|
433
|
+
def ctrl_C?: () -> bool
|
|
434
|
+
def ctrl_D?: () -> bool
|
|
435
|
+
def ctrl_E?: () -> bool
|
|
436
|
+
def ctrl_F?: () -> bool
|
|
437
|
+
def ctrl_G?: () -> bool
|
|
438
|
+
def ctrl_H?: () -> bool
|
|
439
|
+
def ctrl_I?: () -> bool
|
|
440
|
+
def ctrl_J?: () -> bool
|
|
441
|
+
def ctrl_K?: () -> bool
|
|
442
|
+
def ctrl_L?: () -> bool
|
|
443
|
+
def ctrl_M?: () -> bool
|
|
444
|
+
def ctrl_N?: () -> bool
|
|
445
|
+
def ctrl_O?: () -> bool
|
|
446
|
+
def ctrl_P?: () -> bool
|
|
447
|
+
def ctrl_Q?: () -> bool
|
|
448
|
+
def ctrl_R?: () -> bool
|
|
449
|
+
def ctrl_S?: () -> bool
|
|
450
|
+
def ctrl_T?: () -> bool
|
|
451
|
+
def ctrl_U?: () -> bool
|
|
452
|
+
def ctrl_V?: () -> bool
|
|
453
|
+
def ctrl_W?: () -> bool
|
|
454
|
+
def ctrl_X?: () -> bool
|
|
455
|
+
def ctrl_Y?: () -> bool
|
|
456
|
+
def ctrl_Z?: () -> bool
|
|
457
|
+
def `ctrl_[?`: () -> bool
|
|
458
|
+
def `ctrl_\?`: () -> bool
|
|
459
|
+
def `ctrl_]?`: () -> bool
|
|
460
|
+
def `ctrl_^?`: () -> bool
|
|
461
|
+
def ctrl__?: () -> bool
|
|
462
|
+
def ctrl_a?: () -> bool
|
|
463
|
+
def ctrl_b?: () -> bool
|
|
464
|
+
def ctrl_c?: () -> bool
|
|
465
|
+
def ctrl_d?: () -> bool
|
|
466
|
+
def ctrl_e?: () -> bool
|
|
467
|
+
def ctrl_f?: () -> bool
|
|
468
|
+
def ctrl_g?: () -> bool
|
|
469
|
+
def ctrl_h?: () -> bool
|
|
470
|
+
def ctrl_i?: () -> bool
|
|
471
|
+
def ctrl_j?: () -> bool
|
|
472
|
+
def ctrl_k?: () -> bool
|
|
473
|
+
def ctrl_l?: () -> bool
|
|
474
|
+
def ctrl_m?: () -> bool
|
|
475
|
+
def ctrl_n?: () -> bool
|
|
476
|
+
def ctrl_o?: () -> bool
|
|
477
|
+
def ctrl_p?: () -> bool
|
|
478
|
+
def ctrl_q?: () -> bool
|
|
479
|
+
def ctrl_r?: () -> bool
|
|
480
|
+
def ctrl_s?: () -> bool
|
|
481
|
+
def ctrl_t?: () -> bool
|
|
482
|
+
def ctrl_u?: () -> bool
|
|
483
|
+
def ctrl_v?: () -> bool
|
|
484
|
+
def ctrl_w?: () -> bool
|
|
485
|
+
def ctrl_x?: () -> bool
|
|
486
|
+
def ctrl_y?: () -> bool
|
|
487
|
+
def ctrl_z?: () -> bool
|
|
488
|
+
def `ctrl_{?`: () -> bool
|
|
489
|
+
def `ctrl_|?`: () -> bool
|
|
490
|
+
def `ctrl_}?`: () -> bool
|
|
491
|
+
def `ctrl_~?`: () -> bool
|
|
492
|
+
def ctrl_f1?: () -> bool
|
|
493
|
+
def ctrl_f2?: () -> bool
|
|
494
|
+
def ctrl_f3?: () -> bool
|
|
495
|
+
def ctrl_f4?: () -> bool
|
|
496
|
+
def ctrl_f5?: () -> bool
|
|
497
|
+
def ctrl_f6?: () -> bool
|
|
498
|
+
def ctrl_f7?: () -> bool
|
|
499
|
+
def ctrl_f8?: () -> bool
|
|
500
|
+
def ctrl_f9?: () -> bool
|
|
501
|
+
def ctrl_f10?: () -> bool
|
|
502
|
+
def ctrl_f11?: () -> bool
|
|
503
|
+
def ctrl_f12?: () -> bool
|
|
504
|
+
def ctrl_f13?: () -> bool
|
|
505
|
+
def ctrl_f14?: () -> bool
|
|
506
|
+
def ctrl_f15?: () -> bool
|
|
507
|
+
def ctrl_f16?: () -> bool
|
|
508
|
+
def ctrl_f17?: () -> bool
|
|
509
|
+
def ctrl_f18?: () -> bool
|
|
510
|
+
def ctrl_f19?: () -> bool
|
|
511
|
+
def ctrl_f20?: () -> bool
|
|
512
|
+
def ctrl_f21?: () -> bool
|
|
513
|
+
def ctrl_f22?: () -> bool
|
|
514
|
+
def ctrl_f23?: () -> bool
|
|
515
|
+
def ctrl_f24?: () -> bool
|
|
516
|
+
def shift_up?: () -> bool
|
|
517
|
+
def shift_down?: () -> bool
|
|
518
|
+
def shift_left?: () -> bool
|
|
519
|
+
def shift_right?: () -> bool
|
|
520
|
+
def shift_enter?: () -> bool
|
|
521
|
+
def shift_esc?: () -> bool
|
|
522
|
+
def shift_backspace?: () -> bool
|
|
523
|
+
def shift_tab?: () -> bool
|
|
524
|
+
def shift_back_tab?: () -> bool
|
|
525
|
+
def shift_null?: () -> bool
|
|
526
|
+
def shift_home?: () -> bool
|
|
527
|
+
def shift_end?: () -> bool
|
|
528
|
+
def shift_page_up?: () -> bool
|
|
529
|
+
def shift_page_down?: () -> bool
|
|
530
|
+
def shift_insert?: () -> bool
|
|
531
|
+
def shift_delete?: () -> bool
|
|
532
|
+
def shift_caps_lock?: () -> bool
|
|
533
|
+
def shift_scroll_lock?: () -> bool
|
|
534
|
+
def shift_num_lock?: () -> bool
|
|
535
|
+
def shift_print_screen?: () -> bool
|
|
536
|
+
def shift_pause?: () -> bool
|
|
537
|
+
def shift_menu?: () -> bool
|
|
538
|
+
def shift_keypad_begin?: () -> bool
|
|
539
|
+
def shift_media_play?: () -> bool
|
|
540
|
+
def shift_media_pause?: () -> bool
|
|
541
|
+
def shift_media_play_pause?: () -> bool
|
|
542
|
+
def shift_media_reverse?: () -> bool
|
|
543
|
+
def shift_media_stop?: () -> bool
|
|
544
|
+
def shift_media_fast_forward?: () -> bool
|
|
545
|
+
def shift_media_rewind?: () -> bool
|
|
546
|
+
def shift_media_track_next?: () -> bool
|
|
547
|
+
def shift_media_track_previous?: () -> bool
|
|
548
|
+
def shift_media_record?: () -> bool
|
|
549
|
+
def shift_media_lower_volume?: () -> bool
|
|
550
|
+
def shift_media_raise_volume?: () -> bool
|
|
551
|
+
def shift_media_mute_volume?: () -> bool
|
|
552
|
+
def shift_left_shift?: () -> bool
|
|
553
|
+
def shift_left_control?: () -> bool
|
|
554
|
+
def shift_left_alt?: () -> bool
|
|
555
|
+
def shift_left_super?: () -> bool
|
|
556
|
+
def shift_left_hyper?: () -> bool
|
|
557
|
+
def shift_left_meta?: () -> bool
|
|
558
|
+
def shift_right_shift?: () -> bool
|
|
559
|
+
def shift_right_control?: () -> bool
|
|
560
|
+
def shift_right_alt?: () -> bool
|
|
561
|
+
def shift_right_super?: () -> bool
|
|
562
|
+
def shift_right_hyper?: () -> bool
|
|
563
|
+
def shift_right_meta?: () -> bool
|
|
564
|
+
def shift_iso_level3_shift?: () -> bool
|
|
565
|
+
def shift_iso_level5_shift?: () -> bool
|
|
566
|
+
def `shift_!?`: () -> bool
|
|
567
|
+
def `shift_"?`: () -> bool
|
|
568
|
+
def `shift_#?`: () -> bool
|
|
569
|
+
def `shift_$?`: () -> bool
|
|
570
|
+
def `shift_%?`: () -> bool
|
|
571
|
+
def `shift_&?`: () -> bool
|
|
572
|
+
def `shift_'?`: () -> bool
|
|
573
|
+
def `shift_(?`: () -> bool
|
|
574
|
+
def `shift_)?`: () -> bool
|
|
575
|
+
def `shift_*?`: () -> bool
|
|
576
|
+
def `shift_+?`: () -> bool
|
|
577
|
+
def `shift_,?`: () -> bool
|
|
578
|
+
def `shift_-?`: () -> bool
|
|
579
|
+
def `shift_.?`: () -> bool
|
|
580
|
+
def `shift_/?`: () -> bool
|
|
581
|
+
def shift_0?: () -> bool
|
|
582
|
+
def shift_1?: () -> bool
|
|
583
|
+
def shift_2?: () -> bool
|
|
584
|
+
def shift_3?: () -> bool
|
|
585
|
+
def shift_4?: () -> bool
|
|
586
|
+
def shift_5?: () -> bool
|
|
587
|
+
def shift_6?: () -> bool
|
|
588
|
+
def shift_7?: () -> bool
|
|
589
|
+
def shift_8?: () -> bool
|
|
590
|
+
def shift_9?: () -> bool
|
|
591
|
+
def `shift_;?`: () -> bool
|
|
592
|
+
def `shift_<?`: () -> bool
|
|
593
|
+
def `shift_=?`: () -> bool
|
|
594
|
+
def `shift_>?`: () -> bool
|
|
595
|
+
def `shift_??`: () -> bool
|
|
596
|
+
def `shift_@?`: () -> bool
|
|
597
|
+
def shift_A?: () -> bool
|
|
598
|
+
def shift_B?: () -> bool
|
|
599
|
+
def shift_C?: () -> bool
|
|
600
|
+
def shift_D?: () -> bool
|
|
601
|
+
def shift_E?: () -> bool
|
|
602
|
+
def shift_F?: () -> bool
|
|
603
|
+
def shift_G?: () -> bool
|
|
604
|
+
def shift_H?: () -> bool
|
|
605
|
+
def shift_I?: () -> bool
|
|
606
|
+
def shift_J?: () -> bool
|
|
607
|
+
def shift_K?: () -> bool
|
|
608
|
+
def shift_L?: () -> bool
|
|
609
|
+
def shift_M?: () -> bool
|
|
610
|
+
def shift_N?: () -> bool
|
|
611
|
+
def shift_O?: () -> bool
|
|
612
|
+
def shift_P?: () -> bool
|
|
613
|
+
def shift_Q?: () -> bool
|
|
614
|
+
def shift_R?: () -> bool
|
|
615
|
+
def shift_S?: () -> bool
|
|
616
|
+
def shift_T?: () -> bool
|
|
617
|
+
def shift_U?: () -> bool
|
|
618
|
+
def shift_V?: () -> bool
|
|
619
|
+
def shift_W?: () -> bool
|
|
620
|
+
def shift_X?: () -> bool
|
|
621
|
+
def shift_Y?: () -> bool
|
|
622
|
+
def shift_Z?: () -> bool
|
|
623
|
+
def `shift_[?`: () -> bool
|
|
624
|
+
def `shift_\?`: () -> bool
|
|
625
|
+
def `shift_]?`: () -> bool
|
|
626
|
+
def `shift_^?`: () -> bool
|
|
627
|
+
def shift__?: () -> bool
|
|
628
|
+
def shift_a?: () -> bool
|
|
629
|
+
def shift_b?: () -> bool
|
|
630
|
+
def shift_c?: () -> bool
|
|
631
|
+
def shift_d?: () -> bool
|
|
632
|
+
def shift_e?: () -> bool
|
|
633
|
+
def shift_f?: () -> bool
|
|
634
|
+
def shift_g?: () -> bool
|
|
635
|
+
def shift_h?: () -> bool
|
|
636
|
+
def shift_i?: () -> bool
|
|
637
|
+
def shift_j?: () -> bool
|
|
638
|
+
def shift_k?: () -> bool
|
|
639
|
+
def shift_l?: () -> bool
|
|
640
|
+
def shift_m?: () -> bool
|
|
641
|
+
def shift_n?: () -> bool
|
|
642
|
+
def shift_o?: () -> bool
|
|
643
|
+
def shift_p?: () -> bool
|
|
644
|
+
def shift_q?: () -> bool
|
|
645
|
+
def shift_r?: () -> bool
|
|
646
|
+
def shift_s?: () -> bool
|
|
647
|
+
def shift_t?: () -> bool
|
|
648
|
+
def shift_u?: () -> bool
|
|
649
|
+
def shift_v?: () -> bool
|
|
650
|
+
def shift_w?: () -> bool
|
|
651
|
+
def shift_x?: () -> bool
|
|
652
|
+
def shift_y?: () -> bool
|
|
653
|
+
def shift_z?: () -> bool
|
|
654
|
+
def `shift_{?`: () -> bool
|
|
655
|
+
def `shift_|?`: () -> bool
|
|
656
|
+
def `shift_}?`: () -> bool
|
|
657
|
+
def `shift_~?`: () -> bool
|
|
658
|
+
def shift_f1?: () -> bool
|
|
659
|
+
def shift_f2?: () -> bool
|
|
660
|
+
def shift_f3?: () -> bool
|
|
661
|
+
def shift_f4?: () -> bool
|
|
662
|
+
def shift_f5?: () -> bool
|
|
663
|
+
def shift_f6?: () -> bool
|
|
664
|
+
def shift_f7?: () -> bool
|
|
665
|
+
def shift_f8?: () -> bool
|
|
666
|
+
def shift_f9?: () -> bool
|
|
667
|
+
def shift_f10?: () -> bool
|
|
668
|
+
def shift_f11?: () -> bool
|
|
669
|
+
def shift_f12?: () -> bool
|
|
670
|
+
def shift_f13?: () -> bool
|
|
671
|
+
def shift_f14?: () -> bool
|
|
672
|
+
def shift_f15?: () -> bool
|
|
673
|
+
def shift_f16?: () -> bool
|
|
674
|
+
def shift_f17?: () -> bool
|
|
675
|
+
def shift_f18?: () -> bool
|
|
676
|
+
def shift_f19?: () -> bool
|
|
677
|
+
def shift_f20?: () -> bool
|
|
678
|
+
def shift_f21?: () -> bool
|
|
679
|
+
def shift_f22?: () -> bool
|
|
680
|
+
def shift_f23?: () -> bool
|
|
681
|
+
def shift_f24?: () -> bool
|
|
682
|
+
def alt_ctrl_up?: () -> bool
|
|
683
|
+
def alt_ctrl_down?: () -> bool
|
|
684
|
+
def alt_ctrl_left?: () -> bool
|
|
685
|
+
def alt_ctrl_right?: () -> bool
|
|
686
|
+
def alt_ctrl_enter?: () -> bool
|
|
687
|
+
def alt_ctrl_esc?: () -> bool
|
|
688
|
+
def alt_ctrl_backspace?: () -> bool
|
|
689
|
+
def alt_ctrl_tab?: () -> bool
|
|
690
|
+
def alt_ctrl_back_tab?: () -> bool
|
|
691
|
+
def alt_ctrl_null?: () -> bool
|
|
692
|
+
def alt_ctrl_home?: () -> bool
|
|
693
|
+
def alt_ctrl_end?: () -> bool
|
|
694
|
+
def alt_ctrl_page_up?: () -> bool
|
|
695
|
+
def alt_ctrl_page_down?: () -> bool
|
|
696
|
+
def alt_ctrl_insert?: () -> bool
|
|
697
|
+
def alt_ctrl_delete?: () -> bool
|
|
698
|
+
def alt_ctrl_caps_lock?: () -> bool
|
|
699
|
+
def alt_ctrl_scroll_lock?: () -> bool
|
|
700
|
+
def alt_ctrl_num_lock?: () -> bool
|
|
701
|
+
def alt_ctrl_print_screen?: () -> bool
|
|
702
|
+
def alt_ctrl_pause?: () -> bool
|
|
703
|
+
def alt_ctrl_menu?: () -> bool
|
|
704
|
+
def alt_ctrl_keypad_begin?: () -> bool
|
|
705
|
+
def alt_ctrl_media_play?: () -> bool
|
|
706
|
+
def alt_ctrl_media_pause?: () -> bool
|
|
707
|
+
def alt_ctrl_media_play_pause?: () -> bool
|
|
708
|
+
def alt_ctrl_media_reverse?: () -> bool
|
|
709
|
+
def alt_ctrl_media_stop?: () -> bool
|
|
710
|
+
def alt_ctrl_media_fast_forward?: () -> bool
|
|
711
|
+
def alt_ctrl_media_rewind?: () -> bool
|
|
712
|
+
def alt_ctrl_media_track_next?: () -> bool
|
|
713
|
+
def alt_ctrl_media_track_previous?: () -> bool
|
|
714
|
+
def alt_ctrl_media_record?: () -> bool
|
|
715
|
+
def alt_ctrl_media_lower_volume?: () -> bool
|
|
716
|
+
def alt_ctrl_media_raise_volume?: () -> bool
|
|
717
|
+
def alt_ctrl_media_mute_volume?: () -> bool
|
|
718
|
+
def alt_ctrl_left_shift?: () -> bool
|
|
719
|
+
def alt_ctrl_left_control?: () -> bool
|
|
720
|
+
def alt_ctrl_left_alt?: () -> bool
|
|
721
|
+
def alt_ctrl_left_super?: () -> bool
|
|
722
|
+
def alt_ctrl_left_hyper?: () -> bool
|
|
723
|
+
def alt_ctrl_left_meta?: () -> bool
|
|
724
|
+
def alt_ctrl_right_shift?: () -> bool
|
|
725
|
+
def alt_ctrl_right_control?: () -> bool
|
|
726
|
+
def alt_ctrl_right_alt?: () -> bool
|
|
727
|
+
def alt_ctrl_right_super?: () -> bool
|
|
728
|
+
def alt_ctrl_right_hyper?: () -> bool
|
|
729
|
+
def alt_ctrl_right_meta?: () -> bool
|
|
730
|
+
def alt_ctrl_iso_level3_shift?: () -> bool
|
|
731
|
+
def alt_ctrl_iso_level5_shift?: () -> bool
|
|
732
|
+
def `alt_ctrl_!?`: () -> bool
|
|
733
|
+
def `alt_ctrl_"?`: () -> bool
|
|
734
|
+
def `alt_ctrl_#?`: () -> bool
|
|
735
|
+
def `alt_ctrl_$?`: () -> bool
|
|
736
|
+
def `alt_ctrl_%?`: () -> bool
|
|
737
|
+
def `alt_ctrl_&?`: () -> bool
|
|
738
|
+
def `alt_ctrl_'?`: () -> bool
|
|
739
|
+
def `alt_ctrl_(?`: () -> bool
|
|
740
|
+
def `alt_ctrl_)?`: () -> bool
|
|
741
|
+
def `alt_ctrl_*?`: () -> bool
|
|
742
|
+
def `alt_ctrl_+?`: () -> bool
|
|
743
|
+
def `alt_ctrl_,?`: () -> bool
|
|
744
|
+
def `alt_ctrl_-?`: () -> bool
|
|
745
|
+
def `alt_ctrl_.?`: () -> bool
|
|
746
|
+
def `alt_ctrl_/?`: () -> bool
|
|
747
|
+
def alt_ctrl_0?: () -> bool
|
|
748
|
+
def alt_ctrl_1?: () -> bool
|
|
749
|
+
def alt_ctrl_2?: () -> bool
|
|
750
|
+
def alt_ctrl_3?: () -> bool
|
|
751
|
+
def alt_ctrl_4?: () -> bool
|
|
752
|
+
def alt_ctrl_5?: () -> bool
|
|
753
|
+
def alt_ctrl_6?: () -> bool
|
|
754
|
+
def alt_ctrl_7?: () -> bool
|
|
755
|
+
def alt_ctrl_8?: () -> bool
|
|
756
|
+
def alt_ctrl_9?: () -> bool
|
|
757
|
+
def `alt_ctrl_;?`: () -> bool
|
|
758
|
+
def `alt_ctrl_<?`: () -> bool
|
|
759
|
+
def `alt_ctrl_=?`: () -> bool
|
|
760
|
+
def `alt_ctrl_>?`: () -> bool
|
|
761
|
+
def `alt_ctrl_??`: () -> bool
|
|
762
|
+
def `alt_ctrl_@?`: () -> bool
|
|
763
|
+
def alt_ctrl_A?: () -> bool
|
|
764
|
+
def alt_ctrl_B?: () -> bool
|
|
765
|
+
def alt_ctrl_C?: () -> bool
|
|
766
|
+
def alt_ctrl_D?: () -> bool
|
|
767
|
+
def alt_ctrl_E?: () -> bool
|
|
768
|
+
def alt_ctrl_F?: () -> bool
|
|
769
|
+
def alt_ctrl_G?: () -> bool
|
|
770
|
+
def alt_ctrl_H?: () -> bool
|
|
771
|
+
def alt_ctrl_I?: () -> bool
|
|
772
|
+
def alt_ctrl_J?: () -> bool
|
|
773
|
+
def alt_ctrl_K?: () -> bool
|
|
774
|
+
def alt_ctrl_L?: () -> bool
|
|
775
|
+
def alt_ctrl_M?: () -> bool
|
|
776
|
+
def alt_ctrl_N?: () -> bool
|
|
777
|
+
def alt_ctrl_O?: () -> bool
|
|
778
|
+
def alt_ctrl_P?: () -> bool
|
|
779
|
+
def alt_ctrl_Q?: () -> bool
|
|
780
|
+
def alt_ctrl_R?: () -> bool
|
|
781
|
+
def alt_ctrl_S?: () -> bool
|
|
782
|
+
def alt_ctrl_T?: () -> bool
|
|
783
|
+
def alt_ctrl_U?: () -> bool
|
|
784
|
+
def alt_ctrl_V?: () -> bool
|
|
785
|
+
def alt_ctrl_W?: () -> bool
|
|
786
|
+
def alt_ctrl_X?: () -> bool
|
|
787
|
+
def alt_ctrl_Y?: () -> bool
|
|
788
|
+
def alt_ctrl_Z?: () -> bool
|
|
789
|
+
def `alt_ctrl_[?`: () -> bool
|
|
790
|
+
def `alt_ctrl_\?`: () -> bool
|
|
791
|
+
def `alt_ctrl_]?`: () -> bool
|
|
792
|
+
def `alt_ctrl_^?`: () -> bool
|
|
793
|
+
def alt_ctrl__?: () -> bool
|
|
794
|
+
def alt_ctrl_a?: () -> bool
|
|
795
|
+
def alt_ctrl_b?: () -> bool
|
|
796
|
+
def alt_ctrl_c?: () -> bool
|
|
797
|
+
def alt_ctrl_d?: () -> bool
|
|
798
|
+
def alt_ctrl_e?: () -> bool
|
|
799
|
+
def alt_ctrl_f?: () -> bool
|
|
800
|
+
def alt_ctrl_g?: () -> bool
|
|
801
|
+
def alt_ctrl_h?: () -> bool
|
|
802
|
+
def alt_ctrl_i?: () -> bool
|
|
803
|
+
def alt_ctrl_j?: () -> bool
|
|
804
|
+
def alt_ctrl_k?: () -> bool
|
|
805
|
+
def alt_ctrl_l?: () -> bool
|
|
806
|
+
def alt_ctrl_m?: () -> bool
|
|
807
|
+
def alt_ctrl_n?: () -> bool
|
|
808
|
+
def alt_ctrl_o?: () -> bool
|
|
809
|
+
def alt_ctrl_p?: () -> bool
|
|
810
|
+
def alt_ctrl_q?: () -> bool
|
|
811
|
+
def alt_ctrl_r?: () -> bool
|
|
812
|
+
def alt_ctrl_s?: () -> bool
|
|
813
|
+
def alt_ctrl_t?: () -> bool
|
|
814
|
+
def alt_ctrl_u?: () -> bool
|
|
815
|
+
def alt_ctrl_v?: () -> bool
|
|
816
|
+
def alt_ctrl_w?: () -> bool
|
|
817
|
+
def alt_ctrl_x?: () -> bool
|
|
818
|
+
def alt_ctrl_y?: () -> bool
|
|
819
|
+
def alt_ctrl_z?: () -> bool
|
|
820
|
+
def `alt_ctrl_{?`: () -> bool
|
|
821
|
+
def `alt_ctrl_|?`: () -> bool
|
|
822
|
+
def `alt_ctrl_}?`: () -> bool
|
|
823
|
+
def `alt_ctrl_~?`: () -> bool
|
|
824
|
+
def alt_ctrl_f1?: () -> bool
|
|
825
|
+
def alt_ctrl_f2?: () -> bool
|
|
826
|
+
def alt_ctrl_f3?: () -> bool
|
|
827
|
+
def alt_ctrl_f4?: () -> bool
|
|
828
|
+
def alt_ctrl_f5?: () -> bool
|
|
829
|
+
def alt_ctrl_f6?: () -> bool
|
|
830
|
+
def alt_ctrl_f7?: () -> bool
|
|
831
|
+
def alt_ctrl_f8?: () -> bool
|
|
832
|
+
def alt_ctrl_f9?: () -> bool
|
|
833
|
+
def alt_ctrl_f10?: () -> bool
|
|
834
|
+
def alt_ctrl_f11?: () -> bool
|
|
835
|
+
def alt_ctrl_f12?: () -> bool
|
|
836
|
+
def alt_ctrl_f13?: () -> bool
|
|
837
|
+
def alt_ctrl_f14?: () -> bool
|
|
838
|
+
def alt_ctrl_f15?: () -> bool
|
|
839
|
+
def alt_ctrl_f16?: () -> bool
|
|
840
|
+
def alt_ctrl_f17?: () -> bool
|
|
841
|
+
def alt_ctrl_f18?: () -> bool
|
|
842
|
+
def alt_ctrl_f19?: () -> bool
|
|
843
|
+
def alt_ctrl_f20?: () -> bool
|
|
844
|
+
def alt_ctrl_f21?: () -> bool
|
|
845
|
+
def alt_ctrl_f22?: () -> bool
|
|
846
|
+
def alt_ctrl_f23?: () -> bool
|
|
847
|
+
def alt_ctrl_f24?: () -> bool
|
|
848
|
+
def alt_shift_up?: () -> bool
|
|
849
|
+
def alt_shift_down?: () -> bool
|
|
850
|
+
def alt_shift_left?: () -> bool
|
|
851
|
+
def alt_shift_right?: () -> bool
|
|
852
|
+
def alt_shift_enter?: () -> bool
|
|
853
|
+
def alt_shift_esc?: () -> bool
|
|
854
|
+
def alt_shift_backspace?: () -> bool
|
|
855
|
+
def alt_shift_tab?: () -> bool
|
|
856
|
+
def alt_shift_back_tab?: () -> bool
|
|
857
|
+
def alt_shift_null?: () -> bool
|
|
858
|
+
def alt_shift_home?: () -> bool
|
|
859
|
+
def alt_shift_end?: () -> bool
|
|
860
|
+
def alt_shift_page_up?: () -> bool
|
|
861
|
+
def alt_shift_page_down?: () -> bool
|
|
862
|
+
def alt_shift_insert?: () -> bool
|
|
863
|
+
def alt_shift_delete?: () -> bool
|
|
864
|
+
def alt_shift_caps_lock?: () -> bool
|
|
865
|
+
def alt_shift_scroll_lock?: () -> bool
|
|
866
|
+
def alt_shift_num_lock?: () -> bool
|
|
867
|
+
def alt_shift_print_screen?: () -> bool
|
|
868
|
+
def alt_shift_pause?: () -> bool
|
|
869
|
+
def alt_shift_menu?: () -> bool
|
|
870
|
+
def alt_shift_keypad_begin?: () -> bool
|
|
871
|
+
def alt_shift_media_play?: () -> bool
|
|
872
|
+
def alt_shift_media_pause?: () -> bool
|
|
873
|
+
def alt_shift_media_play_pause?: () -> bool
|
|
874
|
+
def alt_shift_media_reverse?: () -> bool
|
|
875
|
+
def alt_shift_media_stop?: () -> bool
|
|
876
|
+
def alt_shift_media_fast_forward?: () -> bool
|
|
877
|
+
def alt_shift_media_rewind?: () -> bool
|
|
878
|
+
def alt_shift_media_track_next?: () -> bool
|
|
879
|
+
def alt_shift_media_track_previous?: () -> bool
|
|
880
|
+
def alt_shift_media_record?: () -> bool
|
|
881
|
+
def alt_shift_media_lower_volume?: () -> bool
|
|
882
|
+
def alt_shift_media_raise_volume?: () -> bool
|
|
883
|
+
def alt_shift_media_mute_volume?: () -> bool
|
|
884
|
+
def alt_shift_left_shift?: () -> bool
|
|
885
|
+
def alt_shift_left_control?: () -> bool
|
|
886
|
+
def alt_shift_left_alt?: () -> bool
|
|
887
|
+
def alt_shift_left_super?: () -> bool
|
|
888
|
+
def alt_shift_left_hyper?: () -> bool
|
|
889
|
+
def alt_shift_left_meta?: () -> bool
|
|
890
|
+
def alt_shift_right_shift?: () -> bool
|
|
891
|
+
def alt_shift_right_control?: () -> bool
|
|
892
|
+
def alt_shift_right_alt?: () -> bool
|
|
893
|
+
def alt_shift_right_super?: () -> bool
|
|
894
|
+
def alt_shift_right_hyper?: () -> bool
|
|
895
|
+
def alt_shift_right_meta?: () -> bool
|
|
896
|
+
def alt_shift_iso_level3_shift?: () -> bool
|
|
897
|
+
def alt_shift_iso_level5_shift?: () -> bool
|
|
898
|
+
def `alt_shift_!?`: () -> bool
|
|
899
|
+
def `alt_shift_"?`: () -> bool
|
|
900
|
+
def `alt_shift_#?`: () -> bool
|
|
901
|
+
def `alt_shift_$?`: () -> bool
|
|
902
|
+
def `alt_shift_%?`: () -> bool
|
|
903
|
+
def `alt_shift_&?`: () -> bool
|
|
904
|
+
def `alt_shift_'?`: () -> bool
|
|
905
|
+
def `alt_shift_(?`: () -> bool
|
|
906
|
+
def `alt_shift_)?`: () -> bool
|
|
907
|
+
def `alt_shift_*?`: () -> bool
|
|
908
|
+
def `alt_shift_+?`: () -> bool
|
|
909
|
+
def `alt_shift_,?`: () -> bool
|
|
910
|
+
def `alt_shift_-?`: () -> bool
|
|
911
|
+
def `alt_shift_.?`: () -> bool
|
|
912
|
+
def `alt_shift_/?`: () -> bool
|
|
913
|
+
def alt_shift_0?: () -> bool
|
|
914
|
+
def alt_shift_1?: () -> bool
|
|
915
|
+
def alt_shift_2?: () -> bool
|
|
916
|
+
def alt_shift_3?: () -> bool
|
|
917
|
+
def alt_shift_4?: () -> bool
|
|
918
|
+
def alt_shift_5?: () -> bool
|
|
919
|
+
def alt_shift_6?: () -> bool
|
|
920
|
+
def alt_shift_7?: () -> bool
|
|
921
|
+
def alt_shift_8?: () -> bool
|
|
922
|
+
def alt_shift_9?: () -> bool
|
|
923
|
+
def `alt_shift_;?`: () -> bool
|
|
924
|
+
def `alt_shift_<?`: () -> bool
|
|
925
|
+
def `alt_shift_=?`: () -> bool
|
|
926
|
+
def `alt_shift_>?`: () -> bool
|
|
927
|
+
def `alt_shift_??`: () -> bool
|
|
928
|
+
def `alt_shift_@?`: () -> bool
|
|
929
|
+
def alt_shift_A?: () -> bool
|
|
930
|
+
def alt_shift_B?: () -> bool
|
|
931
|
+
def alt_shift_C?: () -> bool
|
|
932
|
+
def alt_shift_D?: () -> bool
|
|
933
|
+
def alt_shift_E?: () -> bool
|
|
934
|
+
def alt_shift_F?: () -> bool
|
|
935
|
+
def alt_shift_G?: () -> bool
|
|
936
|
+
def alt_shift_H?: () -> bool
|
|
937
|
+
def alt_shift_I?: () -> bool
|
|
938
|
+
def alt_shift_J?: () -> bool
|
|
939
|
+
def alt_shift_K?: () -> bool
|
|
940
|
+
def alt_shift_L?: () -> bool
|
|
941
|
+
def alt_shift_M?: () -> bool
|
|
942
|
+
def alt_shift_N?: () -> bool
|
|
943
|
+
def alt_shift_O?: () -> bool
|
|
944
|
+
def alt_shift_P?: () -> bool
|
|
945
|
+
def alt_shift_Q?: () -> bool
|
|
946
|
+
def alt_shift_R?: () -> bool
|
|
947
|
+
def alt_shift_S?: () -> bool
|
|
948
|
+
def alt_shift_T?: () -> bool
|
|
949
|
+
def alt_shift_U?: () -> bool
|
|
950
|
+
def alt_shift_V?: () -> bool
|
|
951
|
+
def alt_shift_W?: () -> bool
|
|
952
|
+
def alt_shift_X?: () -> bool
|
|
953
|
+
def alt_shift_Y?: () -> bool
|
|
954
|
+
def alt_shift_Z?: () -> bool
|
|
955
|
+
def `alt_shift_[?`: () -> bool
|
|
956
|
+
def `alt_shift_\?`: () -> bool
|
|
957
|
+
def `alt_shift_]?`: () -> bool
|
|
958
|
+
def `alt_shift_^?`: () -> bool
|
|
959
|
+
def alt_shift__?: () -> bool
|
|
960
|
+
def alt_shift_a?: () -> bool
|
|
961
|
+
def alt_shift_b?: () -> bool
|
|
962
|
+
def alt_shift_c?: () -> bool
|
|
963
|
+
def alt_shift_d?: () -> bool
|
|
964
|
+
def alt_shift_e?: () -> bool
|
|
965
|
+
def alt_shift_f?: () -> bool
|
|
966
|
+
def alt_shift_g?: () -> bool
|
|
967
|
+
def alt_shift_h?: () -> bool
|
|
968
|
+
def alt_shift_i?: () -> bool
|
|
969
|
+
def alt_shift_j?: () -> bool
|
|
970
|
+
def alt_shift_k?: () -> bool
|
|
971
|
+
def alt_shift_l?: () -> bool
|
|
972
|
+
def alt_shift_m?: () -> bool
|
|
973
|
+
def alt_shift_n?: () -> bool
|
|
974
|
+
def alt_shift_o?: () -> bool
|
|
975
|
+
def alt_shift_p?: () -> bool
|
|
976
|
+
def alt_shift_q?: () -> bool
|
|
977
|
+
def alt_shift_r?: () -> bool
|
|
978
|
+
def alt_shift_s?: () -> bool
|
|
979
|
+
def alt_shift_t?: () -> bool
|
|
980
|
+
def alt_shift_u?: () -> bool
|
|
981
|
+
def alt_shift_v?: () -> bool
|
|
982
|
+
def alt_shift_w?: () -> bool
|
|
983
|
+
def alt_shift_x?: () -> bool
|
|
984
|
+
def alt_shift_y?: () -> bool
|
|
985
|
+
def alt_shift_z?: () -> bool
|
|
986
|
+
def `alt_shift_{?`: () -> bool
|
|
987
|
+
def `alt_shift_|?`: () -> bool
|
|
988
|
+
def `alt_shift_}?`: () -> bool
|
|
989
|
+
def `alt_shift_~?`: () -> bool
|
|
990
|
+
def alt_shift_f1?: () -> bool
|
|
991
|
+
def alt_shift_f2?: () -> bool
|
|
992
|
+
def alt_shift_f3?: () -> bool
|
|
993
|
+
def alt_shift_f4?: () -> bool
|
|
994
|
+
def alt_shift_f5?: () -> bool
|
|
995
|
+
def alt_shift_f6?: () -> bool
|
|
996
|
+
def alt_shift_f7?: () -> bool
|
|
997
|
+
def alt_shift_f8?: () -> bool
|
|
998
|
+
def alt_shift_f9?: () -> bool
|
|
999
|
+
def alt_shift_f10?: () -> bool
|
|
1000
|
+
def alt_shift_f11?: () -> bool
|
|
1001
|
+
def alt_shift_f12?: () -> bool
|
|
1002
|
+
def alt_shift_f13?: () -> bool
|
|
1003
|
+
def alt_shift_f14?: () -> bool
|
|
1004
|
+
def alt_shift_f15?: () -> bool
|
|
1005
|
+
def alt_shift_f16?: () -> bool
|
|
1006
|
+
def alt_shift_f17?: () -> bool
|
|
1007
|
+
def alt_shift_f18?: () -> bool
|
|
1008
|
+
def alt_shift_f19?: () -> bool
|
|
1009
|
+
def alt_shift_f20?: () -> bool
|
|
1010
|
+
def alt_shift_f21?: () -> bool
|
|
1011
|
+
def alt_shift_f22?: () -> bool
|
|
1012
|
+
def alt_shift_f23?: () -> bool
|
|
1013
|
+
def alt_shift_f24?: () -> bool
|
|
1014
|
+
def ctrl_shift_up?: () -> bool
|
|
1015
|
+
def ctrl_shift_down?: () -> bool
|
|
1016
|
+
def ctrl_shift_left?: () -> bool
|
|
1017
|
+
def ctrl_shift_right?: () -> bool
|
|
1018
|
+
def ctrl_shift_enter?: () -> bool
|
|
1019
|
+
def ctrl_shift_esc?: () -> bool
|
|
1020
|
+
def ctrl_shift_backspace?: () -> bool
|
|
1021
|
+
def ctrl_shift_tab?: () -> bool
|
|
1022
|
+
def ctrl_shift_back_tab?: () -> bool
|
|
1023
|
+
def ctrl_shift_null?: () -> bool
|
|
1024
|
+
def ctrl_shift_home?: () -> bool
|
|
1025
|
+
def ctrl_shift_end?: () -> bool
|
|
1026
|
+
def ctrl_shift_page_up?: () -> bool
|
|
1027
|
+
def ctrl_shift_page_down?: () -> bool
|
|
1028
|
+
def ctrl_shift_insert?: () -> bool
|
|
1029
|
+
def ctrl_shift_delete?: () -> bool
|
|
1030
|
+
def ctrl_shift_caps_lock?: () -> bool
|
|
1031
|
+
def ctrl_shift_scroll_lock?: () -> bool
|
|
1032
|
+
def ctrl_shift_num_lock?: () -> bool
|
|
1033
|
+
def ctrl_shift_print_screen?: () -> bool
|
|
1034
|
+
def ctrl_shift_pause?: () -> bool
|
|
1035
|
+
def ctrl_shift_menu?: () -> bool
|
|
1036
|
+
def ctrl_shift_keypad_begin?: () -> bool
|
|
1037
|
+
def ctrl_shift_media_play?: () -> bool
|
|
1038
|
+
def ctrl_shift_media_pause?: () -> bool
|
|
1039
|
+
def ctrl_shift_media_play_pause?: () -> bool
|
|
1040
|
+
def ctrl_shift_media_reverse?: () -> bool
|
|
1041
|
+
def ctrl_shift_media_stop?: () -> bool
|
|
1042
|
+
def ctrl_shift_media_fast_forward?: () -> bool
|
|
1043
|
+
def ctrl_shift_media_rewind?: () -> bool
|
|
1044
|
+
def ctrl_shift_media_track_next?: () -> bool
|
|
1045
|
+
def ctrl_shift_media_track_previous?: () -> bool
|
|
1046
|
+
def ctrl_shift_media_record?: () -> bool
|
|
1047
|
+
def ctrl_shift_media_lower_volume?: () -> bool
|
|
1048
|
+
def ctrl_shift_media_raise_volume?: () -> bool
|
|
1049
|
+
def ctrl_shift_media_mute_volume?: () -> bool
|
|
1050
|
+
def ctrl_shift_left_shift?: () -> bool
|
|
1051
|
+
def ctrl_shift_left_control?: () -> bool
|
|
1052
|
+
def ctrl_shift_left_alt?: () -> bool
|
|
1053
|
+
def ctrl_shift_left_super?: () -> bool
|
|
1054
|
+
def ctrl_shift_left_hyper?: () -> bool
|
|
1055
|
+
def ctrl_shift_left_meta?: () -> bool
|
|
1056
|
+
def ctrl_shift_right_shift?: () -> bool
|
|
1057
|
+
def ctrl_shift_right_control?: () -> bool
|
|
1058
|
+
def ctrl_shift_right_alt?: () -> bool
|
|
1059
|
+
def ctrl_shift_right_super?: () -> bool
|
|
1060
|
+
def ctrl_shift_right_hyper?: () -> bool
|
|
1061
|
+
def ctrl_shift_right_meta?: () -> bool
|
|
1062
|
+
def ctrl_shift_iso_level3_shift?: () -> bool
|
|
1063
|
+
def ctrl_shift_iso_level5_shift?: () -> bool
|
|
1064
|
+
def `ctrl_shift_!?`: () -> bool
|
|
1065
|
+
def `ctrl_shift_"?`: () -> bool
|
|
1066
|
+
def `ctrl_shift_#?`: () -> bool
|
|
1067
|
+
def `ctrl_shift_$?`: () -> bool
|
|
1068
|
+
def `ctrl_shift_%?`: () -> bool
|
|
1069
|
+
def `ctrl_shift_&?`: () -> bool
|
|
1070
|
+
def `ctrl_shift_'?`: () -> bool
|
|
1071
|
+
def `ctrl_shift_(?`: () -> bool
|
|
1072
|
+
def `ctrl_shift_)?`: () -> bool
|
|
1073
|
+
def `ctrl_shift_*?`: () -> bool
|
|
1074
|
+
def `ctrl_shift_+?`: () -> bool
|
|
1075
|
+
def `ctrl_shift_,?`: () -> bool
|
|
1076
|
+
def `ctrl_shift_-?`: () -> bool
|
|
1077
|
+
def `ctrl_shift_.?`: () -> bool
|
|
1078
|
+
def `ctrl_shift_/?`: () -> bool
|
|
1079
|
+
def ctrl_shift_0?: () -> bool
|
|
1080
|
+
def ctrl_shift_1?: () -> bool
|
|
1081
|
+
def ctrl_shift_2?: () -> bool
|
|
1082
|
+
def ctrl_shift_3?: () -> bool
|
|
1083
|
+
def ctrl_shift_4?: () -> bool
|
|
1084
|
+
def ctrl_shift_5?: () -> bool
|
|
1085
|
+
def ctrl_shift_6?: () -> bool
|
|
1086
|
+
def ctrl_shift_7?: () -> bool
|
|
1087
|
+
def ctrl_shift_8?: () -> bool
|
|
1088
|
+
def ctrl_shift_9?: () -> bool
|
|
1089
|
+
def `ctrl_shift_;?`: () -> bool
|
|
1090
|
+
def `ctrl_shift_<?`: () -> bool
|
|
1091
|
+
def `ctrl_shift_=?`: () -> bool
|
|
1092
|
+
def `ctrl_shift_>?`: () -> bool
|
|
1093
|
+
def `ctrl_shift_??`: () -> bool
|
|
1094
|
+
def `ctrl_shift_@?`: () -> bool
|
|
1095
|
+
def ctrl_shift_A?: () -> bool
|
|
1096
|
+
def ctrl_shift_B?: () -> bool
|
|
1097
|
+
def ctrl_shift_C?: () -> bool
|
|
1098
|
+
def ctrl_shift_D?: () -> bool
|
|
1099
|
+
def ctrl_shift_E?: () -> bool
|
|
1100
|
+
def ctrl_shift_F?: () -> bool
|
|
1101
|
+
def ctrl_shift_G?: () -> bool
|
|
1102
|
+
def ctrl_shift_H?: () -> bool
|
|
1103
|
+
def ctrl_shift_I?: () -> bool
|
|
1104
|
+
def ctrl_shift_J?: () -> bool
|
|
1105
|
+
def ctrl_shift_K?: () -> bool
|
|
1106
|
+
def ctrl_shift_L?: () -> bool
|
|
1107
|
+
def ctrl_shift_M?: () -> bool
|
|
1108
|
+
def ctrl_shift_N?: () -> bool
|
|
1109
|
+
def ctrl_shift_O?: () -> bool
|
|
1110
|
+
def ctrl_shift_P?: () -> bool
|
|
1111
|
+
def ctrl_shift_Q?: () -> bool
|
|
1112
|
+
def ctrl_shift_R?: () -> bool
|
|
1113
|
+
def ctrl_shift_S?: () -> bool
|
|
1114
|
+
def ctrl_shift_T?: () -> bool
|
|
1115
|
+
def ctrl_shift_U?: () -> bool
|
|
1116
|
+
def ctrl_shift_V?: () -> bool
|
|
1117
|
+
def ctrl_shift_W?: () -> bool
|
|
1118
|
+
def ctrl_shift_X?: () -> bool
|
|
1119
|
+
def ctrl_shift_Y?: () -> bool
|
|
1120
|
+
def ctrl_shift_Z?: () -> bool
|
|
1121
|
+
def `ctrl_shift_[?`: () -> bool
|
|
1122
|
+
def `ctrl_shift_\?`: () -> bool
|
|
1123
|
+
def `ctrl_shift_]?`: () -> bool
|
|
1124
|
+
def `ctrl_shift_^?`: () -> bool
|
|
1125
|
+
def ctrl_shift__?: () -> bool
|
|
1126
|
+
def ctrl_shift_a?: () -> bool
|
|
1127
|
+
def ctrl_shift_b?: () -> bool
|
|
1128
|
+
def ctrl_shift_c?: () -> bool
|
|
1129
|
+
def ctrl_shift_d?: () -> bool
|
|
1130
|
+
def ctrl_shift_e?: () -> bool
|
|
1131
|
+
def ctrl_shift_f?: () -> bool
|
|
1132
|
+
def ctrl_shift_g?: () -> bool
|
|
1133
|
+
def ctrl_shift_h?: () -> bool
|
|
1134
|
+
def ctrl_shift_i?: () -> bool
|
|
1135
|
+
def ctrl_shift_j?: () -> bool
|
|
1136
|
+
def ctrl_shift_k?: () -> bool
|
|
1137
|
+
def ctrl_shift_l?: () -> bool
|
|
1138
|
+
def ctrl_shift_m?: () -> bool
|
|
1139
|
+
def ctrl_shift_n?: () -> bool
|
|
1140
|
+
def ctrl_shift_o?: () -> bool
|
|
1141
|
+
def ctrl_shift_p?: () -> bool
|
|
1142
|
+
def ctrl_shift_q?: () -> bool
|
|
1143
|
+
def ctrl_shift_r?: () -> bool
|
|
1144
|
+
def ctrl_shift_s?: () -> bool
|
|
1145
|
+
def ctrl_shift_t?: () -> bool
|
|
1146
|
+
def ctrl_shift_u?: () -> bool
|
|
1147
|
+
def ctrl_shift_v?: () -> bool
|
|
1148
|
+
def ctrl_shift_w?: () -> bool
|
|
1149
|
+
def ctrl_shift_x?: () -> bool
|
|
1150
|
+
def ctrl_shift_y?: () -> bool
|
|
1151
|
+
def ctrl_shift_z?: () -> bool
|
|
1152
|
+
def `ctrl_shift_{?`: () -> bool
|
|
1153
|
+
def `ctrl_shift_|?`: () -> bool
|
|
1154
|
+
def `ctrl_shift_}?`: () -> bool
|
|
1155
|
+
def `ctrl_shift_~?`: () -> bool
|
|
1156
|
+
def ctrl_shift_f1?: () -> bool
|
|
1157
|
+
def ctrl_shift_f2?: () -> bool
|
|
1158
|
+
def ctrl_shift_f3?: () -> bool
|
|
1159
|
+
def ctrl_shift_f4?: () -> bool
|
|
1160
|
+
def ctrl_shift_f5?: () -> bool
|
|
1161
|
+
def ctrl_shift_f6?: () -> bool
|
|
1162
|
+
def ctrl_shift_f7?: () -> bool
|
|
1163
|
+
def ctrl_shift_f8?: () -> bool
|
|
1164
|
+
def ctrl_shift_f9?: () -> bool
|
|
1165
|
+
def ctrl_shift_f10?: () -> bool
|
|
1166
|
+
def ctrl_shift_f11?: () -> bool
|
|
1167
|
+
def ctrl_shift_f12?: () -> bool
|
|
1168
|
+
def ctrl_shift_f13?: () -> bool
|
|
1169
|
+
def ctrl_shift_f14?: () -> bool
|
|
1170
|
+
def ctrl_shift_f15?: () -> bool
|
|
1171
|
+
def ctrl_shift_f16?: () -> bool
|
|
1172
|
+
def ctrl_shift_f17?: () -> bool
|
|
1173
|
+
def ctrl_shift_f18?: () -> bool
|
|
1174
|
+
def ctrl_shift_f19?: () -> bool
|
|
1175
|
+
def ctrl_shift_f20?: () -> bool
|
|
1176
|
+
def ctrl_shift_f21?: () -> bool
|
|
1177
|
+
def ctrl_shift_f22?: () -> bool
|
|
1178
|
+
def ctrl_shift_f23?: () -> bool
|
|
1179
|
+
def ctrl_shift_f24?: () -> bool
|
|
1180
|
+
def alt_ctrl_shift_up?: () -> bool
|
|
1181
|
+
def alt_ctrl_shift_down?: () -> bool
|
|
1182
|
+
def alt_ctrl_shift_left?: () -> bool
|
|
1183
|
+
def alt_ctrl_shift_right?: () -> bool
|
|
1184
|
+
def alt_ctrl_shift_enter?: () -> bool
|
|
1185
|
+
def alt_ctrl_shift_esc?: () -> bool
|
|
1186
|
+
def alt_ctrl_shift_backspace?: () -> bool
|
|
1187
|
+
def alt_ctrl_shift_tab?: () -> bool
|
|
1188
|
+
def alt_ctrl_shift_back_tab?: () -> bool
|
|
1189
|
+
def alt_ctrl_shift_null?: () -> bool
|
|
1190
|
+
def alt_ctrl_shift_home?: () -> bool
|
|
1191
|
+
def alt_ctrl_shift_end?: () -> bool
|
|
1192
|
+
def alt_ctrl_shift_page_up?: () -> bool
|
|
1193
|
+
def alt_ctrl_shift_page_down?: () -> bool
|
|
1194
|
+
def alt_ctrl_shift_insert?: () -> bool
|
|
1195
|
+
def alt_ctrl_shift_delete?: () -> bool
|
|
1196
|
+
def alt_ctrl_shift_caps_lock?: () -> bool
|
|
1197
|
+
def alt_ctrl_shift_scroll_lock?: () -> bool
|
|
1198
|
+
def alt_ctrl_shift_num_lock?: () -> bool
|
|
1199
|
+
def alt_ctrl_shift_print_screen?: () -> bool
|
|
1200
|
+
def alt_ctrl_shift_pause?: () -> bool
|
|
1201
|
+
def alt_ctrl_shift_menu?: () -> bool
|
|
1202
|
+
def alt_ctrl_shift_keypad_begin?: () -> bool
|
|
1203
|
+
def alt_ctrl_shift_media_play?: () -> bool
|
|
1204
|
+
def alt_ctrl_shift_media_pause?: () -> bool
|
|
1205
|
+
def alt_ctrl_shift_media_play_pause?: () -> bool
|
|
1206
|
+
def alt_ctrl_shift_media_reverse?: () -> bool
|
|
1207
|
+
def alt_ctrl_shift_media_stop?: () -> bool
|
|
1208
|
+
def alt_ctrl_shift_media_fast_forward?: () -> bool
|
|
1209
|
+
def alt_ctrl_shift_media_rewind?: () -> bool
|
|
1210
|
+
def alt_ctrl_shift_media_track_next?: () -> bool
|
|
1211
|
+
def alt_ctrl_shift_media_track_previous?: () -> bool
|
|
1212
|
+
def alt_ctrl_shift_media_record?: () -> bool
|
|
1213
|
+
def alt_ctrl_shift_media_lower_volume?: () -> bool
|
|
1214
|
+
def alt_ctrl_shift_media_raise_volume?: () -> bool
|
|
1215
|
+
def alt_ctrl_shift_media_mute_volume?: () -> bool
|
|
1216
|
+
def alt_ctrl_shift_left_shift?: () -> bool
|
|
1217
|
+
def alt_ctrl_shift_left_control?: () -> bool
|
|
1218
|
+
def alt_ctrl_shift_left_alt?: () -> bool
|
|
1219
|
+
def alt_ctrl_shift_left_super?: () -> bool
|
|
1220
|
+
def alt_ctrl_shift_left_hyper?: () -> bool
|
|
1221
|
+
def alt_ctrl_shift_left_meta?: () -> bool
|
|
1222
|
+
def alt_ctrl_shift_right_shift?: () -> bool
|
|
1223
|
+
def alt_ctrl_shift_right_control?: () -> bool
|
|
1224
|
+
def alt_ctrl_shift_right_alt?: () -> bool
|
|
1225
|
+
def alt_ctrl_shift_right_super?: () -> bool
|
|
1226
|
+
def alt_ctrl_shift_right_hyper?: () -> bool
|
|
1227
|
+
def alt_ctrl_shift_right_meta?: () -> bool
|
|
1228
|
+
def alt_ctrl_shift_iso_level3_shift?: () -> bool
|
|
1229
|
+
def alt_ctrl_shift_iso_level5_shift?: () -> bool
|
|
1230
|
+
def `alt_ctrl_shift_!?`: () -> bool
|
|
1231
|
+
def `alt_ctrl_shift_"?`: () -> bool
|
|
1232
|
+
def `alt_ctrl_shift_#?`: () -> bool
|
|
1233
|
+
def `alt_ctrl_shift_$?`: () -> bool
|
|
1234
|
+
def `alt_ctrl_shift_%?`: () -> bool
|
|
1235
|
+
def `alt_ctrl_shift_&?`: () -> bool
|
|
1236
|
+
def `alt_ctrl_shift_'?`: () -> bool
|
|
1237
|
+
def `alt_ctrl_shift_(?`: () -> bool
|
|
1238
|
+
def `alt_ctrl_shift_)?`: () -> bool
|
|
1239
|
+
def `alt_ctrl_shift_*?`: () -> bool
|
|
1240
|
+
def `alt_ctrl_shift_+?`: () -> bool
|
|
1241
|
+
def `alt_ctrl_shift_,?`: () -> bool
|
|
1242
|
+
def `alt_ctrl_shift_-?`: () -> bool
|
|
1243
|
+
def `alt_ctrl_shift_.?`: () -> bool
|
|
1244
|
+
def `alt_ctrl_shift_/?`: () -> bool
|
|
1245
|
+
def alt_ctrl_shift_0?: () -> bool
|
|
1246
|
+
def alt_ctrl_shift_1?: () -> bool
|
|
1247
|
+
def alt_ctrl_shift_2?: () -> bool
|
|
1248
|
+
def alt_ctrl_shift_3?: () -> bool
|
|
1249
|
+
def alt_ctrl_shift_4?: () -> bool
|
|
1250
|
+
def alt_ctrl_shift_5?: () -> bool
|
|
1251
|
+
def alt_ctrl_shift_6?: () -> bool
|
|
1252
|
+
def alt_ctrl_shift_7?: () -> bool
|
|
1253
|
+
def alt_ctrl_shift_8?: () -> bool
|
|
1254
|
+
def alt_ctrl_shift_9?: () -> bool
|
|
1255
|
+
def `alt_ctrl_shift_;?`: () -> bool
|
|
1256
|
+
def `alt_ctrl_shift_<?`: () -> bool
|
|
1257
|
+
def `alt_ctrl_shift_=?`: () -> bool
|
|
1258
|
+
def `alt_ctrl_shift_>?`: () -> bool
|
|
1259
|
+
def `alt_ctrl_shift_??`: () -> bool
|
|
1260
|
+
def `alt_ctrl_shift_@?`: () -> bool
|
|
1261
|
+
def alt_ctrl_shift_A?: () -> bool
|
|
1262
|
+
def alt_ctrl_shift_B?: () -> bool
|
|
1263
|
+
def alt_ctrl_shift_C?: () -> bool
|
|
1264
|
+
def alt_ctrl_shift_D?: () -> bool
|
|
1265
|
+
def alt_ctrl_shift_E?: () -> bool
|
|
1266
|
+
def alt_ctrl_shift_F?: () -> bool
|
|
1267
|
+
def alt_ctrl_shift_G?: () -> bool
|
|
1268
|
+
def alt_ctrl_shift_H?: () -> bool
|
|
1269
|
+
def alt_ctrl_shift_I?: () -> bool
|
|
1270
|
+
def alt_ctrl_shift_J?: () -> bool
|
|
1271
|
+
def alt_ctrl_shift_K?: () -> bool
|
|
1272
|
+
def alt_ctrl_shift_L?: () -> bool
|
|
1273
|
+
def alt_ctrl_shift_M?: () -> bool
|
|
1274
|
+
def alt_ctrl_shift_N?: () -> bool
|
|
1275
|
+
def alt_ctrl_shift_O?: () -> bool
|
|
1276
|
+
def alt_ctrl_shift_P?: () -> bool
|
|
1277
|
+
def alt_ctrl_shift_Q?: () -> bool
|
|
1278
|
+
def alt_ctrl_shift_R?: () -> bool
|
|
1279
|
+
def alt_ctrl_shift_S?: () -> bool
|
|
1280
|
+
def alt_ctrl_shift_T?: () -> bool
|
|
1281
|
+
def alt_ctrl_shift_U?: () -> bool
|
|
1282
|
+
def alt_ctrl_shift_V?: () -> bool
|
|
1283
|
+
def alt_ctrl_shift_W?: () -> bool
|
|
1284
|
+
def alt_ctrl_shift_X?: () -> bool
|
|
1285
|
+
def alt_ctrl_shift_Y?: () -> bool
|
|
1286
|
+
def alt_ctrl_shift_Z?: () -> bool
|
|
1287
|
+
def `alt_ctrl_shift_[?`: () -> bool
|
|
1288
|
+
def `alt_ctrl_shift_\?`: () -> bool
|
|
1289
|
+
def `alt_ctrl_shift_]?`: () -> bool
|
|
1290
|
+
def `alt_ctrl_shift_^?`: () -> bool
|
|
1291
|
+
def alt_ctrl_shift__?: () -> bool
|
|
1292
|
+
def alt_ctrl_shift_a?: () -> bool
|
|
1293
|
+
def alt_ctrl_shift_b?: () -> bool
|
|
1294
|
+
def alt_ctrl_shift_c?: () -> bool
|
|
1295
|
+
def alt_ctrl_shift_d?: () -> bool
|
|
1296
|
+
def alt_ctrl_shift_e?: () -> bool
|
|
1297
|
+
def alt_ctrl_shift_f?: () -> bool
|
|
1298
|
+
def alt_ctrl_shift_g?: () -> bool
|
|
1299
|
+
def alt_ctrl_shift_h?: () -> bool
|
|
1300
|
+
def alt_ctrl_shift_i?: () -> bool
|
|
1301
|
+
def alt_ctrl_shift_j?: () -> bool
|
|
1302
|
+
def alt_ctrl_shift_k?: () -> bool
|
|
1303
|
+
def alt_ctrl_shift_l?: () -> bool
|
|
1304
|
+
def alt_ctrl_shift_m?: () -> bool
|
|
1305
|
+
def alt_ctrl_shift_n?: () -> bool
|
|
1306
|
+
def alt_ctrl_shift_o?: () -> bool
|
|
1307
|
+
def alt_ctrl_shift_p?: () -> bool
|
|
1308
|
+
def alt_ctrl_shift_q?: () -> bool
|
|
1309
|
+
def alt_ctrl_shift_r?: () -> bool
|
|
1310
|
+
def alt_ctrl_shift_s?: () -> bool
|
|
1311
|
+
def alt_ctrl_shift_t?: () -> bool
|
|
1312
|
+
def alt_ctrl_shift_u?: () -> bool
|
|
1313
|
+
def alt_ctrl_shift_v?: () -> bool
|
|
1314
|
+
def alt_ctrl_shift_w?: () -> bool
|
|
1315
|
+
def alt_ctrl_shift_x?: () -> bool
|
|
1316
|
+
def alt_ctrl_shift_y?: () -> bool
|
|
1317
|
+
def alt_ctrl_shift_z?: () -> bool
|
|
1318
|
+
def `alt_ctrl_shift_{?`: () -> bool
|
|
1319
|
+
def `alt_ctrl_shift_|?`: () -> bool
|
|
1320
|
+
def `alt_ctrl_shift_}?`: () -> bool
|
|
1321
|
+
def `alt_ctrl_shift_~?`: () -> bool
|
|
1322
|
+
def alt_ctrl_shift_f1?: () -> bool
|
|
1323
|
+
def alt_ctrl_shift_f2?: () -> bool
|
|
1324
|
+
def alt_ctrl_shift_f3?: () -> bool
|
|
1325
|
+
def alt_ctrl_shift_f4?: () -> bool
|
|
1326
|
+
def alt_ctrl_shift_f5?: () -> bool
|
|
1327
|
+
def alt_ctrl_shift_f6?: () -> bool
|
|
1328
|
+
def alt_ctrl_shift_f7?: () -> bool
|
|
1329
|
+
def alt_ctrl_shift_f8?: () -> bool
|
|
1330
|
+
def alt_ctrl_shift_f9?: () -> bool
|
|
1331
|
+
def alt_ctrl_shift_f10?: () -> bool
|
|
1332
|
+
def alt_ctrl_shift_f11?: () -> bool
|
|
1333
|
+
def alt_ctrl_shift_f12?: () -> bool
|
|
1334
|
+
def alt_ctrl_shift_f13?: () -> bool
|
|
1335
|
+
def alt_ctrl_shift_f14?: () -> bool
|
|
1336
|
+
def alt_ctrl_shift_f15?: () -> bool
|
|
1337
|
+
def alt_ctrl_shift_f16?: () -> bool
|
|
1338
|
+
def alt_ctrl_shift_f17?: () -> bool
|
|
1339
|
+
def alt_ctrl_shift_f18?: () -> bool
|
|
1340
|
+
def alt_ctrl_shift_f19?: () -> bool
|
|
1341
|
+
def alt_ctrl_shift_f20?: () -> bool
|
|
1342
|
+
def alt_ctrl_shift_f21?: () -> bool
|
|
1343
|
+
def alt_ctrl_shift_f22?: () -> bool
|
|
1344
|
+
def alt_ctrl_shift_f23?: () -> bool
|
|
1345
|
+
def alt_ctrl_shift_f24?: () -> bool
|
|
1346
|
+
end
|
|
1347
|
+
end
|
|
1348
|
+
end
|