1 | #pragma once |
2 | |
3 | /* Generated with cbindgen:0.26.0 */ |
4 | |
5 | #include <cstdarg> |
6 | #include <cstdint> |
7 | #include <cstdlib> |
8 | #include <ostream> |
9 | #include <new> |
10 | #include "slint_internal.h" |
11 | |
12 | namespace slint::cbindgen_private { |
13 | // HACK ALERT: This struct declaration is duplicated in internal/backend/qt/qt_widgets.rs - keep in sync. |
14 | struct SlintTypeErasedWidget |
15 | { |
16 | virtual ~SlintTypeErasedWidget() = 0; |
17 | SlintTypeErasedWidget(const SlintTypeErasedWidget&) = delete; |
18 | SlintTypeErasedWidget& operator=(const SlintTypeErasedWidget&) = delete; |
19 | |
20 | virtual void *qwidget() const = 0; |
21 | }; |
22 | using SlintTypeErasedWidgetPtr = std::unique_ptr<SlintTypeErasedWidget>; |
23 | } |
24 | |
25 | |
26 | namespace slint { |
27 | namespace cbindgen_private { |
28 | |
29 | struct IntArg; |
30 | |
31 | struct NativeStyleMetrics { |
32 | Property<LogicalLength> layout_spacing; |
33 | Property<LogicalLength> layout_padding; |
34 | Property<LogicalLength> text_cursor_width; |
35 | Property<Color> window_background; |
36 | Property<Color> default_text_color; |
37 | Property<LogicalLength> default_font_size; |
38 | Property<Color> textedit_background; |
39 | Property<Color> textedit_text_color; |
40 | Property<Color> textedit_background_disabled; |
41 | Property<Color> textedit_text_color_disabled; |
42 | Property<Color> placeholder_color; |
43 | Property<Color> placeholder_color_disabled; |
44 | Property<bool> dark_color_scheme; |
45 | Property<LayoutAlignment> tab_bar_alignment; |
46 | const uint8_t *style_change_listener; |
47 | inline explicit NativeStyleMetrics(void* = nullptr); inline ~NativeStyleMetrics(); |
48 | }; |
49 | |
50 | struct NativePalette { |
51 | Property<Brush> background; |
52 | Property<Brush> foreground; |
53 | Property<Brush> alternate_background; |
54 | Property<Brush> alternate_foreground; |
55 | Property<Brush> accent_background; |
56 | Property<Brush> accent_foreground; |
57 | Property<Brush> control_background; |
58 | Property<Brush> control_foreground; |
59 | Property<Brush> selection_background; |
60 | Property<Brush> selection_foreground; |
61 | Property<Brush> border; |
62 | const uint8_t *style_change_listener; |
63 | inline explicit NativePalette(void* = nullptr); inline ~NativePalette(); |
64 | }; |
65 | |
66 | using QStyle_StandardPixmap = unsigned int; |
67 | |
68 | using QAccessible_Event = unsigned int; |
69 | |
70 | using QAccessible_Role = unsigned int; |
71 | |
72 | using QAccessible_Text = unsigned int; |
73 | |
74 | using Qt_KeyboardModifier = unsigned int; |
75 | |
76 | using Qt_AlignmentFlag = unsigned int; |
77 | |
78 | using Qt_TextFlag = unsigned int; |
79 | |
80 | using Qt_Key = unsigned int; |
81 | |
82 | using Qt_CursorShape = unsigned int; |
83 | |
84 | using Qt_FillRule = unsigned int; |
85 | |
86 | struct NativeButton { |
87 | Property<SharedString> text; |
88 | Property<Image> icon; |
89 | Property<bool> pressed; |
90 | Property<bool> has_hover; |
91 | Property<bool> checkable; |
92 | Property<bool> checked; |
93 | Property<bool> primary; |
94 | Property<bool> has_focus; |
95 | private_api::CallbackHelper<void> clicked; |
96 | Property<bool> enabled; |
97 | Property<bool> colorize_icon; |
98 | Property<StandardButtonKind> standard_button_kind; |
99 | Property<bool> is_standard_button; |
100 | SlintTypeErasedWidgetPtr widget_ptr; |
101 | Property<int32_t> animation_tracker; |
102 | CachedRenderingData cached_rendering_data; |
103 | }; |
104 | |
105 | struct NativeSpinBoxData { |
106 | uint32_t active_controls; |
107 | bool pressed; |
108 | }; |
109 | |
110 | struct NativeSpinBox { |
111 | Property<bool> enabled; |
112 | Property<bool> has_focus; |
113 | Property<int32_t> value; |
114 | Property<int32_t> minimum; |
115 | Property<int32_t> maximum; |
116 | CachedRenderingData cached_rendering_data; |
117 | private_api::CallbackHelper<IntArg> edited; |
118 | Property<NativeSpinBoxData> data; |
119 | SlintTypeErasedWidgetPtr widget_ptr; |
120 | Property<int32_t> animation_tracker; |
121 | }; |
122 | |
123 | struct NativeCheckBox { |
124 | Property<bool> enabled; |
125 | Property<bool> has_focus; |
126 | private_api::CallbackHelper<void> toggled; |
127 | Property<SharedString> text; |
128 | Property<bool> checked; |
129 | SlintTypeErasedWidgetPtr widget_ptr; |
130 | Property<int32_t> animation_tracker; |
131 | CachedRenderingData cached_rendering_data; |
132 | }; |
133 | |
134 | struct NativeSliderData { |
135 | uint32_t active_controls; |
136 | /// For sliders, this is a bool, For scroll area: 1 == horizontal, 2 == vertical |
137 | uint8_t pressed; |
138 | float pressed_x; |
139 | float pressed_val; |
140 | }; |
141 | |
142 | struct NativeSlider { |
143 | Property<Orientation> orientation; |
144 | Property<bool> enabled; |
145 | Property<float> value; |
146 | Property<float> minimum; |
147 | Property<float> maximum; |
148 | CachedRenderingData cached_rendering_data; |
149 | Property<NativeSliderData> data; |
150 | private_api::CallbackHelper<float> changed; |
151 | SlintTypeErasedWidgetPtr widget_ptr; |
152 | Property<int32_t> animation_tracker; |
153 | }; |
154 | |
155 | struct NativeProgressIndicator { |
156 | Property<bool> indeterminate; |
157 | Property<float> progress; |
158 | SlintTypeErasedWidgetPtr widget_ptr; |
159 | Property<int32_t> animation_tracker; |
160 | CachedRenderingData cached_rendering_data; |
161 | }; |
162 | |
163 | struct NativeGroupBox { |
164 | Property<bool> enabled; |
165 | Property<SharedString> title; |
166 | CachedRenderingData cached_rendering_data; |
167 | Property<LogicalLength> native_padding_left; |
168 | Property<LogicalLength> native_padding_right; |
169 | Property<LogicalLength> native_padding_top; |
170 | Property<LogicalLength> native_padding_bottom; |
171 | SlintTypeErasedWidgetPtr widget_ptr; |
172 | Property<int32_t> animation_tracker; |
173 | }; |
174 | |
175 | struct NativeLineEdit { |
176 | CachedRenderingData cached_rendering_data; |
177 | Property<LogicalLength> native_padding_left; |
178 | Property<LogicalLength> native_padding_right; |
179 | Property<LogicalLength> native_padding_top; |
180 | Property<LogicalLength> native_padding_bottom; |
181 | Property<bool> has_focus; |
182 | Property<bool> enabled; |
183 | Property<InputType> input_type; |
184 | SlintTypeErasedWidgetPtr widget_ptr; |
185 | Property<int32_t> animation_tracker; |
186 | }; |
187 | |
188 | struct NativeScrollView { |
189 | Property<LogicalLength> horizontal_max; |
190 | Property<LogicalLength> horizontal_page_size; |
191 | Property<LogicalLength> horizontal_value; |
192 | Property<LogicalLength> vertical_max; |
193 | Property<LogicalLength> vertical_page_size; |
194 | Property<LogicalLength> vertical_value; |
195 | CachedRenderingData cached_rendering_data; |
196 | Property<LogicalLength> native_padding_left; |
197 | Property<LogicalLength> native_padding_right; |
198 | Property<LogicalLength> native_padding_top; |
199 | Property<LogicalLength> native_padding_bottom; |
200 | Property<bool> enabled; |
201 | Property<bool> has_focus; |
202 | Property<NativeSliderData> data; |
203 | SlintTypeErasedWidgetPtr widget_ptr; |
204 | Property<int32_t> animation_tracker; |
205 | }; |
206 | |
207 | struct NativeStandardListViewItem { |
208 | Property<StandardListViewItem> item; |
209 | Property<int32_t> index; |
210 | Property<bool> is_selected; |
211 | CachedRenderingData cached_rendering_data; |
212 | Property<bool> has_hover; |
213 | Property<bool> has_focus; |
214 | Property<bool> pressed; |
215 | Property<LogicalLength> pressed_x; |
216 | Property<LogicalLength> pressed_y; |
217 | /// Specify that this item is in fact used in a ComboBox |
218 | Property<bool> combobox; |
219 | SlintTypeErasedWidgetPtr widget_ptr; |
220 | Property<int32_t> animation_tracker; |
221 | }; |
222 | |
223 | struct { |
224 | Property<TableColumn> ; |
225 | Property<int32_t> ; |
226 | CachedRenderingData ; |
227 | Property<bool> ; |
228 | SlintTypeErasedWidgetPtr ; |
229 | Property<int32_t> ; |
230 | }; |
231 | |
232 | struct NativeComboBox { |
233 | Property<bool> enabled; |
234 | Property<bool> pressed; |
235 | Property<bool> is_open; |
236 | Property<SharedString> current_value; |
237 | SlintTypeErasedWidgetPtr widget_ptr; |
238 | Property<int32_t> animation_tracker; |
239 | CachedRenderingData cached_rendering_data; |
240 | }; |
241 | |
242 | struct { |
243 | SlintTypeErasedWidgetPtr ; |
244 | Property<int32_t> ; |
245 | CachedRenderingData ; |
246 | }; |
247 | |
248 | struct NativeTabWidget { |
249 | Property<LogicalLength> width; |
250 | Property<LogicalLength> height; |
251 | CachedRenderingData cached_rendering_data; |
252 | Property<LogicalLength> content_min_height; |
253 | Property<LogicalLength> content_min_width; |
254 | Property<LogicalLength> tabbar_preferred_height; |
255 | Property<LogicalLength> tabbar_preferred_width; |
256 | Property<int32_t> current_index; |
257 | Property<int32_t> current_focused; |
258 | Property<LogicalLength> content_x; |
259 | Property<LogicalLength> content_y; |
260 | Property<LogicalLength> content_height; |
261 | Property<LogicalLength> content_width; |
262 | Property<LogicalLength> tabbar_x; |
263 | Property<LogicalLength> tabbar_y; |
264 | Property<LogicalLength> tabbar_height; |
265 | Property<LogicalLength> tabbar_width; |
266 | SlintTypeErasedWidgetPtr widget_ptr; |
267 | Property<int32_t> animation_tracker; |
268 | }; |
269 | |
270 | struct NativeTab { |
271 | Property<SharedString> title; |
272 | Property<Image> icon; |
273 | Property<bool> enabled; |
274 | Property<bool> pressed; |
275 | Property<int32_t> current; |
276 | Property<int32_t> current_focused; |
277 | Property<int32_t> tab_index; |
278 | Property<int32_t> num_tabs; |
279 | SlintTypeErasedWidgetPtr widget_ptr; |
280 | Property<int32_t> animation_tracker; |
281 | CachedRenderingData cached_rendering_data; |
282 | }; |
283 | |
284 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarMenuButton = 0; |
285 | |
286 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarMinButton = 1; |
287 | |
288 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarMaxButton = 2; |
289 | |
290 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarCloseButton = 3; |
291 | |
292 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarNormalButton = 4; |
293 | |
294 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarShadeButton = 5; |
295 | |
296 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarUnshadeButton = 6; |
297 | |
298 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TitleBarContextHelpButton = 7; |
299 | |
300 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DockWidgetCloseButton = 8; |
301 | |
302 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MessageBoxInformation = 9; |
303 | |
304 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MessageBoxWarning = 10; |
305 | |
306 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MessageBoxCritical = 11; |
307 | |
308 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MessageBoxQuestion = 12; |
309 | |
310 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DesktopIcon = 13; |
311 | |
312 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_TrashIcon = 14; |
313 | |
314 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ComputerIcon = 15; |
315 | |
316 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DriveFDIcon = 16; |
317 | |
318 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DriveHDIcon = 17; |
319 | |
320 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DriveCDIcon = 18; |
321 | |
322 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DriveDVDIcon = 19; |
323 | |
324 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DriveNetIcon = 20; |
325 | |
326 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirOpenIcon = 21; |
327 | |
328 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirClosedIcon = 22; |
329 | |
330 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirLinkIcon = 23; |
331 | |
332 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirLinkOpenIcon = 24; |
333 | |
334 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileIcon = 25; |
335 | |
336 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileLinkIcon = 26; |
337 | |
338 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ToolBarHorizontalExtensionButton = 27; |
339 | |
340 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ToolBarVerticalExtensionButton = 28; |
341 | |
342 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogStart = 29; |
343 | |
344 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogEnd = 30; |
345 | |
346 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogToParent = 31; |
347 | |
348 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogNewFolder = 32; |
349 | |
350 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogDetailedView = 33; |
351 | |
352 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogInfoView = 34; |
353 | |
354 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogContentsView = 35; |
355 | |
356 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogListView = 36; |
357 | |
358 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_FileDialogBack = 37; |
359 | |
360 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirIcon = 38; |
361 | |
362 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogOkButton = 39; |
363 | |
364 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogCancelButton = 40; |
365 | |
366 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogHelpButton = 41; |
367 | |
368 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogOpenButton = 42; |
369 | |
370 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogSaveButton = 43; |
371 | |
372 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogCloseButton = 44; |
373 | |
374 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogApplyButton = 45; |
375 | |
376 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogResetButton = 46; |
377 | |
378 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogDiscardButton = 47; |
379 | |
380 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogYesButton = 48; |
381 | |
382 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogNoButton = 49; |
383 | |
384 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowUp = 50; |
385 | |
386 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowDown = 51; |
387 | |
388 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowLeft = 52; |
389 | |
390 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowRight = 53; |
391 | |
392 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowBack = 54; |
393 | |
394 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_ArrowForward = 55; |
395 | |
396 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DirHomeIcon = 56; |
397 | |
398 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_CommandLink = 57; |
399 | |
400 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_VistaShield = 58; |
401 | |
402 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_BrowserReload = 59; |
403 | |
404 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_BrowserStop = 60; |
405 | |
406 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaPlay = 61; |
407 | |
408 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaStop = 62; |
409 | |
410 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaPause = 63; |
411 | |
412 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaSkipForward = 64; |
413 | |
414 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaSkipBackward = 65; |
415 | |
416 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaSeekForward = 66; |
417 | |
418 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaSeekBackward = 67; |
419 | |
420 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaVolume = 68; |
421 | |
422 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_MediaVolumeMuted = 69; |
423 | |
424 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_LineEditClearButton = 70; |
425 | |
426 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogYesToAllButton = 71; |
427 | |
428 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogNoToAllButton = 72; |
429 | |
430 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogSaveAllButton = 73; |
431 | |
432 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogAbortButton = 74; |
433 | |
434 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogRetryButton = 75; |
435 | |
436 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_DialogIgnoreButton = 76; |
437 | |
438 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_RestoreDefaultsButton = 77; |
439 | |
440 | constexpr static const QStyle_StandardPixmap QStyle_StandardPixmap_SP_CustomBase = 4026531840; |
441 | |
442 | constexpr static const QAccessible_Event QAccessible_Event_SoundPlayed = 1; |
443 | |
444 | constexpr static const QAccessible_Event QAccessible_Event_Alert = 2; |
445 | |
446 | constexpr static const QAccessible_Event QAccessible_Event_ForegroundChanged = 3; |
447 | |
448 | constexpr static const QAccessible_Event = 4; |
449 | |
450 | constexpr static const QAccessible_Event = 5; |
451 | |
452 | constexpr static const QAccessible_Event = 6; |
453 | |
454 | constexpr static const QAccessible_Event = 7; |
455 | |
456 | constexpr static const QAccessible_Event QAccessible_Event_ContextHelpStart = 12; |
457 | |
458 | constexpr static const QAccessible_Event QAccessible_Event_ContextHelpEnd = 13; |
459 | |
460 | constexpr static const QAccessible_Event QAccessible_Event_DragDropStart = 14; |
461 | |
462 | constexpr static const QAccessible_Event QAccessible_Event_DragDropEnd = 15; |
463 | |
464 | constexpr static const QAccessible_Event QAccessible_Event_DialogStart = 16; |
465 | |
466 | constexpr static const QAccessible_Event QAccessible_Event_DialogEnd = 17; |
467 | |
468 | constexpr static const QAccessible_Event QAccessible_Event_ScrollingStart = 18; |
469 | |
470 | constexpr static const QAccessible_Event QAccessible_Event_ScrollingEnd = 19; |
471 | |
472 | constexpr static const QAccessible_Event QAccessible_Event_MenuCommand = 24; |
473 | |
474 | constexpr static const QAccessible_Event QAccessible_Event_ActionChanged = 257; |
475 | |
476 | constexpr static const QAccessible_Event QAccessible_Event_ActiveDescendantChanged = 258; |
477 | |
478 | constexpr static const QAccessible_Event QAccessible_Event_AttributeChanged = 259; |
479 | |
480 | constexpr static const QAccessible_Event QAccessible_Event_DocumentContentChanged = 260; |
481 | |
482 | constexpr static const QAccessible_Event QAccessible_Event_DocumentLoadComplete = 261; |
483 | |
484 | constexpr static const QAccessible_Event QAccessible_Event_DocumentLoadStopped = 262; |
485 | |
486 | constexpr static const QAccessible_Event QAccessible_Event_DocumentReload = 263; |
487 | |
488 | constexpr static const QAccessible_Event QAccessible_Event_HyperlinkEndIndexChanged = 264; |
489 | |
490 | constexpr static const QAccessible_Event QAccessible_Event_HyperlinkNumberOfAnchorsChanged = 265; |
491 | |
492 | constexpr static const QAccessible_Event QAccessible_Event_HyperlinkSelectedLinkChanged = 266; |
493 | |
494 | constexpr static const QAccessible_Event QAccessible_Event_HypertextLinkActivated = 267; |
495 | |
496 | constexpr static const QAccessible_Event QAccessible_Event_HypertextLinkSelected = 268; |
497 | |
498 | constexpr static const QAccessible_Event QAccessible_Event_HyperlinkStartIndexChanged = 269; |
499 | |
500 | constexpr static const QAccessible_Event QAccessible_Event_HypertextChanged = 270; |
501 | |
502 | constexpr static const QAccessible_Event QAccessible_Event_HypertextNLinksChanged = 271; |
503 | |
504 | constexpr static const QAccessible_Event QAccessible_Event_ObjectAttributeChanged = 272; |
505 | |
506 | constexpr static const QAccessible_Event QAccessible_Event_PageChanged = 273; |
507 | |
508 | constexpr static const QAccessible_Event QAccessible_Event_SectionChanged = 274; |
509 | |
510 | constexpr static const QAccessible_Event QAccessible_Event_TableCaptionChanged = 275; |
511 | |
512 | constexpr static const QAccessible_Event QAccessible_Event_TableColumnDescriptionChanged = 276; |
513 | |
514 | constexpr static const QAccessible_Event QAccessible_Event_TableColumnHeaderChanged = 277; |
515 | |
516 | constexpr static const QAccessible_Event QAccessible_Event_TableModelChanged = 278; |
517 | |
518 | constexpr static const QAccessible_Event QAccessible_Event_TableRowDescriptionChanged = 279; |
519 | |
520 | constexpr static const QAccessible_Event = 280; |
521 | |
522 | constexpr static const QAccessible_Event QAccessible_Event_TableSummaryChanged = 281; |
523 | |
524 | constexpr static const QAccessible_Event QAccessible_Event_TextAttributeChanged = 282; |
525 | |
526 | constexpr static const QAccessible_Event QAccessible_Event_TextCaretMoved = 283; |
527 | |
528 | constexpr static const QAccessible_Event QAccessible_Event_TextColumnChanged = 285; |
529 | |
530 | constexpr static const QAccessible_Event QAccessible_Event_TextInserted = 286; |
531 | |
532 | constexpr static const QAccessible_Event QAccessible_Event_TextRemoved = 287; |
533 | |
534 | constexpr static const QAccessible_Event QAccessible_Event_TextUpdated = 288; |
535 | |
536 | constexpr static const QAccessible_Event QAccessible_Event_TextSelectionChanged = 289; |
537 | |
538 | constexpr static const QAccessible_Event QAccessible_Event_VisibleDataChanged = 290; |
539 | |
540 | constexpr static const QAccessible_Event QAccessible_Event_ObjectCreated = 32768; |
541 | |
542 | constexpr static const QAccessible_Event QAccessible_Event_ObjectDestroyed = 32769; |
543 | |
544 | constexpr static const QAccessible_Event QAccessible_Event_ObjectShow = 32770; |
545 | |
546 | constexpr static const QAccessible_Event QAccessible_Event_ObjectHide = 32771; |
547 | |
548 | constexpr static const QAccessible_Event QAccessible_Event_ObjectReorder = 32772; |
549 | |
550 | constexpr static const QAccessible_Event QAccessible_Event_Focus = 32773; |
551 | |
552 | constexpr static const QAccessible_Event QAccessible_Event_Selection = 32774; |
553 | |
554 | constexpr static const QAccessible_Event QAccessible_Event_SelectionAdd = 32775; |
555 | |
556 | constexpr static const QAccessible_Event QAccessible_Event_SelectionRemove = 32776; |
557 | |
558 | constexpr static const QAccessible_Event QAccessible_Event_SelectionWithin = 32777; |
559 | |
560 | constexpr static const QAccessible_Event QAccessible_Event_StateChanged = 32778; |
561 | |
562 | constexpr static const QAccessible_Event QAccessible_Event_LocationChanged = 32779; |
563 | |
564 | constexpr static const QAccessible_Event QAccessible_Event_NameChanged = 32780; |
565 | |
566 | constexpr static const QAccessible_Event QAccessible_Event_DescriptionChanged = 32781; |
567 | |
568 | constexpr static const QAccessible_Event QAccessible_Event_ValueChanged = 32782; |
569 | |
570 | constexpr static const QAccessible_Event QAccessible_Event_ParentChanged = 32783; |
571 | |
572 | constexpr static const QAccessible_Event QAccessible_Event_HelpChanged = 32928; |
573 | |
574 | constexpr static const QAccessible_Event QAccessible_Event_DefaultActionChanged = 32944; |
575 | |
576 | constexpr static const QAccessible_Event QAccessible_Event_AcceleratorChanged = 32960; |
577 | |
578 | constexpr static const QAccessible_Event QAccessible_Event_InvalidEvent = 32961; |
579 | |
580 | constexpr static const QAccessible_Role QAccessible_Role_NoRole = 0; |
581 | |
582 | constexpr static const QAccessible_Role QAccessible_Role_TitleBar = 1; |
583 | |
584 | constexpr static const QAccessible_Role = 2; |
585 | |
586 | constexpr static const QAccessible_Role QAccessible_Role_ScrollBar = 3; |
587 | |
588 | constexpr static const QAccessible_Role QAccessible_Role_Grip = 4; |
589 | |
590 | constexpr static const QAccessible_Role QAccessible_Role_Sound = 5; |
591 | |
592 | constexpr static const QAccessible_Role QAccessible_Role_Cursor = 6; |
593 | |
594 | constexpr static const QAccessible_Role QAccessible_Role_Caret = 7; |
595 | |
596 | constexpr static const QAccessible_Role QAccessible_Role_AlertMessage = 8; |
597 | |
598 | constexpr static const QAccessible_Role QAccessible_Role_Window = 9; |
599 | |
600 | constexpr static const QAccessible_Role QAccessible_Role_Client = 10; |
601 | |
602 | constexpr static const QAccessible_Role = 11; |
603 | |
604 | constexpr static const QAccessible_Role = 12; |
605 | |
606 | constexpr static const QAccessible_Role QAccessible_Role_ToolTip = 13; |
607 | |
608 | constexpr static const QAccessible_Role QAccessible_Role_Application = 14; |
609 | |
610 | constexpr static const QAccessible_Role QAccessible_Role_Document = 15; |
611 | |
612 | constexpr static const QAccessible_Role QAccessible_Role_Pane = 16; |
613 | |
614 | constexpr static const QAccessible_Role QAccessible_Role_Chart = 17; |
615 | |
616 | constexpr static const QAccessible_Role QAccessible_Role_Dialog = 18; |
617 | |
618 | constexpr static const QAccessible_Role QAccessible_Role_Border = 19; |
619 | |
620 | constexpr static const QAccessible_Role QAccessible_Role_Grouping = 20; |
621 | |
622 | constexpr static const QAccessible_Role QAccessible_Role_Separator = 21; |
623 | |
624 | constexpr static const QAccessible_Role QAccessible_Role_ToolBar = 22; |
625 | |
626 | constexpr static const QAccessible_Role QAccessible_Role_StatusBar = 23; |
627 | |
628 | constexpr static const QAccessible_Role QAccessible_Role_Table = 24; |
629 | |
630 | constexpr static const QAccessible_Role QAccessible_Role_ColumnHeader = 25; |
631 | |
632 | constexpr static const QAccessible_Role = 26; |
633 | |
634 | constexpr static const QAccessible_Role QAccessible_Role_Column = 27; |
635 | |
636 | constexpr static const QAccessible_Role QAccessible_Role_Row = 28; |
637 | |
638 | constexpr static const QAccessible_Role QAccessible_Role_Cell = 29; |
639 | |
640 | constexpr static const QAccessible_Role QAccessible_Role_Link = 30; |
641 | |
642 | constexpr static const QAccessible_Role QAccessible_Role_HelpBalloon = 31; |
643 | |
644 | constexpr static const QAccessible_Role QAccessible_Role_Assistant = 32; |
645 | |
646 | constexpr static const QAccessible_Role QAccessible_Role_List = 33; |
647 | |
648 | constexpr static const QAccessible_Role QAccessible_Role_ListItem = 34; |
649 | |
650 | constexpr static const QAccessible_Role QAccessible_Role_Tree = 35; |
651 | |
652 | constexpr static const QAccessible_Role QAccessible_Role_TreeItem = 36; |
653 | |
654 | constexpr static const QAccessible_Role QAccessible_Role_PageTab = 37; |
655 | |
656 | constexpr static const QAccessible_Role QAccessible_Role_PropertyPage = 38; |
657 | |
658 | constexpr static const QAccessible_Role QAccessible_Role_Indicator = 39; |
659 | |
660 | constexpr static const QAccessible_Role QAccessible_Role_Graphic = 40; |
661 | |
662 | constexpr static const QAccessible_Role QAccessible_Role_StaticText = 41; |
663 | |
664 | constexpr static const QAccessible_Role QAccessible_Role_EditableText = 42; |
665 | |
666 | constexpr static const QAccessible_Role QAccessible_Role_Button = 43; |
667 | |
668 | constexpr static const QAccessible_Role QAccessible_Role_PushButton = 43; |
669 | |
670 | constexpr static const QAccessible_Role QAccessible_Role_CheckBox = 44; |
671 | |
672 | constexpr static const QAccessible_Role QAccessible_Role_RadioButton = 45; |
673 | |
674 | constexpr static const QAccessible_Role QAccessible_Role_ComboBox = 46; |
675 | |
676 | constexpr static const QAccessible_Role QAccessible_Role_ProgressBar = 48; |
677 | |
678 | constexpr static const QAccessible_Role QAccessible_Role_Dial = 49; |
679 | |
680 | constexpr static const QAccessible_Role QAccessible_Role_HotkeyField = 50; |
681 | |
682 | constexpr static const QAccessible_Role QAccessible_Role_Slider = 51; |
683 | |
684 | constexpr static const QAccessible_Role QAccessible_Role_SpinBox = 52; |
685 | |
686 | constexpr static const QAccessible_Role QAccessible_Role_Canvas = 53; |
687 | |
688 | constexpr static const QAccessible_Role QAccessible_Role_Animation = 54; |
689 | |
690 | constexpr static const QAccessible_Role QAccessible_Role_Equation = 55; |
691 | |
692 | constexpr static const QAccessible_Role QAccessible_Role_ButtonDropDown = 56; |
693 | |
694 | constexpr static const QAccessible_Role = 57; |
695 | |
696 | constexpr static const QAccessible_Role QAccessible_Role_ButtonDropGrid = 58; |
697 | |
698 | constexpr static const QAccessible_Role QAccessible_Role_Whitespace = 59; |
699 | |
700 | constexpr static const QAccessible_Role QAccessible_Role_PageTabList = 60; |
701 | |
702 | constexpr static const QAccessible_Role QAccessible_Role_Clock = 61; |
703 | |
704 | constexpr static const QAccessible_Role QAccessible_Role_Splitter = 62; |
705 | |
706 | constexpr static const QAccessible_Role QAccessible_Role_LayeredPane = 128; |
707 | |
708 | constexpr static const QAccessible_Role QAccessible_Role_Terminal = 129; |
709 | |
710 | constexpr static const QAccessible_Role QAccessible_Role_Desktop = 130; |
711 | |
712 | constexpr static const QAccessible_Role QAccessible_Role_Paragraph = 131; |
713 | |
714 | constexpr static const QAccessible_Role QAccessible_Role_WebDocument = 132; |
715 | |
716 | constexpr static const QAccessible_Role QAccessible_Role_Section = 133; |
717 | |
718 | constexpr static const QAccessible_Role QAccessible_Role_Notification = 134; |
719 | |
720 | constexpr static const QAccessible_Role QAccessible_Role_ColorChooser = 1028; |
721 | |
722 | constexpr static const QAccessible_Role = 1038; |
723 | |
724 | constexpr static const QAccessible_Role QAccessible_Role_Form = 1040; |
725 | |
726 | constexpr static const QAccessible_Role QAccessible_Role_Heading = 1044; |
727 | |
728 | constexpr static const QAccessible_Role QAccessible_Role_Note = 1051; |
729 | |
730 | constexpr static const QAccessible_Role QAccessible_Role_ComplementaryContent = 1068; |
731 | |
732 | constexpr static const QAccessible_Role QAccessible_Role_UserRole = 65535; |
733 | |
734 | constexpr static const QAccessible_Text QAccessible_Text_Name = 0; |
735 | |
736 | constexpr static const QAccessible_Text QAccessible_Text_Description = 1; |
737 | |
738 | constexpr static const QAccessible_Text QAccessible_Text_Value = 2; |
739 | |
740 | constexpr static const QAccessible_Text QAccessible_Text_Help = 3; |
741 | |
742 | constexpr static const QAccessible_Text QAccessible_Text_Accelerator = 4; |
743 | |
744 | constexpr static const QAccessible_Text QAccessible_Text_DebugDescription = 5; |
745 | |
746 | constexpr static const QAccessible_Text QAccessible_Text_UserText = 65535; |
747 | |
748 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_NoModifier = 0; |
749 | |
750 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_ShiftModifier = 33554432; |
751 | |
752 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_ControlModifier = 67108864; |
753 | |
754 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_AltModifier = 134217728; |
755 | |
756 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_MetaModifier = 268435456; |
757 | |
758 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_KeypadModifier = 536870912; |
759 | |
760 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_GroupSwitchModifier = 1073741824; |
761 | |
762 | constexpr static const Qt_KeyboardModifier Qt_KeyboardModifier_KeyboardModifierMask = 4261412864; |
763 | |
764 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignLeft = 1; |
765 | |
766 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignLeading = 1; |
767 | |
768 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignRight = 2; |
769 | |
770 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignTrailing = 2; |
771 | |
772 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignHCenter = 4; |
773 | |
774 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignJustify = 8; |
775 | |
776 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignAbsolute = 16; |
777 | |
778 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignHorizontal_Mask = 31; |
779 | |
780 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignTop = 32; |
781 | |
782 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignBottom = 64; |
783 | |
784 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignVCenter = 128; |
785 | |
786 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignBaseline = 256; |
787 | |
788 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignVertical_Mask = 480; |
789 | |
790 | constexpr static const Qt_AlignmentFlag Qt_AlignmentFlag_AlignCenter = 132; |
791 | |
792 | constexpr static const Qt_TextFlag Qt_TextFlag_TextSingleLine = 256; |
793 | |
794 | constexpr static const Qt_TextFlag Qt_TextFlag_TextDontClip = 512; |
795 | |
796 | constexpr static const Qt_TextFlag Qt_TextFlag_TextExpandTabs = 1024; |
797 | |
798 | constexpr static const Qt_TextFlag Qt_TextFlag_TextShowMnemonic = 2048; |
799 | |
800 | constexpr static const Qt_TextFlag Qt_TextFlag_TextWordWrap = 4096; |
801 | |
802 | constexpr static const Qt_TextFlag Qt_TextFlag_TextWrapAnywhere = 8192; |
803 | |
804 | constexpr static const Qt_TextFlag Qt_TextFlag_TextDontPrint = 16384; |
805 | |
806 | constexpr static const Qt_TextFlag Qt_TextFlag_TextIncludeTrailingSpaces = 134217728; |
807 | |
808 | constexpr static const Qt_TextFlag Qt_TextFlag_TextHideMnemonic = 32768; |
809 | |
810 | constexpr static const Qt_TextFlag Qt_TextFlag_TextJustificationForced = 65536; |
811 | |
812 | constexpr static const Qt_TextFlag Qt_TextFlag_TextForceLeftToRight = 131072; |
813 | |
814 | constexpr static const Qt_TextFlag Qt_TextFlag_TextForceRightToLeft = 262144; |
815 | |
816 | constexpr static const Qt_TextFlag Qt_TextFlag_TextLongestVariant = 524288; |
817 | |
818 | constexpr static const Qt_TextFlag Qt_TextFlag_TextBypassShaping = 1048576; |
819 | |
820 | constexpr static const Qt_Key Qt_Key_Key_Escape = 16777216; |
821 | |
822 | constexpr static const Qt_Key Qt_Key_Key_Tab = 16777217; |
823 | |
824 | constexpr static const Qt_Key Qt_Key_Key_Backtab = 16777218; |
825 | |
826 | constexpr static const Qt_Key Qt_Key_Key_Backspace = 16777219; |
827 | |
828 | constexpr static const Qt_Key Qt_Key_Key_Return = 16777220; |
829 | |
830 | constexpr static const Qt_Key Qt_Key_Key_Enter = 16777221; |
831 | |
832 | constexpr static const Qt_Key Qt_Key_Key_Insert = 16777222; |
833 | |
834 | constexpr static const Qt_Key Qt_Key_Key_Delete = 16777223; |
835 | |
836 | constexpr static const Qt_Key Qt_Key_Key_Pause = 16777224; |
837 | |
838 | constexpr static const Qt_Key Qt_Key_Key_Print = 16777225; |
839 | |
840 | constexpr static const Qt_Key Qt_Key_Key_SysReq = 16777226; |
841 | |
842 | constexpr static const Qt_Key Qt_Key_Key_Clear = 16777227; |
843 | |
844 | constexpr static const Qt_Key Qt_Key_Key_Home = 16777232; |
845 | |
846 | constexpr static const Qt_Key Qt_Key_Key_End = 16777233; |
847 | |
848 | constexpr static const Qt_Key Qt_Key_Key_Left = 16777234; |
849 | |
850 | constexpr static const Qt_Key Qt_Key_Key_Up = 16777235; |
851 | |
852 | constexpr static const Qt_Key Qt_Key_Key_Right = 16777236; |
853 | |
854 | constexpr static const Qt_Key Qt_Key_Key_Down = 16777237; |
855 | |
856 | constexpr static const Qt_Key Qt_Key_Key_PageUp = 16777238; |
857 | |
858 | constexpr static const Qt_Key Qt_Key_Key_PageDown = 16777239; |
859 | |
860 | constexpr static const Qt_Key Qt_Key_Key_Shift = 16777248; |
861 | |
862 | constexpr static const Qt_Key Qt_Key_Key_Control = 16777249; |
863 | |
864 | constexpr static const Qt_Key Qt_Key_Key_Meta = 16777250; |
865 | |
866 | constexpr static const Qt_Key Qt_Key_Key_Alt = 16777251; |
867 | |
868 | constexpr static const Qt_Key Qt_Key_Key_CapsLock = 16777252; |
869 | |
870 | constexpr static const Qt_Key Qt_Key_Key_NumLock = 16777253; |
871 | |
872 | constexpr static const Qt_Key Qt_Key_Key_ScrollLock = 16777254; |
873 | |
874 | constexpr static const Qt_Key Qt_Key_Key_F1 = 16777264; |
875 | |
876 | constexpr static const Qt_Key Qt_Key_Key_F2 = 16777265; |
877 | |
878 | constexpr static const Qt_Key Qt_Key_Key_F3 = 16777266; |
879 | |
880 | constexpr static const Qt_Key Qt_Key_Key_F4 = 16777267; |
881 | |
882 | constexpr static const Qt_Key Qt_Key_Key_F5 = 16777268; |
883 | |
884 | constexpr static const Qt_Key Qt_Key_Key_F6 = 16777269; |
885 | |
886 | constexpr static const Qt_Key Qt_Key_Key_F7 = 16777270; |
887 | |
888 | constexpr static const Qt_Key Qt_Key_Key_F8 = 16777271; |
889 | |
890 | constexpr static const Qt_Key Qt_Key_Key_F9 = 16777272; |
891 | |
892 | constexpr static const Qt_Key Qt_Key_Key_F10 = 16777273; |
893 | |
894 | constexpr static const Qt_Key Qt_Key_Key_F11 = 16777274; |
895 | |
896 | constexpr static const Qt_Key Qt_Key_Key_F12 = 16777275; |
897 | |
898 | constexpr static const Qt_Key Qt_Key_Key_F13 = 16777276; |
899 | |
900 | constexpr static const Qt_Key Qt_Key_Key_F14 = 16777277; |
901 | |
902 | constexpr static const Qt_Key Qt_Key_Key_F15 = 16777278; |
903 | |
904 | constexpr static const Qt_Key Qt_Key_Key_F16 = 16777279; |
905 | |
906 | constexpr static const Qt_Key Qt_Key_Key_F17 = 16777280; |
907 | |
908 | constexpr static const Qt_Key Qt_Key_Key_F18 = 16777281; |
909 | |
910 | constexpr static const Qt_Key Qt_Key_Key_F19 = 16777282; |
911 | |
912 | constexpr static const Qt_Key Qt_Key_Key_F20 = 16777283; |
913 | |
914 | constexpr static const Qt_Key Qt_Key_Key_F21 = 16777284; |
915 | |
916 | constexpr static const Qt_Key Qt_Key_Key_F22 = 16777285; |
917 | |
918 | constexpr static const Qt_Key Qt_Key_Key_F23 = 16777286; |
919 | |
920 | constexpr static const Qt_Key Qt_Key_Key_F24 = 16777287; |
921 | |
922 | constexpr static const Qt_Key Qt_Key_Key_F25 = 16777288; |
923 | |
924 | constexpr static const Qt_Key Qt_Key_Key_F26 = 16777289; |
925 | |
926 | constexpr static const Qt_Key Qt_Key_Key_F27 = 16777290; |
927 | |
928 | constexpr static const Qt_Key Qt_Key_Key_F28 = 16777291; |
929 | |
930 | constexpr static const Qt_Key Qt_Key_Key_F29 = 16777292; |
931 | |
932 | constexpr static const Qt_Key Qt_Key_Key_F30 = 16777293; |
933 | |
934 | constexpr static const Qt_Key Qt_Key_Key_F31 = 16777294; |
935 | |
936 | constexpr static const Qt_Key Qt_Key_Key_F32 = 16777295; |
937 | |
938 | constexpr static const Qt_Key Qt_Key_Key_F33 = 16777296; |
939 | |
940 | constexpr static const Qt_Key Qt_Key_Key_F34 = 16777297; |
941 | |
942 | constexpr static const Qt_Key Qt_Key_Key_F35 = 16777298; |
943 | |
944 | constexpr static const Qt_Key Qt_Key_Key_Super_L = 16777299; |
945 | |
946 | constexpr static const Qt_Key Qt_Key_Key_Super_R = 16777300; |
947 | |
948 | constexpr static const Qt_Key = 16777301; |
949 | |
950 | constexpr static const Qt_Key Qt_Key_Key_Hyper_L = 16777302; |
951 | |
952 | constexpr static const Qt_Key Qt_Key_Key_Hyper_R = 16777303; |
953 | |
954 | constexpr static const Qt_Key Qt_Key_Key_Help = 16777304; |
955 | |
956 | constexpr static const Qt_Key Qt_Key_Key_Direction_L = 16777305; |
957 | |
958 | constexpr static const Qt_Key Qt_Key_Key_Direction_R = 16777312; |
959 | |
960 | constexpr static const Qt_Key Qt_Key_Key_Space = 32; |
961 | |
962 | constexpr static const Qt_Key Qt_Key_Key_Any = 32; |
963 | |
964 | constexpr static const Qt_Key Qt_Key_Key_Exclam = 33; |
965 | |
966 | constexpr static const Qt_Key Qt_Key_Key_QuoteDbl = 34; |
967 | |
968 | constexpr static const Qt_Key Qt_Key_Key_NumberSign = 35; |
969 | |
970 | constexpr static const Qt_Key Qt_Key_Key_Dollar = 36; |
971 | |
972 | constexpr static const Qt_Key Qt_Key_Key_Percent = 37; |
973 | |
974 | constexpr static const Qt_Key Qt_Key_Key_Ampersand = 38; |
975 | |
976 | constexpr static const Qt_Key Qt_Key_Key_Apostrophe = 39; |
977 | |
978 | constexpr static const Qt_Key Qt_Key_Key_ParenLeft = 40; |
979 | |
980 | constexpr static const Qt_Key Qt_Key_Key_ParenRight = 41; |
981 | |
982 | constexpr static const Qt_Key Qt_Key_Key_Asterisk = 42; |
983 | |
984 | constexpr static const Qt_Key Qt_Key_Key_Plus = 43; |
985 | |
986 | constexpr static const Qt_Key Qt_Key_Key_Comma = 44; |
987 | |
988 | constexpr static const Qt_Key Qt_Key_Key_Minus = 45; |
989 | |
990 | constexpr static const Qt_Key Qt_Key_Key_Period = 46; |
991 | |
992 | constexpr static const Qt_Key Qt_Key_Key_Slash = 47; |
993 | |
994 | constexpr static const Qt_Key Qt_Key_Key_0 = 48; |
995 | |
996 | constexpr static const Qt_Key Qt_Key_Key_1 = 49; |
997 | |
998 | constexpr static const Qt_Key Qt_Key_Key_2 = 50; |
999 | |
1000 | constexpr static const Qt_Key Qt_Key_Key_3 = 51; |
1001 | |
1002 | constexpr static const Qt_Key Qt_Key_Key_4 = 52; |
1003 | |
1004 | constexpr static const Qt_Key Qt_Key_Key_5 = 53; |
1005 | |
1006 | constexpr static const Qt_Key Qt_Key_Key_6 = 54; |
1007 | |
1008 | constexpr static const Qt_Key Qt_Key_Key_7 = 55; |
1009 | |
1010 | constexpr static const Qt_Key Qt_Key_Key_8 = 56; |
1011 | |
1012 | constexpr static const Qt_Key Qt_Key_Key_9 = 57; |
1013 | |
1014 | constexpr static const Qt_Key Qt_Key_Key_Colon = 58; |
1015 | |
1016 | constexpr static const Qt_Key Qt_Key_Key_Semicolon = 59; |
1017 | |
1018 | constexpr static const Qt_Key Qt_Key_Key_Less = 60; |
1019 | |
1020 | constexpr static const Qt_Key Qt_Key_Key_Equal = 61; |
1021 | |
1022 | constexpr static const Qt_Key Qt_Key_Key_Greater = 62; |
1023 | |
1024 | constexpr static const Qt_Key Qt_Key_Key_Question = 63; |
1025 | |
1026 | constexpr static const Qt_Key Qt_Key_Key_At = 64; |
1027 | |
1028 | constexpr static const Qt_Key Qt_Key_Key_A = 65; |
1029 | |
1030 | constexpr static const Qt_Key Qt_Key_Key_B = 66; |
1031 | |
1032 | constexpr static const Qt_Key Qt_Key_Key_C = 67; |
1033 | |
1034 | constexpr static const Qt_Key Qt_Key_Key_D = 68; |
1035 | |
1036 | constexpr static const Qt_Key Qt_Key_Key_E = 69; |
1037 | |
1038 | constexpr static const Qt_Key Qt_Key_Key_F = 70; |
1039 | |
1040 | constexpr static const Qt_Key Qt_Key_Key_G = 71; |
1041 | |
1042 | constexpr static const Qt_Key Qt_Key_Key_H = 72; |
1043 | |
1044 | constexpr static const Qt_Key Qt_Key_Key_I = 73; |
1045 | |
1046 | constexpr static const Qt_Key Qt_Key_Key_J = 74; |
1047 | |
1048 | constexpr static const Qt_Key Qt_Key_Key_K = 75; |
1049 | |
1050 | constexpr static const Qt_Key Qt_Key_Key_L = 76; |
1051 | |
1052 | constexpr static const Qt_Key Qt_Key_Key_M = 77; |
1053 | |
1054 | constexpr static const Qt_Key Qt_Key_Key_N = 78; |
1055 | |
1056 | constexpr static const Qt_Key Qt_Key_Key_O = 79; |
1057 | |
1058 | constexpr static const Qt_Key Qt_Key_Key_P = 80; |
1059 | |
1060 | constexpr static const Qt_Key Qt_Key_Key_Q = 81; |
1061 | |
1062 | constexpr static const Qt_Key Qt_Key_Key_R = 82; |
1063 | |
1064 | constexpr static const Qt_Key Qt_Key_Key_S = 83; |
1065 | |
1066 | constexpr static const Qt_Key Qt_Key_Key_T = 84; |
1067 | |
1068 | constexpr static const Qt_Key Qt_Key_Key_U = 85; |
1069 | |
1070 | constexpr static const Qt_Key Qt_Key_Key_V = 86; |
1071 | |
1072 | constexpr static const Qt_Key Qt_Key_Key_W = 87; |
1073 | |
1074 | constexpr static const Qt_Key Qt_Key_Key_X = 88; |
1075 | |
1076 | constexpr static const Qt_Key Qt_Key_Key_Y = 89; |
1077 | |
1078 | constexpr static const Qt_Key Qt_Key_Key_Z = 90; |
1079 | |
1080 | constexpr static const Qt_Key Qt_Key_Key_BracketLeft = 91; |
1081 | |
1082 | constexpr static const Qt_Key Qt_Key_Key_Backslash = 92; |
1083 | |
1084 | constexpr static const Qt_Key Qt_Key_Key_BracketRight = 93; |
1085 | |
1086 | constexpr static const Qt_Key Qt_Key_Key_AsciiCircum = 94; |
1087 | |
1088 | constexpr static const Qt_Key Qt_Key_Key_Underscore = 95; |
1089 | |
1090 | constexpr static const Qt_Key Qt_Key_Key_QuoteLeft = 96; |
1091 | |
1092 | constexpr static const Qt_Key Qt_Key_Key_BraceLeft = 123; |
1093 | |
1094 | constexpr static const Qt_Key Qt_Key_Key_Bar = 124; |
1095 | |
1096 | constexpr static const Qt_Key Qt_Key_Key_BraceRight = 125; |
1097 | |
1098 | constexpr static const Qt_Key Qt_Key_Key_AsciiTilde = 126; |
1099 | |
1100 | constexpr static const Qt_Key Qt_Key_Key_nobreakspace = 160; |
1101 | |
1102 | constexpr static const Qt_Key Qt_Key_Key_exclamdown = 161; |
1103 | |
1104 | constexpr static const Qt_Key Qt_Key_Key_cent = 162; |
1105 | |
1106 | constexpr static const Qt_Key Qt_Key_Key_sterling = 163; |
1107 | |
1108 | constexpr static const Qt_Key Qt_Key_Key_currency = 164; |
1109 | |
1110 | constexpr static const Qt_Key Qt_Key_Key_yen = 165; |
1111 | |
1112 | constexpr static const Qt_Key Qt_Key_Key_brokenbar = 166; |
1113 | |
1114 | constexpr static const Qt_Key Qt_Key_Key_section = 167; |
1115 | |
1116 | constexpr static const Qt_Key Qt_Key_Key_diaeresis = 168; |
1117 | |
1118 | constexpr static const Qt_Key Qt_Key_Key_copyright = 169; |
1119 | |
1120 | constexpr static const Qt_Key Qt_Key_Key_ordfeminine = 170; |
1121 | |
1122 | constexpr static const Qt_Key Qt_Key_Key_guillemotleft = 171; |
1123 | |
1124 | constexpr static const Qt_Key Qt_Key_Key_notsign = 172; |
1125 | |
1126 | constexpr static const Qt_Key Qt_Key_Key_hyphen = 173; |
1127 | |
1128 | constexpr static const Qt_Key Qt_Key_Key_registered = 174; |
1129 | |
1130 | constexpr static const Qt_Key Qt_Key_Key_macron = 175; |
1131 | |
1132 | constexpr static const Qt_Key Qt_Key_Key_degree = 176; |
1133 | |
1134 | constexpr static const Qt_Key Qt_Key_Key_plusminus = 177; |
1135 | |
1136 | constexpr static const Qt_Key Qt_Key_Key_twosuperior = 178; |
1137 | |
1138 | constexpr static const Qt_Key Qt_Key_Key_threesuperior = 179; |
1139 | |
1140 | constexpr static const Qt_Key Qt_Key_Key_acute = 180; |
1141 | |
1142 | constexpr static const Qt_Key Qt_Key_Key_mu = 181; |
1143 | |
1144 | constexpr static const Qt_Key Qt_Key_Key_paragraph = 182; |
1145 | |
1146 | constexpr static const Qt_Key Qt_Key_Key_periodcentered = 183; |
1147 | |
1148 | constexpr static const Qt_Key Qt_Key_Key_cedilla = 184; |
1149 | |
1150 | constexpr static const Qt_Key Qt_Key_Key_onesuperior = 185; |
1151 | |
1152 | constexpr static const Qt_Key Qt_Key_Key_masculine = 186; |
1153 | |
1154 | constexpr static const Qt_Key Qt_Key_Key_guillemotright = 187; |
1155 | |
1156 | constexpr static const Qt_Key Qt_Key_Key_onequarter = 188; |
1157 | |
1158 | constexpr static const Qt_Key Qt_Key_Key_onehalf = 189; |
1159 | |
1160 | constexpr static const Qt_Key Qt_Key_Key_threequarters = 190; |
1161 | |
1162 | constexpr static const Qt_Key Qt_Key_Key_questiondown = 191; |
1163 | |
1164 | constexpr static const Qt_Key Qt_Key_Key_Agrave = 192; |
1165 | |
1166 | constexpr static const Qt_Key Qt_Key_Key_Aacute = 193; |
1167 | |
1168 | constexpr static const Qt_Key Qt_Key_Key_Acircumflex = 194; |
1169 | |
1170 | constexpr static const Qt_Key Qt_Key_Key_Atilde = 195; |
1171 | |
1172 | constexpr static const Qt_Key Qt_Key_Key_Adiaeresis = 196; |
1173 | |
1174 | constexpr static const Qt_Key Qt_Key_Key_Aring = 197; |
1175 | |
1176 | constexpr static const Qt_Key Qt_Key_Key_AE = 198; |
1177 | |
1178 | constexpr static const Qt_Key Qt_Key_Key_Ccedilla = 199; |
1179 | |
1180 | constexpr static const Qt_Key Qt_Key_Key_Egrave = 200; |
1181 | |
1182 | constexpr static const Qt_Key Qt_Key_Key_Eacute = 201; |
1183 | |
1184 | constexpr static const Qt_Key Qt_Key_Key_Ecircumflex = 202; |
1185 | |
1186 | constexpr static const Qt_Key Qt_Key_Key_Ediaeresis = 203; |
1187 | |
1188 | constexpr static const Qt_Key Qt_Key_Key_Igrave = 204; |
1189 | |
1190 | constexpr static const Qt_Key Qt_Key_Key_Iacute = 205; |
1191 | |
1192 | constexpr static const Qt_Key Qt_Key_Key_Icircumflex = 206; |
1193 | |
1194 | constexpr static const Qt_Key Qt_Key_Key_Idiaeresis = 207; |
1195 | |
1196 | constexpr static const Qt_Key Qt_Key_Key_ETH = 208; |
1197 | |
1198 | constexpr static const Qt_Key Qt_Key_Key_Ntilde = 209; |
1199 | |
1200 | constexpr static const Qt_Key Qt_Key_Key_Ograve = 210; |
1201 | |
1202 | constexpr static const Qt_Key Qt_Key_Key_Oacute = 211; |
1203 | |
1204 | constexpr static const Qt_Key Qt_Key_Key_Ocircumflex = 212; |
1205 | |
1206 | constexpr static const Qt_Key Qt_Key_Key_Otilde = 213; |
1207 | |
1208 | constexpr static const Qt_Key Qt_Key_Key_Odiaeresis = 214; |
1209 | |
1210 | constexpr static const Qt_Key Qt_Key_Key_multiply = 215; |
1211 | |
1212 | constexpr static const Qt_Key Qt_Key_Key_Ooblique = 216; |
1213 | |
1214 | constexpr static const Qt_Key Qt_Key_Key_Ugrave = 217; |
1215 | |
1216 | constexpr static const Qt_Key Qt_Key_Key_Uacute = 218; |
1217 | |
1218 | constexpr static const Qt_Key Qt_Key_Key_Ucircumflex = 219; |
1219 | |
1220 | constexpr static const Qt_Key Qt_Key_Key_Udiaeresis = 220; |
1221 | |
1222 | constexpr static const Qt_Key Qt_Key_Key_Yacute = 221; |
1223 | |
1224 | constexpr static const Qt_Key Qt_Key_Key_THORN = 222; |
1225 | |
1226 | constexpr static const Qt_Key Qt_Key_Key_ssharp = 223; |
1227 | |
1228 | constexpr static const Qt_Key Qt_Key_Key_division = 247; |
1229 | |
1230 | constexpr static const Qt_Key Qt_Key_Key_ydiaeresis = 255; |
1231 | |
1232 | constexpr static const Qt_Key Qt_Key_Key_AltGr = 16781571; |
1233 | |
1234 | constexpr static const Qt_Key Qt_Key_Key_Multi_key = 16781600; |
1235 | |
1236 | constexpr static const Qt_Key Qt_Key_Key_Codeinput = 16781623; |
1237 | |
1238 | constexpr static const Qt_Key Qt_Key_Key_SingleCandidate = 16781628; |
1239 | |
1240 | constexpr static const Qt_Key Qt_Key_Key_MultipleCandidate = 16781629; |
1241 | |
1242 | constexpr static const Qt_Key Qt_Key_Key_PreviousCandidate = 16781630; |
1243 | |
1244 | constexpr static const Qt_Key Qt_Key_Key_Mode_switch = 16781694; |
1245 | |
1246 | constexpr static const Qt_Key Qt_Key_Key_Kanji = 16781601; |
1247 | |
1248 | constexpr static const Qt_Key Qt_Key_Key_Muhenkan = 16781602; |
1249 | |
1250 | constexpr static const Qt_Key Qt_Key_Key_Henkan = 16781603; |
1251 | |
1252 | constexpr static const Qt_Key Qt_Key_Key_Romaji = 16781604; |
1253 | |
1254 | constexpr static const Qt_Key Qt_Key_Key_Hiragana = 16781605; |
1255 | |
1256 | constexpr static const Qt_Key Qt_Key_Key_Katakana = 16781606; |
1257 | |
1258 | constexpr static const Qt_Key Qt_Key_Key_Hiragana_Katakana = 16781607; |
1259 | |
1260 | constexpr static const Qt_Key Qt_Key_Key_Zenkaku = 16781608; |
1261 | |
1262 | constexpr static const Qt_Key Qt_Key_Key_Hankaku = 16781609; |
1263 | |
1264 | constexpr static const Qt_Key Qt_Key_Key_Zenkaku_Hankaku = 16781610; |
1265 | |
1266 | constexpr static const Qt_Key Qt_Key_Key_Touroku = 16781611; |
1267 | |
1268 | constexpr static const Qt_Key Qt_Key_Key_Massyo = 16781612; |
1269 | |
1270 | constexpr static const Qt_Key Qt_Key_Key_Kana_Lock = 16781613; |
1271 | |
1272 | constexpr static const Qt_Key Qt_Key_Key_Kana_Shift = 16781614; |
1273 | |
1274 | constexpr static const Qt_Key Qt_Key_Key_Eisu_Shift = 16781615; |
1275 | |
1276 | constexpr static const Qt_Key Qt_Key_Key_Eisu_toggle = 16781616; |
1277 | |
1278 | constexpr static const Qt_Key Qt_Key_Key_Hangul = 16781617; |
1279 | |
1280 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Start = 16781618; |
1281 | |
1282 | constexpr static const Qt_Key Qt_Key_Key_Hangul_End = 16781619; |
1283 | |
1284 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Hanja = 16781620; |
1285 | |
1286 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Jamo = 16781621; |
1287 | |
1288 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Romaja = 16781622; |
1289 | |
1290 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Jeonja = 16781624; |
1291 | |
1292 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Banja = 16781625; |
1293 | |
1294 | constexpr static const Qt_Key Qt_Key_Key_Hangul_PreHanja = 16781626; |
1295 | |
1296 | constexpr static const Qt_Key Qt_Key_Key_Hangul_PostHanja = 16781627; |
1297 | |
1298 | constexpr static const Qt_Key Qt_Key_Key_Hangul_Special = 16781631; |
1299 | |
1300 | constexpr static const Qt_Key Qt_Key_Key_Dead_Grave = 16781904; |
1301 | |
1302 | constexpr static const Qt_Key Qt_Key_Key_Dead_Acute = 16781905; |
1303 | |
1304 | constexpr static const Qt_Key Qt_Key_Key_Dead_Circumflex = 16781906; |
1305 | |
1306 | constexpr static const Qt_Key Qt_Key_Key_Dead_Tilde = 16781907; |
1307 | |
1308 | constexpr static const Qt_Key Qt_Key_Key_Dead_Macron = 16781908; |
1309 | |
1310 | constexpr static const Qt_Key Qt_Key_Key_Dead_Breve = 16781909; |
1311 | |
1312 | constexpr static const Qt_Key Qt_Key_Key_Dead_Abovedot = 16781910; |
1313 | |
1314 | constexpr static const Qt_Key Qt_Key_Key_Dead_Diaeresis = 16781911; |
1315 | |
1316 | constexpr static const Qt_Key Qt_Key_Key_Dead_Abovering = 16781912; |
1317 | |
1318 | constexpr static const Qt_Key Qt_Key_Key_Dead_Doubleacute = 16781913; |
1319 | |
1320 | constexpr static const Qt_Key Qt_Key_Key_Dead_Caron = 16781914; |
1321 | |
1322 | constexpr static const Qt_Key Qt_Key_Key_Dead_Cedilla = 16781915; |
1323 | |
1324 | constexpr static const Qt_Key Qt_Key_Key_Dead_Ogonek = 16781916; |
1325 | |
1326 | constexpr static const Qt_Key Qt_Key_Key_Dead_Iota = 16781917; |
1327 | |
1328 | constexpr static const Qt_Key Qt_Key_Key_Dead_Voiced_Sound = 16781918; |
1329 | |
1330 | constexpr static const Qt_Key Qt_Key_Key_Dead_Semivoiced_Sound = 16781919; |
1331 | |
1332 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowdot = 16781920; |
1333 | |
1334 | constexpr static const Qt_Key Qt_Key_Key_Dead_Hook = 16781921; |
1335 | |
1336 | constexpr static const Qt_Key Qt_Key_Key_Dead_Horn = 16781922; |
1337 | |
1338 | constexpr static const Qt_Key Qt_Key_Key_Dead_Stroke = 16781923; |
1339 | |
1340 | constexpr static const Qt_Key Qt_Key_Key_Dead_Abovecomma = 16781924; |
1341 | |
1342 | constexpr static const Qt_Key Qt_Key_Key_Dead_Abovereversedcomma = 16781925; |
1343 | |
1344 | constexpr static const Qt_Key Qt_Key_Key_Dead_Doublegrave = 16781926; |
1345 | |
1346 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowring = 16781927; |
1347 | |
1348 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowmacron = 16781928; |
1349 | |
1350 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowcircumflex = 16781929; |
1351 | |
1352 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowtilde = 16781930; |
1353 | |
1354 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowbreve = 16781931; |
1355 | |
1356 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowdiaeresis = 16781932; |
1357 | |
1358 | constexpr static const Qt_Key Qt_Key_Key_Dead_Invertedbreve = 16781933; |
1359 | |
1360 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowcomma = 16781934; |
1361 | |
1362 | constexpr static const Qt_Key Qt_Key_Key_Dead_Currency = 16781935; |
1363 | |
1364 | constexpr static const Qt_Key Qt_Key_Key_Dead_a = 16781952; |
1365 | |
1366 | constexpr static const Qt_Key Qt_Key_Key_Dead_A = 16781953; |
1367 | |
1368 | constexpr static const Qt_Key Qt_Key_Key_Dead_e = 16781954; |
1369 | |
1370 | constexpr static const Qt_Key Qt_Key_Key_Dead_E = 16781955; |
1371 | |
1372 | constexpr static const Qt_Key Qt_Key_Key_Dead_i = 16781956; |
1373 | |
1374 | constexpr static const Qt_Key Qt_Key_Key_Dead_I = 16781957; |
1375 | |
1376 | constexpr static const Qt_Key Qt_Key_Key_Dead_o = 16781958; |
1377 | |
1378 | constexpr static const Qt_Key Qt_Key_Key_Dead_O = 16781959; |
1379 | |
1380 | constexpr static const Qt_Key Qt_Key_Key_Dead_u = 16781960; |
1381 | |
1382 | constexpr static const Qt_Key Qt_Key_Key_Dead_U = 16781961; |
1383 | |
1384 | constexpr static const Qt_Key Qt_Key_Key_Dead_Small_Schwa = 16781962; |
1385 | |
1386 | constexpr static const Qt_Key Qt_Key_Key_Dead_Capital_Schwa = 16781963; |
1387 | |
1388 | constexpr static const Qt_Key Qt_Key_Key_Dead_Greek = 16781964; |
1389 | |
1390 | constexpr static const Qt_Key Qt_Key_Key_Dead_Lowline = 16781968; |
1391 | |
1392 | constexpr static const Qt_Key Qt_Key_Key_Dead_Aboveverticalline = 16781969; |
1393 | |
1394 | constexpr static const Qt_Key Qt_Key_Key_Dead_Belowverticalline = 16781970; |
1395 | |
1396 | constexpr static const Qt_Key Qt_Key_Key_Dead_Longsolidusoverlay = 16781971; |
1397 | |
1398 | constexpr static const Qt_Key Qt_Key_Key_Back = 16777313; |
1399 | |
1400 | constexpr static const Qt_Key Qt_Key_Key_Forward = 16777314; |
1401 | |
1402 | constexpr static const Qt_Key Qt_Key_Key_Stop = 16777315; |
1403 | |
1404 | constexpr static const Qt_Key Qt_Key_Key_Refresh = 16777316; |
1405 | |
1406 | constexpr static const Qt_Key Qt_Key_Key_VolumeDown = 16777328; |
1407 | |
1408 | constexpr static const Qt_Key Qt_Key_Key_VolumeMute = 16777329; |
1409 | |
1410 | constexpr static const Qt_Key Qt_Key_Key_VolumeUp = 16777330; |
1411 | |
1412 | constexpr static const Qt_Key Qt_Key_Key_BassBoost = 16777331; |
1413 | |
1414 | constexpr static const Qt_Key Qt_Key_Key_BassUp = 16777332; |
1415 | |
1416 | constexpr static const Qt_Key Qt_Key_Key_BassDown = 16777333; |
1417 | |
1418 | constexpr static const Qt_Key Qt_Key_Key_TrebleUp = 16777334; |
1419 | |
1420 | constexpr static const Qt_Key Qt_Key_Key_TrebleDown = 16777335; |
1421 | |
1422 | constexpr static const Qt_Key Qt_Key_Key_MediaPlay = 16777344; |
1423 | |
1424 | constexpr static const Qt_Key Qt_Key_Key_MediaStop = 16777345; |
1425 | |
1426 | constexpr static const Qt_Key Qt_Key_Key_MediaPrevious = 16777346; |
1427 | |
1428 | constexpr static const Qt_Key Qt_Key_Key_MediaNext = 16777347; |
1429 | |
1430 | constexpr static const Qt_Key Qt_Key_Key_MediaRecord = 16777348; |
1431 | |
1432 | constexpr static const Qt_Key Qt_Key_Key_MediaPause = 16777349; |
1433 | |
1434 | constexpr static const Qt_Key Qt_Key_Key_MediaTogglePlayPause = 16777350; |
1435 | |
1436 | constexpr static const Qt_Key Qt_Key_Key_HomePage = 16777360; |
1437 | |
1438 | constexpr static const Qt_Key Qt_Key_Key_Favorites = 16777361; |
1439 | |
1440 | constexpr static const Qt_Key Qt_Key_Key_Search = 16777362; |
1441 | |
1442 | constexpr static const Qt_Key Qt_Key_Key_Standby = 16777363; |
1443 | |
1444 | constexpr static const Qt_Key Qt_Key_Key_OpenUrl = 16777364; |
1445 | |
1446 | constexpr static const Qt_Key Qt_Key_Key_LaunchMail = 16777376; |
1447 | |
1448 | constexpr static const Qt_Key Qt_Key_Key_LaunchMedia = 16777377; |
1449 | |
1450 | constexpr static const Qt_Key Qt_Key_Key_Launch0 = 16777378; |
1451 | |
1452 | constexpr static const Qt_Key Qt_Key_Key_Launch1 = 16777379; |
1453 | |
1454 | constexpr static const Qt_Key Qt_Key_Key_Launch2 = 16777380; |
1455 | |
1456 | constexpr static const Qt_Key Qt_Key_Key_Launch3 = 16777381; |
1457 | |
1458 | constexpr static const Qt_Key Qt_Key_Key_Launch4 = 16777382; |
1459 | |
1460 | constexpr static const Qt_Key Qt_Key_Key_Launch5 = 16777383; |
1461 | |
1462 | constexpr static const Qt_Key Qt_Key_Key_Launch6 = 16777384; |
1463 | |
1464 | constexpr static const Qt_Key Qt_Key_Key_Launch7 = 16777385; |
1465 | |
1466 | constexpr static const Qt_Key Qt_Key_Key_Launch8 = 16777386; |
1467 | |
1468 | constexpr static const Qt_Key Qt_Key_Key_Launch9 = 16777387; |
1469 | |
1470 | constexpr static const Qt_Key Qt_Key_Key_LaunchA = 16777388; |
1471 | |
1472 | constexpr static const Qt_Key Qt_Key_Key_LaunchB = 16777389; |
1473 | |
1474 | constexpr static const Qt_Key Qt_Key_Key_LaunchC = 16777390; |
1475 | |
1476 | constexpr static const Qt_Key Qt_Key_Key_LaunchD = 16777391; |
1477 | |
1478 | constexpr static const Qt_Key Qt_Key_Key_LaunchE = 16777392; |
1479 | |
1480 | constexpr static const Qt_Key Qt_Key_Key_LaunchF = 16777393; |
1481 | |
1482 | constexpr static const Qt_Key Qt_Key_Key_MonBrightnessUp = 16777394; |
1483 | |
1484 | constexpr static const Qt_Key Qt_Key_Key_MonBrightnessDown = 16777395; |
1485 | |
1486 | constexpr static const Qt_Key Qt_Key_Key_KeyboardLightOnOff = 16777396; |
1487 | |
1488 | constexpr static const Qt_Key Qt_Key_Key_KeyboardBrightnessUp = 16777397; |
1489 | |
1490 | constexpr static const Qt_Key Qt_Key_Key_KeyboardBrightnessDown = 16777398; |
1491 | |
1492 | constexpr static const Qt_Key Qt_Key_Key_PowerOff = 16777399; |
1493 | |
1494 | constexpr static const Qt_Key Qt_Key_Key_WakeUp = 16777400; |
1495 | |
1496 | constexpr static const Qt_Key Qt_Key_Key_Eject = 16777401; |
1497 | |
1498 | constexpr static const Qt_Key Qt_Key_Key_ScreenSaver = 16777402; |
1499 | |
1500 | constexpr static const Qt_Key Qt_Key_Key_WWW = 16777403; |
1501 | |
1502 | constexpr static const Qt_Key Qt_Key_Key_Memo = 16777404; |
1503 | |
1504 | constexpr static const Qt_Key Qt_Key_Key_LightBulb = 16777405; |
1505 | |
1506 | constexpr static const Qt_Key Qt_Key_Key_Shop = 16777406; |
1507 | |
1508 | constexpr static const Qt_Key Qt_Key_Key_History = 16777407; |
1509 | |
1510 | constexpr static const Qt_Key Qt_Key_Key_AddFavorite = 16777408; |
1511 | |
1512 | constexpr static const Qt_Key Qt_Key_Key_HotLinks = 16777409; |
1513 | |
1514 | constexpr static const Qt_Key Qt_Key_Key_BrightnessAdjust = 16777410; |
1515 | |
1516 | constexpr static const Qt_Key Qt_Key_Key_Finance = 16777411; |
1517 | |
1518 | constexpr static const Qt_Key = 16777412; |
1519 | |
1520 | constexpr static const Qt_Key Qt_Key_Key_AudioRewind = 16777413; |
1521 | |
1522 | constexpr static const Qt_Key Qt_Key_Key_BackForward = 16777414; |
1523 | |
1524 | constexpr static const Qt_Key Qt_Key_Key_ApplicationLeft = 16777415; |
1525 | |
1526 | constexpr static const Qt_Key Qt_Key_Key_ApplicationRight = 16777416; |
1527 | |
1528 | constexpr static const Qt_Key Qt_Key_Key_Book = 16777417; |
1529 | |
1530 | constexpr static const Qt_Key Qt_Key_Key_CD = 16777418; |
1531 | |
1532 | constexpr static const Qt_Key Qt_Key_Key_Calculator = 16777419; |
1533 | |
1534 | constexpr static const Qt_Key Qt_Key_Key_ToDoList = 16777420; |
1535 | |
1536 | constexpr static const Qt_Key Qt_Key_Key_ClearGrab = 16777421; |
1537 | |
1538 | constexpr static const Qt_Key Qt_Key_Key_Close = 16777422; |
1539 | |
1540 | constexpr static const Qt_Key Qt_Key_Key_Copy = 16777423; |
1541 | |
1542 | constexpr static const Qt_Key Qt_Key_Key_Cut = 16777424; |
1543 | |
1544 | constexpr static const Qt_Key Qt_Key_Key_Display = 16777425; |
1545 | |
1546 | constexpr static const Qt_Key Qt_Key_Key_DOS = 16777426; |
1547 | |
1548 | constexpr static const Qt_Key Qt_Key_Key_Documents = 16777427; |
1549 | |
1550 | constexpr static const Qt_Key Qt_Key_Key_Excel = 16777428; |
1551 | |
1552 | constexpr static const Qt_Key Qt_Key_Key_Explorer = 16777429; |
1553 | |
1554 | constexpr static const Qt_Key Qt_Key_Key_Game = 16777430; |
1555 | |
1556 | constexpr static const Qt_Key Qt_Key_Key_Go = 16777431; |
1557 | |
1558 | constexpr static const Qt_Key Qt_Key_Key_iTouch = 16777432; |
1559 | |
1560 | constexpr static const Qt_Key Qt_Key_Key_LogOff = 16777433; |
1561 | |
1562 | constexpr static const Qt_Key Qt_Key_Key_Market = 16777434; |
1563 | |
1564 | constexpr static const Qt_Key Qt_Key_Key_Meeting = 16777435; |
1565 | |
1566 | constexpr static const Qt_Key = 16777436; |
1567 | |
1568 | constexpr static const Qt_Key = 16777437; |
1569 | |
1570 | constexpr static const Qt_Key Qt_Key_Key_MySites = 16777438; |
1571 | |
1572 | constexpr static const Qt_Key Qt_Key_Key_News = 16777439; |
1573 | |
1574 | constexpr static const Qt_Key Qt_Key_Key_OfficeHome = 16777440; |
1575 | |
1576 | constexpr static const Qt_Key Qt_Key_Key_Option = 16777441; |
1577 | |
1578 | constexpr static const Qt_Key Qt_Key_Key_Paste = 16777442; |
1579 | |
1580 | constexpr static const Qt_Key Qt_Key_Key_Phone = 16777443; |
1581 | |
1582 | constexpr static const Qt_Key Qt_Key_Key_Calendar = 16777444; |
1583 | |
1584 | constexpr static const Qt_Key Qt_Key_Key_Reply = 16777445; |
1585 | |
1586 | constexpr static const Qt_Key Qt_Key_Key_Reload = 16777446; |
1587 | |
1588 | constexpr static const Qt_Key Qt_Key_Key_RotateWindows = 16777447; |
1589 | |
1590 | constexpr static const Qt_Key Qt_Key_Key_RotationPB = 16777448; |
1591 | |
1592 | constexpr static const Qt_Key Qt_Key_Key_RotationKB = 16777449; |
1593 | |
1594 | constexpr static const Qt_Key Qt_Key_Key_Save = 16777450; |
1595 | |
1596 | constexpr static const Qt_Key Qt_Key_Key_Send = 16777451; |
1597 | |
1598 | constexpr static const Qt_Key Qt_Key_Key_Spell = 16777452; |
1599 | |
1600 | constexpr static const Qt_Key Qt_Key_Key_SplitScreen = 16777453; |
1601 | |
1602 | constexpr static const Qt_Key Qt_Key_Key_Support = 16777454; |
1603 | |
1604 | constexpr static const Qt_Key Qt_Key_Key_TaskPane = 16777455; |
1605 | |
1606 | constexpr static const Qt_Key Qt_Key_Key_Terminal = 16777456; |
1607 | |
1608 | constexpr static const Qt_Key Qt_Key_Key_Tools = 16777457; |
1609 | |
1610 | constexpr static const Qt_Key Qt_Key_Key_Travel = 16777458; |
1611 | |
1612 | constexpr static const Qt_Key Qt_Key_Key_Video = 16777459; |
1613 | |
1614 | constexpr static const Qt_Key Qt_Key_Key_Word = 16777460; |
1615 | |
1616 | constexpr static const Qt_Key Qt_Key_Key_Xfer = 16777461; |
1617 | |
1618 | constexpr static const Qt_Key Qt_Key_Key_ZoomIn = 16777462; |
1619 | |
1620 | constexpr static const Qt_Key Qt_Key_Key_ZoomOut = 16777463; |
1621 | |
1622 | constexpr static const Qt_Key Qt_Key_Key_Away = 16777464; |
1623 | |
1624 | constexpr static const Qt_Key Qt_Key_Key_Messenger = 16777465; |
1625 | |
1626 | constexpr static const Qt_Key Qt_Key_Key_WebCam = 16777466; |
1627 | |
1628 | constexpr static const Qt_Key Qt_Key_Key_MailForward = 16777467; |
1629 | |
1630 | constexpr static const Qt_Key Qt_Key_Key_Pictures = 16777468; |
1631 | |
1632 | constexpr static const Qt_Key Qt_Key_Key_Music = 16777469; |
1633 | |
1634 | constexpr static const Qt_Key Qt_Key_Key_Battery = 16777470; |
1635 | |
1636 | constexpr static const Qt_Key Qt_Key_Key_Bluetooth = 16777471; |
1637 | |
1638 | constexpr static const Qt_Key Qt_Key_Key_WLAN = 16777472; |
1639 | |
1640 | constexpr static const Qt_Key Qt_Key_Key_UWB = 16777473; |
1641 | |
1642 | constexpr static const Qt_Key Qt_Key_Key_AudioForward = 16777474; |
1643 | |
1644 | constexpr static const Qt_Key Qt_Key_Key_AudioRepeat = 16777475; |
1645 | |
1646 | constexpr static const Qt_Key Qt_Key_Key_AudioRandomPlay = 16777476; |
1647 | |
1648 | constexpr static const Qt_Key Qt_Key_Key_Subtitle = 16777477; |
1649 | |
1650 | constexpr static const Qt_Key Qt_Key_Key_AudioCycleTrack = 16777478; |
1651 | |
1652 | constexpr static const Qt_Key Qt_Key_Key_Time = 16777479; |
1653 | |
1654 | constexpr static const Qt_Key Qt_Key_Key_Hibernate = 16777480; |
1655 | |
1656 | constexpr static const Qt_Key Qt_Key_Key_View = 16777481; |
1657 | |
1658 | constexpr static const Qt_Key = 16777482; |
1659 | |
1660 | constexpr static const Qt_Key Qt_Key_Key_PowerDown = 16777483; |
1661 | |
1662 | constexpr static const Qt_Key Qt_Key_Key_Suspend = 16777484; |
1663 | |
1664 | constexpr static const Qt_Key Qt_Key_Key_ContrastAdjust = 16777485; |
1665 | |
1666 | constexpr static const Qt_Key Qt_Key_Key_LaunchG = 16777486; |
1667 | |
1668 | constexpr static const Qt_Key Qt_Key_Key_LaunchH = 16777487; |
1669 | |
1670 | constexpr static const Qt_Key Qt_Key_Key_TouchpadToggle = 16777488; |
1671 | |
1672 | constexpr static const Qt_Key Qt_Key_Key_TouchpadOn = 16777489; |
1673 | |
1674 | constexpr static const Qt_Key Qt_Key_Key_TouchpadOff = 16777490; |
1675 | |
1676 | constexpr static const Qt_Key Qt_Key_Key_MicMute = 16777491; |
1677 | |
1678 | constexpr static const Qt_Key Qt_Key_Key_Red = 16777492; |
1679 | |
1680 | constexpr static const Qt_Key Qt_Key_Key_Green = 16777493; |
1681 | |
1682 | constexpr static const Qt_Key Qt_Key_Key_Yellow = 16777494; |
1683 | |
1684 | constexpr static const Qt_Key Qt_Key_Key_Blue = 16777495; |
1685 | |
1686 | constexpr static const Qt_Key Qt_Key_Key_ChannelUp = 16777496; |
1687 | |
1688 | constexpr static const Qt_Key Qt_Key_Key_ChannelDown = 16777497; |
1689 | |
1690 | constexpr static const Qt_Key Qt_Key_Key_Guide = 16777498; |
1691 | |
1692 | constexpr static const Qt_Key Qt_Key_Key_Info = 16777499; |
1693 | |
1694 | constexpr static const Qt_Key Qt_Key_Key_Settings = 16777500; |
1695 | |
1696 | constexpr static const Qt_Key Qt_Key_Key_MicVolumeUp = 16777501; |
1697 | |
1698 | constexpr static const Qt_Key Qt_Key_Key_MicVolumeDown = 16777502; |
1699 | |
1700 | constexpr static const Qt_Key Qt_Key_Key_New = 16777504; |
1701 | |
1702 | constexpr static const Qt_Key Qt_Key_Key_Open = 16777505; |
1703 | |
1704 | constexpr static const Qt_Key Qt_Key_Key_Find = 16777506; |
1705 | |
1706 | constexpr static const Qt_Key Qt_Key_Key_Undo = 16777507; |
1707 | |
1708 | constexpr static const Qt_Key Qt_Key_Key_Redo = 16777508; |
1709 | |
1710 | constexpr static const Qt_Key Qt_Key_Key_MediaLast = 16842751; |
1711 | |
1712 | constexpr static const Qt_Key Qt_Key_Key_Select = 16842752; |
1713 | |
1714 | constexpr static const Qt_Key Qt_Key_Key_Yes = 16842753; |
1715 | |
1716 | constexpr static const Qt_Key Qt_Key_Key_No = 16842754; |
1717 | |
1718 | constexpr static const Qt_Key Qt_Key_Key_Cancel = 16908289; |
1719 | |
1720 | constexpr static const Qt_Key Qt_Key_Key_Printer = 16908290; |
1721 | |
1722 | constexpr static const Qt_Key Qt_Key_Key_Execute = 16908291; |
1723 | |
1724 | constexpr static const Qt_Key Qt_Key_Key_Sleep = 16908292; |
1725 | |
1726 | constexpr static const Qt_Key Qt_Key_Key_Play = 16908293; |
1727 | |
1728 | constexpr static const Qt_Key Qt_Key_Key_Zoom = 16908294; |
1729 | |
1730 | constexpr static const Qt_Key Qt_Key_Key_Exit = 16908298; |
1731 | |
1732 | constexpr static const Qt_Key Qt_Key_Key_Context1 = 17825792; |
1733 | |
1734 | constexpr static const Qt_Key Qt_Key_Key_Context2 = 17825793; |
1735 | |
1736 | constexpr static const Qt_Key Qt_Key_Key_Context3 = 17825794; |
1737 | |
1738 | constexpr static const Qt_Key Qt_Key_Key_Context4 = 17825795; |
1739 | |
1740 | constexpr static const Qt_Key Qt_Key_Key_Call = 17825796; |
1741 | |
1742 | constexpr static const Qt_Key Qt_Key_Key_Hangup = 17825797; |
1743 | |
1744 | constexpr static const Qt_Key Qt_Key_Key_Flip = 17825798; |
1745 | |
1746 | constexpr static const Qt_Key Qt_Key_Key_ToggleCallHangup = 17825799; |
1747 | |
1748 | constexpr static const Qt_Key Qt_Key_Key_VoiceDial = 17825800; |
1749 | |
1750 | constexpr static const Qt_Key Qt_Key_Key_LastNumberRedial = 17825801; |
1751 | |
1752 | constexpr static const Qt_Key Qt_Key_Key_Camera = 17825824; |
1753 | |
1754 | constexpr static const Qt_Key Qt_Key_Key_CameraFocus = 17825825; |
1755 | |
1756 | constexpr static const Qt_Key Qt_Key_Key_unknown = 33554431; |
1757 | |
1758 | constexpr static const Qt_CursorShape Qt_CursorShape_ArrowCursor = 0; |
1759 | |
1760 | constexpr static const Qt_CursorShape Qt_CursorShape_UpArrowCursor = 1; |
1761 | |
1762 | constexpr static const Qt_CursorShape Qt_CursorShape_CrossCursor = 2; |
1763 | |
1764 | constexpr static const Qt_CursorShape Qt_CursorShape_WaitCursor = 3; |
1765 | |
1766 | constexpr static const Qt_CursorShape Qt_CursorShape_IBeamCursor = 4; |
1767 | |
1768 | constexpr static const Qt_CursorShape Qt_CursorShape_SizeVerCursor = 5; |
1769 | |
1770 | constexpr static const Qt_CursorShape Qt_CursorShape_SizeHorCursor = 6; |
1771 | |
1772 | constexpr static const Qt_CursorShape Qt_CursorShape_SizeBDiagCursor = 7; |
1773 | |
1774 | constexpr static const Qt_CursorShape Qt_CursorShape_SizeFDiagCursor = 8; |
1775 | |
1776 | constexpr static const Qt_CursorShape Qt_CursorShape_SizeAllCursor = 9; |
1777 | |
1778 | constexpr static const Qt_CursorShape Qt_CursorShape_BlankCursor = 10; |
1779 | |
1780 | constexpr static const Qt_CursorShape Qt_CursorShape_SplitVCursor = 11; |
1781 | |
1782 | constexpr static const Qt_CursorShape Qt_CursorShape_SplitHCursor = 12; |
1783 | |
1784 | constexpr static const Qt_CursorShape Qt_CursorShape_PointingHandCursor = 13; |
1785 | |
1786 | constexpr static const Qt_CursorShape Qt_CursorShape_ForbiddenCursor = 14; |
1787 | |
1788 | constexpr static const Qt_CursorShape Qt_CursorShape_WhatsThisCursor = 15; |
1789 | |
1790 | constexpr static const Qt_CursorShape Qt_CursorShape_BusyCursor = 16; |
1791 | |
1792 | constexpr static const Qt_CursorShape Qt_CursorShape_OpenHandCursor = 17; |
1793 | |
1794 | constexpr static const Qt_CursorShape Qt_CursorShape_ClosedHandCursor = 18; |
1795 | |
1796 | constexpr static const Qt_CursorShape Qt_CursorShape_DragCopyCursor = 19; |
1797 | |
1798 | constexpr static const Qt_CursorShape Qt_CursorShape_DragMoveCursor = 20; |
1799 | |
1800 | constexpr static const Qt_CursorShape Qt_CursorShape_DragLinkCursor = 21; |
1801 | |
1802 | constexpr static const Qt_CursorShape Qt_CursorShape_LastCursor = 21; |
1803 | |
1804 | constexpr static const Qt_CursorShape Qt_CursorShape_BitmapCursor = 24; |
1805 | |
1806 | constexpr static const Qt_CursorShape Qt_CursorShape_CustomCursor = 25; |
1807 | |
1808 | constexpr static const Qt_FillRule Qt_FillRule_OddEvenFill = 0; |
1809 | |
1810 | constexpr static const Qt_FillRule Qt_FillRule_WindingFill = 1; |
1811 | |
1812 | extern "C" { |
1813 | |
1814 | void slint_native_style_metrics_init(Pin<const NativeStyleMetrics*> self_); |
1815 | |
1816 | void slint_native_style_metrics_deinit(Pin<NativeStyleMetrics*> self_); |
1817 | |
1818 | void slint_native_palette_init(Pin<const NativePalette*> self_); |
1819 | |
1820 | void slint_native_palette_deinit(Pin<NativePalette*> self_); |
1821 | |
1822 | void *slint_qt_get_widget(const WindowAdapterRc *window_adapter); |
1823 | |
1824 | void *slint_qt_get_widget(const WindowAdapterRc*); |
1825 | |
1826 | } // extern "C" |
1827 | |
1828 | } // namespace cbindgen_private |
1829 | } // namespace slint |
1830 | |
1831 | |
1832 | namespace slint::private_api { |
1833 | #define SLINT_DECL_ITEM(ItemName) \ |
1834 | extern const cbindgen_private::ItemVTable ItemName##VTable; \ |
1835 | extern SLINT_DLL_IMPORT const cbindgen_private::ItemVTable* slint_get_##ItemName##VTable(); |
1836 | |
1837 | extern "C" { |
1838 | SLINT_DECL_ITEM(NativeButton); |
1839 | SLINT_DECL_ITEM(NativeSpinBox); |
1840 | SLINT_DECL_ITEM(NativeCheckBox); |
1841 | SLINT_DECL_ITEM(NativeSlider); |
1842 | SLINT_DECL_ITEM(NativeProgressIndicator); |
1843 | SLINT_DECL_ITEM(NativeGroupBox); |
1844 | SLINT_DECL_ITEM(NativeLineEdit); |
1845 | SLINT_DECL_ITEM(NativeScrollView); |
1846 | SLINT_DECL_ITEM(NativeStandardListViewItem); |
1847 | SLINT_DECL_ITEM(NativeTableHeaderSection); |
1848 | SLINT_DECL_ITEM(NativeComboBox); |
1849 | SLINT_DECL_ITEM(NativeComboBoxPopup); |
1850 | SLINT_DECL_ITEM(NativeTabWidget); |
1851 | SLINT_DECL_ITEM(NativeTab); |
1852 | SLINT_DECL_ITEM(NativeStyleMetrics); |
1853 | SLINT_DECL_ITEM(NativePalette); |
1854 | } |
1855 | |
1856 | #undef SLINT_DECL_ITEM |
1857 | } |
1858 | |