i_slint_backend_qt/
key_generated.rs

1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
3
4/*! Generated with Qt5 and
5```sh
6bindgen /usr/include/qt/QtCore/qnamespace.h --whitelist-type Qt::Key --whitelist-type Qt::KeyboardModifier --whitelist-type Qt::AlignmentFlag --whitelist-type Qt::TextFlag --whitelist-type Qt::FillRule --whitelist-type Qt::CursorShape -o internal/backends/qt/key_generated.rs -- -I /usr/include/qt -xc++
7```
8then add license header and this doc
9*/
10#![allow(unused)]
11#![allow(non_camel_case_types)]
12#![allow(non_upper_case_globals)]
13
14/* automatically generated by rust-bindgen 0.59.1 */
15
16pub const Qt_KeyboardModifier_NoModifier: Qt_KeyboardModifier = 0;
17pub const Qt_KeyboardModifier_ShiftModifier: Qt_KeyboardModifier = 33554432;
18pub const Qt_KeyboardModifier_ControlModifier: Qt_KeyboardModifier = 67108864;
19pub const Qt_KeyboardModifier_AltModifier: Qt_KeyboardModifier = 134217728;
20pub const Qt_KeyboardModifier_MetaModifier: Qt_KeyboardModifier = 268435456;
21pub const Qt_KeyboardModifier_KeypadModifier: Qt_KeyboardModifier = 536870912;
22pub const Qt_KeyboardModifier_GroupSwitchModifier: Qt_KeyboardModifier = 1073741824;
23pub const Qt_KeyboardModifier_KeyboardModifierMask: Qt_KeyboardModifier = 4261412864;
24pub type Qt_KeyboardModifier = ::std::os::raw::c_uint;
25pub const Qt_AlignmentFlag_AlignLeft: Qt_AlignmentFlag = 1;
26pub const Qt_AlignmentFlag_AlignLeading: Qt_AlignmentFlag = 1;
27pub const Qt_AlignmentFlag_AlignRight: Qt_AlignmentFlag = 2;
28pub const Qt_AlignmentFlag_AlignTrailing: Qt_AlignmentFlag = 2;
29pub const Qt_AlignmentFlag_AlignHCenter: Qt_AlignmentFlag = 4;
30pub const Qt_AlignmentFlag_AlignJustify: Qt_AlignmentFlag = 8;
31pub const Qt_AlignmentFlag_AlignAbsolute: Qt_AlignmentFlag = 16;
32pub const Qt_AlignmentFlag_AlignHorizontal_Mask: Qt_AlignmentFlag = 31;
33pub const Qt_AlignmentFlag_AlignTop: Qt_AlignmentFlag = 32;
34pub const Qt_AlignmentFlag_AlignBottom: Qt_AlignmentFlag = 64;
35pub const Qt_AlignmentFlag_AlignVCenter: Qt_AlignmentFlag = 128;
36pub const Qt_AlignmentFlag_AlignBaseline: Qt_AlignmentFlag = 256;
37pub const Qt_AlignmentFlag_AlignVertical_Mask: Qt_AlignmentFlag = 480;
38pub const Qt_AlignmentFlag_AlignCenter: Qt_AlignmentFlag = 132;
39pub type Qt_AlignmentFlag = ::std::os::raw::c_uint;
40pub const Qt_TextFlag_TextSingleLine: Qt_TextFlag = 256;
41pub const Qt_TextFlag_TextDontClip: Qt_TextFlag = 512;
42pub const Qt_TextFlag_TextExpandTabs: Qt_TextFlag = 1024;
43pub const Qt_TextFlag_TextShowMnemonic: Qt_TextFlag = 2048;
44pub const Qt_TextFlag_TextWordWrap: Qt_TextFlag = 4096;
45pub const Qt_TextFlag_TextWrapAnywhere: Qt_TextFlag = 8192;
46pub const Qt_TextFlag_TextDontPrint: Qt_TextFlag = 16384;
47pub const Qt_TextFlag_TextIncludeTrailingSpaces: Qt_TextFlag = 134217728;
48pub const Qt_TextFlag_TextHideMnemonic: Qt_TextFlag = 32768;
49pub const Qt_TextFlag_TextJustificationForced: Qt_TextFlag = 65536;
50pub const Qt_TextFlag_TextForceLeftToRight: Qt_TextFlag = 131072;
51pub const Qt_TextFlag_TextForceRightToLeft: Qt_TextFlag = 262144;
52pub const Qt_TextFlag_TextLongestVariant: Qt_TextFlag = 524288;
53pub const Qt_TextFlag_TextBypassShaping: Qt_TextFlag = 1048576;
54pub type Qt_TextFlag = ::std::os::raw::c_uint;
55pub const Qt_Key_Key_Escape: Qt_Key = 16777216;
56pub const Qt_Key_Key_Tab: Qt_Key = 16777217;
57pub const Qt_Key_Key_Backtab: Qt_Key = 16777218;
58pub const Qt_Key_Key_Backspace: Qt_Key = 16777219;
59pub const Qt_Key_Key_Return: Qt_Key = 16777220;
60pub const Qt_Key_Key_Enter: Qt_Key = 16777221;
61pub const Qt_Key_Key_Insert: Qt_Key = 16777222;
62pub const Qt_Key_Key_Delete: Qt_Key = 16777223;
63pub const Qt_Key_Key_Pause: Qt_Key = 16777224;
64pub const Qt_Key_Key_Print: Qt_Key = 16777225;
65pub const Qt_Key_Key_SysReq: Qt_Key = 16777226;
66pub const Qt_Key_Key_Clear: Qt_Key = 16777227;
67pub const Qt_Key_Key_Home: Qt_Key = 16777232;
68pub const Qt_Key_Key_End: Qt_Key = 16777233;
69pub const Qt_Key_Key_Left: Qt_Key = 16777234;
70pub const Qt_Key_Key_Up: Qt_Key = 16777235;
71pub const Qt_Key_Key_Right: Qt_Key = 16777236;
72pub const Qt_Key_Key_Down: Qt_Key = 16777237;
73pub const Qt_Key_Key_PageUp: Qt_Key = 16777238;
74pub const Qt_Key_Key_PageDown: Qt_Key = 16777239;
75pub const Qt_Key_Key_Shift: Qt_Key = 16777248;
76pub const Qt_Key_Key_Control: Qt_Key = 16777249;
77pub const Qt_Key_Key_Meta: Qt_Key = 16777250;
78pub const Qt_Key_Key_Alt: Qt_Key = 16777251;
79pub const Qt_Key_Key_CapsLock: Qt_Key = 16777252;
80pub const Qt_Key_Key_NumLock: Qt_Key = 16777253;
81pub const Qt_Key_Key_ScrollLock: Qt_Key = 16777254;
82pub const Qt_Key_Key_F1: Qt_Key = 16777264;
83pub const Qt_Key_Key_F2: Qt_Key = 16777265;
84pub const Qt_Key_Key_F3: Qt_Key = 16777266;
85pub const Qt_Key_Key_F4: Qt_Key = 16777267;
86pub const Qt_Key_Key_F5: Qt_Key = 16777268;
87pub const Qt_Key_Key_F6: Qt_Key = 16777269;
88pub const Qt_Key_Key_F7: Qt_Key = 16777270;
89pub const Qt_Key_Key_F8: Qt_Key = 16777271;
90pub const Qt_Key_Key_F9: Qt_Key = 16777272;
91pub const Qt_Key_Key_F10: Qt_Key = 16777273;
92pub const Qt_Key_Key_F11: Qt_Key = 16777274;
93pub const Qt_Key_Key_F12: Qt_Key = 16777275;
94pub const Qt_Key_Key_F13: Qt_Key = 16777276;
95pub const Qt_Key_Key_F14: Qt_Key = 16777277;
96pub const Qt_Key_Key_F15: Qt_Key = 16777278;
97pub const Qt_Key_Key_F16: Qt_Key = 16777279;
98pub const Qt_Key_Key_F17: Qt_Key = 16777280;
99pub const Qt_Key_Key_F18: Qt_Key = 16777281;
100pub const Qt_Key_Key_F19: Qt_Key = 16777282;
101pub const Qt_Key_Key_F20: Qt_Key = 16777283;
102pub const Qt_Key_Key_F21: Qt_Key = 16777284;
103pub const Qt_Key_Key_F22: Qt_Key = 16777285;
104pub const Qt_Key_Key_F23: Qt_Key = 16777286;
105pub const Qt_Key_Key_F24: Qt_Key = 16777287;
106pub const Qt_Key_Key_F25: Qt_Key = 16777288;
107pub const Qt_Key_Key_F26: Qt_Key = 16777289;
108pub const Qt_Key_Key_F27: Qt_Key = 16777290;
109pub const Qt_Key_Key_F28: Qt_Key = 16777291;
110pub const Qt_Key_Key_F29: Qt_Key = 16777292;
111pub const Qt_Key_Key_F30: Qt_Key = 16777293;
112pub const Qt_Key_Key_F31: Qt_Key = 16777294;
113pub const Qt_Key_Key_F32: Qt_Key = 16777295;
114pub const Qt_Key_Key_F33: Qt_Key = 16777296;
115pub const Qt_Key_Key_F34: Qt_Key = 16777297;
116pub const Qt_Key_Key_F35: Qt_Key = 16777298;
117pub const Qt_Key_Key_Super_L: Qt_Key = 16777299;
118pub const Qt_Key_Key_Super_R: Qt_Key = 16777300;
119pub const Qt_Key_Key_Menu: Qt_Key = 16777301;
120pub const Qt_Key_Key_Hyper_L: Qt_Key = 16777302;
121pub const Qt_Key_Key_Hyper_R: Qt_Key = 16777303;
122pub const Qt_Key_Key_Help: Qt_Key = 16777304;
123pub const Qt_Key_Key_Direction_L: Qt_Key = 16777305;
124pub const Qt_Key_Key_Direction_R: Qt_Key = 16777312;
125pub const Qt_Key_Key_Space: Qt_Key = 32;
126pub const Qt_Key_Key_Any: Qt_Key = 32;
127pub const Qt_Key_Key_Exclam: Qt_Key = 33;
128pub const Qt_Key_Key_QuoteDbl: Qt_Key = 34;
129pub const Qt_Key_Key_NumberSign: Qt_Key = 35;
130pub const Qt_Key_Key_Dollar: Qt_Key = 36;
131pub const Qt_Key_Key_Percent: Qt_Key = 37;
132pub const Qt_Key_Key_Ampersand: Qt_Key = 38;
133pub const Qt_Key_Key_Apostrophe: Qt_Key = 39;
134pub const Qt_Key_Key_ParenLeft: Qt_Key = 40;
135pub const Qt_Key_Key_ParenRight: Qt_Key = 41;
136pub const Qt_Key_Key_Asterisk: Qt_Key = 42;
137pub const Qt_Key_Key_Plus: Qt_Key = 43;
138pub const Qt_Key_Key_Comma: Qt_Key = 44;
139pub const Qt_Key_Key_Minus: Qt_Key = 45;
140pub const Qt_Key_Key_Period: Qt_Key = 46;
141pub const Qt_Key_Key_Slash: Qt_Key = 47;
142pub const Qt_Key_Key_0: Qt_Key = 48;
143pub const Qt_Key_Key_1: Qt_Key = 49;
144pub const Qt_Key_Key_2: Qt_Key = 50;
145pub const Qt_Key_Key_3: Qt_Key = 51;
146pub const Qt_Key_Key_4: Qt_Key = 52;
147pub const Qt_Key_Key_5: Qt_Key = 53;
148pub const Qt_Key_Key_6: Qt_Key = 54;
149pub const Qt_Key_Key_7: Qt_Key = 55;
150pub const Qt_Key_Key_8: Qt_Key = 56;
151pub const Qt_Key_Key_9: Qt_Key = 57;
152pub const Qt_Key_Key_Colon: Qt_Key = 58;
153pub const Qt_Key_Key_Semicolon: Qt_Key = 59;
154pub const Qt_Key_Key_Less: Qt_Key = 60;
155pub const Qt_Key_Key_Equal: Qt_Key = 61;
156pub const Qt_Key_Key_Greater: Qt_Key = 62;
157pub const Qt_Key_Key_Question: Qt_Key = 63;
158pub const Qt_Key_Key_At: Qt_Key = 64;
159pub const Qt_Key_Key_A: Qt_Key = 65;
160pub const Qt_Key_Key_B: Qt_Key = 66;
161pub const Qt_Key_Key_C: Qt_Key = 67;
162pub const Qt_Key_Key_D: Qt_Key = 68;
163pub const Qt_Key_Key_E: Qt_Key = 69;
164pub const Qt_Key_Key_F: Qt_Key = 70;
165pub const Qt_Key_Key_G: Qt_Key = 71;
166pub const Qt_Key_Key_H: Qt_Key = 72;
167pub const Qt_Key_Key_I: Qt_Key = 73;
168pub const Qt_Key_Key_J: Qt_Key = 74;
169pub const Qt_Key_Key_K: Qt_Key = 75;
170pub const Qt_Key_Key_L: Qt_Key = 76;
171pub const Qt_Key_Key_M: Qt_Key = 77;
172pub const Qt_Key_Key_N: Qt_Key = 78;
173pub const Qt_Key_Key_O: Qt_Key = 79;
174pub const Qt_Key_Key_P: Qt_Key = 80;
175pub const Qt_Key_Key_Q: Qt_Key = 81;
176pub const Qt_Key_Key_R: Qt_Key = 82;
177pub const Qt_Key_Key_S: Qt_Key = 83;
178pub const Qt_Key_Key_T: Qt_Key = 84;
179pub const Qt_Key_Key_U: Qt_Key = 85;
180pub const Qt_Key_Key_V: Qt_Key = 86;
181pub const Qt_Key_Key_W: Qt_Key = 87;
182pub const Qt_Key_Key_X: Qt_Key = 88;
183pub const Qt_Key_Key_Y: Qt_Key = 89;
184pub const Qt_Key_Key_Z: Qt_Key = 90;
185pub const Qt_Key_Key_BracketLeft: Qt_Key = 91;
186pub const Qt_Key_Key_Backslash: Qt_Key = 92;
187pub const Qt_Key_Key_BracketRight: Qt_Key = 93;
188pub const Qt_Key_Key_AsciiCircum: Qt_Key = 94;
189pub const Qt_Key_Key_Underscore: Qt_Key = 95;
190pub const Qt_Key_Key_QuoteLeft: Qt_Key = 96;
191pub const Qt_Key_Key_BraceLeft: Qt_Key = 123;
192pub const Qt_Key_Key_Bar: Qt_Key = 124;
193pub const Qt_Key_Key_BraceRight: Qt_Key = 125;
194pub const Qt_Key_Key_AsciiTilde: Qt_Key = 126;
195pub const Qt_Key_Key_nobreakspace: Qt_Key = 160;
196pub const Qt_Key_Key_exclamdown: Qt_Key = 161;
197pub const Qt_Key_Key_cent: Qt_Key = 162;
198pub const Qt_Key_Key_sterling: Qt_Key = 163;
199pub const Qt_Key_Key_currency: Qt_Key = 164;
200pub const Qt_Key_Key_yen: Qt_Key = 165;
201pub const Qt_Key_Key_brokenbar: Qt_Key = 166;
202pub const Qt_Key_Key_section: Qt_Key = 167;
203pub const Qt_Key_Key_diaeresis: Qt_Key = 168;
204pub const Qt_Key_Key_copyright: Qt_Key = 169;
205pub const Qt_Key_Key_ordfeminine: Qt_Key = 170;
206pub const Qt_Key_Key_guillemotleft: Qt_Key = 171;
207pub const Qt_Key_Key_notsign: Qt_Key = 172;
208pub const Qt_Key_Key_hyphen: Qt_Key = 173;
209pub const Qt_Key_Key_registered: Qt_Key = 174;
210pub const Qt_Key_Key_macron: Qt_Key = 175;
211pub const Qt_Key_Key_degree: Qt_Key = 176;
212pub const Qt_Key_Key_plusminus: Qt_Key = 177;
213pub const Qt_Key_Key_twosuperior: Qt_Key = 178;
214pub const Qt_Key_Key_threesuperior: Qt_Key = 179;
215pub const Qt_Key_Key_acute: Qt_Key = 180;
216pub const Qt_Key_Key_mu: Qt_Key = 181;
217pub const Qt_Key_Key_paragraph: Qt_Key = 182;
218pub const Qt_Key_Key_periodcentered: Qt_Key = 183;
219pub const Qt_Key_Key_cedilla: Qt_Key = 184;
220pub const Qt_Key_Key_onesuperior: Qt_Key = 185;
221pub const Qt_Key_Key_masculine: Qt_Key = 186;
222pub const Qt_Key_Key_guillemotright: Qt_Key = 187;
223pub const Qt_Key_Key_onequarter: Qt_Key = 188;
224pub const Qt_Key_Key_onehalf: Qt_Key = 189;
225pub const Qt_Key_Key_threequarters: Qt_Key = 190;
226pub const Qt_Key_Key_questiondown: Qt_Key = 191;
227pub const Qt_Key_Key_Agrave: Qt_Key = 192;
228pub const Qt_Key_Key_Aacute: Qt_Key = 193;
229pub const Qt_Key_Key_Acircumflex: Qt_Key = 194;
230pub const Qt_Key_Key_Atilde: Qt_Key = 195;
231pub const Qt_Key_Key_Adiaeresis: Qt_Key = 196;
232pub const Qt_Key_Key_Aring: Qt_Key = 197;
233pub const Qt_Key_Key_AE: Qt_Key = 198;
234pub const Qt_Key_Key_Ccedilla: Qt_Key = 199;
235pub const Qt_Key_Key_Egrave: Qt_Key = 200;
236pub const Qt_Key_Key_Eacute: Qt_Key = 201;
237pub const Qt_Key_Key_Ecircumflex: Qt_Key = 202;
238pub const Qt_Key_Key_Ediaeresis: Qt_Key = 203;
239pub const Qt_Key_Key_Igrave: Qt_Key = 204;
240pub const Qt_Key_Key_Iacute: Qt_Key = 205;
241pub const Qt_Key_Key_Icircumflex: Qt_Key = 206;
242pub const Qt_Key_Key_Idiaeresis: Qt_Key = 207;
243pub const Qt_Key_Key_ETH: Qt_Key = 208;
244pub const Qt_Key_Key_Ntilde: Qt_Key = 209;
245pub const Qt_Key_Key_Ograve: Qt_Key = 210;
246pub const Qt_Key_Key_Oacute: Qt_Key = 211;
247pub const Qt_Key_Key_Ocircumflex: Qt_Key = 212;
248pub const Qt_Key_Key_Otilde: Qt_Key = 213;
249pub const Qt_Key_Key_Odiaeresis: Qt_Key = 214;
250pub const Qt_Key_Key_multiply: Qt_Key = 215;
251pub const Qt_Key_Key_Ooblique: Qt_Key = 216;
252pub const Qt_Key_Key_Ugrave: Qt_Key = 217;
253pub const Qt_Key_Key_Uacute: Qt_Key = 218;
254pub const Qt_Key_Key_Ucircumflex: Qt_Key = 219;
255pub const Qt_Key_Key_Udiaeresis: Qt_Key = 220;
256pub const Qt_Key_Key_Yacute: Qt_Key = 221;
257pub const Qt_Key_Key_THORN: Qt_Key = 222;
258pub const Qt_Key_Key_ssharp: Qt_Key = 223;
259pub const Qt_Key_Key_division: Qt_Key = 247;
260pub const Qt_Key_Key_ydiaeresis: Qt_Key = 255;
261pub const Qt_Key_Key_AltGr: Qt_Key = 16781571;
262pub const Qt_Key_Key_Multi_key: Qt_Key = 16781600;
263pub const Qt_Key_Key_Codeinput: Qt_Key = 16781623;
264pub const Qt_Key_Key_SingleCandidate: Qt_Key = 16781628;
265pub const Qt_Key_Key_MultipleCandidate: Qt_Key = 16781629;
266pub const Qt_Key_Key_PreviousCandidate: Qt_Key = 16781630;
267pub const Qt_Key_Key_Mode_switch: Qt_Key = 16781694;
268pub const Qt_Key_Key_Kanji: Qt_Key = 16781601;
269pub const Qt_Key_Key_Muhenkan: Qt_Key = 16781602;
270pub const Qt_Key_Key_Henkan: Qt_Key = 16781603;
271pub const Qt_Key_Key_Romaji: Qt_Key = 16781604;
272pub const Qt_Key_Key_Hiragana: Qt_Key = 16781605;
273pub const Qt_Key_Key_Katakana: Qt_Key = 16781606;
274pub const Qt_Key_Key_Hiragana_Katakana: Qt_Key = 16781607;
275pub const Qt_Key_Key_Zenkaku: Qt_Key = 16781608;
276pub const Qt_Key_Key_Hankaku: Qt_Key = 16781609;
277pub const Qt_Key_Key_Zenkaku_Hankaku: Qt_Key = 16781610;
278pub const Qt_Key_Key_Touroku: Qt_Key = 16781611;
279pub const Qt_Key_Key_Massyo: Qt_Key = 16781612;
280pub const Qt_Key_Key_Kana_Lock: Qt_Key = 16781613;
281pub const Qt_Key_Key_Kana_Shift: Qt_Key = 16781614;
282pub const Qt_Key_Key_Eisu_Shift: Qt_Key = 16781615;
283pub const Qt_Key_Key_Eisu_toggle: Qt_Key = 16781616;
284pub const Qt_Key_Key_Hangul: Qt_Key = 16781617;
285pub const Qt_Key_Key_Hangul_Start: Qt_Key = 16781618;
286pub const Qt_Key_Key_Hangul_End: Qt_Key = 16781619;
287pub const Qt_Key_Key_Hangul_Hanja: Qt_Key = 16781620;
288pub const Qt_Key_Key_Hangul_Jamo: Qt_Key = 16781621;
289pub const Qt_Key_Key_Hangul_Romaja: Qt_Key = 16781622;
290pub const Qt_Key_Key_Hangul_Jeonja: Qt_Key = 16781624;
291pub const Qt_Key_Key_Hangul_Banja: Qt_Key = 16781625;
292pub const Qt_Key_Key_Hangul_PreHanja: Qt_Key = 16781626;
293pub const Qt_Key_Key_Hangul_PostHanja: Qt_Key = 16781627;
294pub const Qt_Key_Key_Hangul_Special: Qt_Key = 16781631;
295pub const Qt_Key_Key_Dead_Grave: Qt_Key = 16781904;
296pub const Qt_Key_Key_Dead_Acute: Qt_Key = 16781905;
297pub const Qt_Key_Key_Dead_Circumflex: Qt_Key = 16781906;
298pub const Qt_Key_Key_Dead_Tilde: Qt_Key = 16781907;
299pub const Qt_Key_Key_Dead_Macron: Qt_Key = 16781908;
300pub const Qt_Key_Key_Dead_Breve: Qt_Key = 16781909;
301pub const Qt_Key_Key_Dead_Abovedot: Qt_Key = 16781910;
302pub const Qt_Key_Key_Dead_Diaeresis: Qt_Key = 16781911;
303pub const Qt_Key_Key_Dead_Abovering: Qt_Key = 16781912;
304pub const Qt_Key_Key_Dead_Doubleacute: Qt_Key = 16781913;
305pub const Qt_Key_Key_Dead_Caron: Qt_Key = 16781914;
306pub const Qt_Key_Key_Dead_Cedilla: Qt_Key = 16781915;
307pub const Qt_Key_Key_Dead_Ogonek: Qt_Key = 16781916;
308pub const Qt_Key_Key_Dead_Iota: Qt_Key = 16781917;
309pub const Qt_Key_Key_Dead_Voiced_Sound: Qt_Key = 16781918;
310pub const Qt_Key_Key_Dead_Semivoiced_Sound: Qt_Key = 16781919;
311pub const Qt_Key_Key_Dead_Belowdot: Qt_Key = 16781920;
312pub const Qt_Key_Key_Dead_Hook: Qt_Key = 16781921;
313pub const Qt_Key_Key_Dead_Horn: Qt_Key = 16781922;
314pub const Qt_Key_Key_Dead_Stroke: Qt_Key = 16781923;
315pub const Qt_Key_Key_Dead_Abovecomma: Qt_Key = 16781924;
316pub const Qt_Key_Key_Dead_Abovereversedcomma: Qt_Key = 16781925;
317pub const Qt_Key_Key_Dead_Doublegrave: Qt_Key = 16781926;
318pub const Qt_Key_Key_Dead_Belowring: Qt_Key = 16781927;
319pub const Qt_Key_Key_Dead_Belowmacron: Qt_Key = 16781928;
320pub const Qt_Key_Key_Dead_Belowcircumflex: Qt_Key = 16781929;
321pub const Qt_Key_Key_Dead_Belowtilde: Qt_Key = 16781930;
322pub const Qt_Key_Key_Dead_Belowbreve: Qt_Key = 16781931;
323pub const Qt_Key_Key_Dead_Belowdiaeresis: Qt_Key = 16781932;
324pub const Qt_Key_Key_Dead_Invertedbreve: Qt_Key = 16781933;
325pub const Qt_Key_Key_Dead_Belowcomma: Qt_Key = 16781934;
326pub const Qt_Key_Key_Dead_Currency: Qt_Key = 16781935;
327pub const Qt_Key_Key_Dead_a: Qt_Key = 16781952;
328pub const Qt_Key_Key_Dead_A: Qt_Key = 16781953;
329pub const Qt_Key_Key_Dead_e: Qt_Key = 16781954;
330pub const Qt_Key_Key_Dead_E: Qt_Key = 16781955;
331pub const Qt_Key_Key_Dead_i: Qt_Key = 16781956;
332pub const Qt_Key_Key_Dead_I: Qt_Key = 16781957;
333pub const Qt_Key_Key_Dead_o: Qt_Key = 16781958;
334pub const Qt_Key_Key_Dead_O: Qt_Key = 16781959;
335pub const Qt_Key_Key_Dead_u: Qt_Key = 16781960;
336pub const Qt_Key_Key_Dead_U: Qt_Key = 16781961;
337pub const Qt_Key_Key_Dead_Small_Schwa: Qt_Key = 16781962;
338pub const Qt_Key_Key_Dead_Capital_Schwa: Qt_Key = 16781963;
339pub const Qt_Key_Key_Dead_Greek: Qt_Key = 16781964;
340pub const Qt_Key_Key_Dead_Lowline: Qt_Key = 16781968;
341pub const Qt_Key_Key_Dead_Aboveverticalline: Qt_Key = 16781969;
342pub const Qt_Key_Key_Dead_Belowverticalline: Qt_Key = 16781970;
343pub const Qt_Key_Key_Dead_Longsolidusoverlay: Qt_Key = 16781971;
344pub const Qt_Key_Key_Back: Qt_Key = 16777313;
345pub const Qt_Key_Key_Forward: Qt_Key = 16777314;
346pub const Qt_Key_Key_Stop: Qt_Key = 16777315;
347pub const Qt_Key_Key_Refresh: Qt_Key = 16777316;
348pub const Qt_Key_Key_VolumeDown: Qt_Key = 16777328;
349pub const Qt_Key_Key_VolumeMute: Qt_Key = 16777329;
350pub const Qt_Key_Key_VolumeUp: Qt_Key = 16777330;
351pub const Qt_Key_Key_BassBoost: Qt_Key = 16777331;
352pub const Qt_Key_Key_BassUp: Qt_Key = 16777332;
353pub const Qt_Key_Key_BassDown: Qt_Key = 16777333;
354pub const Qt_Key_Key_TrebleUp: Qt_Key = 16777334;
355pub const Qt_Key_Key_TrebleDown: Qt_Key = 16777335;
356pub const Qt_Key_Key_MediaPlay: Qt_Key = 16777344;
357pub const Qt_Key_Key_MediaStop: Qt_Key = 16777345;
358pub const Qt_Key_Key_MediaPrevious: Qt_Key = 16777346;
359pub const Qt_Key_Key_MediaNext: Qt_Key = 16777347;
360pub const Qt_Key_Key_MediaRecord: Qt_Key = 16777348;
361pub const Qt_Key_Key_MediaPause: Qt_Key = 16777349;
362pub const Qt_Key_Key_MediaTogglePlayPause: Qt_Key = 16777350;
363pub const Qt_Key_Key_HomePage: Qt_Key = 16777360;
364pub const Qt_Key_Key_Favorites: Qt_Key = 16777361;
365pub const Qt_Key_Key_Search: Qt_Key = 16777362;
366pub const Qt_Key_Key_Standby: Qt_Key = 16777363;
367pub const Qt_Key_Key_OpenUrl: Qt_Key = 16777364;
368pub const Qt_Key_Key_LaunchMail: Qt_Key = 16777376;
369pub const Qt_Key_Key_LaunchMedia: Qt_Key = 16777377;
370pub const Qt_Key_Key_Launch0: Qt_Key = 16777378;
371pub const Qt_Key_Key_Launch1: Qt_Key = 16777379;
372pub const Qt_Key_Key_Launch2: Qt_Key = 16777380;
373pub const Qt_Key_Key_Launch3: Qt_Key = 16777381;
374pub const Qt_Key_Key_Launch4: Qt_Key = 16777382;
375pub const Qt_Key_Key_Launch5: Qt_Key = 16777383;
376pub const Qt_Key_Key_Launch6: Qt_Key = 16777384;
377pub const Qt_Key_Key_Launch7: Qt_Key = 16777385;
378pub const Qt_Key_Key_Launch8: Qt_Key = 16777386;
379pub const Qt_Key_Key_Launch9: Qt_Key = 16777387;
380pub const Qt_Key_Key_LaunchA: Qt_Key = 16777388;
381pub const Qt_Key_Key_LaunchB: Qt_Key = 16777389;
382pub const Qt_Key_Key_LaunchC: Qt_Key = 16777390;
383pub const Qt_Key_Key_LaunchD: Qt_Key = 16777391;
384pub const Qt_Key_Key_LaunchE: Qt_Key = 16777392;
385pub const Qt_Key_Key_LaunchF: Qt_Key = 16777393;
386pub const Qt_Key_Key_MonBrightnessUp: Qt_Key = 16777394;
387pub const Qt_Key_Key_MonBrightnessDown: Qt_Key = 16777395;
388pub const Qt_Key_Key_KeyboardLightOnOff: Qt_Key = 16777396;
389pub const Qt_Key_Key_KeyboardBrightnessUp: Qt_Key = 16777397;
390pub const Qt_Key_Key_KeyboardBrightnessDown: Qt_Key = 16777398;
391pub const Qt_Key_Key_PowerOff: Qt_Key = 16777399;
392pub const Qt_Key_Key_WakeUp: Qt_Key = 16777400;
393pub const Qt_Key_Key_Eject: Qt_Key = 16777401;
394pub const Qt_Key_Key_ScreenSaver: Qt_Key = 16777402;
395pub const Qt_Key_Key_WWW: Qt_Key = 16777403;
396pub const Qt_Key_Key_Memo: Qt_Key = 16777404;
397pub const Qt_Key_Key_LightBulb: Qt_Key = 16777405;
398pub const Qt_Key_Key_Shop: Qt_Key = 16777406;
399pub const Qt_Key_Key_History: Qt_Key = 16777407;
400pub const Qt_Key_Key_AddFavorite: Qt_Key = 16777408;
401pub const Qt_Key_Key_HotLinks: Qt_Key = 16777409;
402pub const Qt_Key_Key_BrightnessAdjust: Qt_Key = 16777410;
403pub const Qt_Key_Key_Finance: Qt_Key = 16777411;
404pub const Qt_Key_Key_Community: Qt_Key = 16777412;
405pub const Qt_Key_Key_AudioRewind: Qt_Key = 16777413;
406pub const Qt_Key_Key_BackForward: Qt_Key = 16777414;
407pub const Qt_Key_Key_ApplicationLeft: Qt_Key = 16777415;
408pub const Qt_Key_Key_ApplicationRight: Qt_Key = 16777416;
409pub const Qt_Key_Key_Book: Qt_Key = 16777417;
410pub const Qt_Key_Key_CD: Qt_Key = 16777418;
411pub const Qt_Key_Key_Calculator: Qt_Key = 16777419;
412pub const Qt_Key_Key_ToDoList: Qt_Key = 16777420;
413pub const Qt_Key_Key_ClearGrab: Qt_Key = 16777421;
414pub const Qt_Key_Key_Close: Qt_Key = 16777422;
415pub const Qt_Key_Key_Copy: Qt_Key = 16777423;
416pub const Qt_Key_Key_Cut: Qt_Key = 16777424;
417pub const Qt_Key_Key_Display: Qt_Key = 16777425;
418pub const Qt_Key_Key_DOS: Qt_Key = 16777426;
419pub const Qt_Key_Key_Documents: Qt_Key = 16777427;
420pub const Qt_Key_Key_Excel: Qt_Key = 16777428;
421pub const Qt_Key_Key_Explorer: Qt_Key = 16777429;
422pub const Qt_Key_Key_Game: Qt_Key = 16777430;
423pub const Qt_Key_Key_Go: Qt_Key = 16777431;
424pub const Qt_Key_Key_iTouch: Qt_Key = 16777432;
425pub const Qt_Key_Key_LogOff: Qt_Key = 16777433;
426pub const Qt_Key_Key_Market: Qt_Key = 16777434;
427pub const Qt_Key_Key_Meeting: Qt_Key = 16777435;
428pub const Qt_Key_Key_MenuKB: Qt_Key = 16777436;
429pub const Qt_Key_Key_MenuPB: Qt_Key = 16777437;
430pub const Qt_Key_Key_MySites: Qt_Key = 16777438;
431pub const Qt_Key_Key_News: Qt_Key = 16777439;
432pub const Qt_Key_Key_OfficeHome: Qt_Key = 16777440;
433pub const Qt_Key_Key_Option: Qt_Key = 16777441;
434pub const Qt_Key_Key_Paste: Qt_Key = 16777442;
435pub const Qt_Key_Key_Phone: Qt_Key = 16777443;
436pub const Qt_Key_Key_Calendar: Qt_Key = 16777444;
437pub const Qt_Key_Key_Reply: Qt_Key = 16777445;
438pub const Qt_Key_Key_Reload: Qt_Key = 16777446;
439pub const Qt_Key_Key_RotateWindows: Qt_Key = 16777447;
440pub const Qt_Key_Key_RotationPB: Qt_Key = 16777448;
441pub const Qt_Key_Key_RotationKB: Qt_Key = 16777449;
442pub const Qt_Key_Key_Save: Qt_Key = 16777450;
443pub const Qt_Key_Key_Send: Qt_Key = 16777451;
444pub const Qt_Key_Key_Spell: Qt_Key = 16777452;
445pub const Qt_Key_Key_SplitScreen: Qt_Key = 16777453;
446pub const Qt_Key_Key_Support: Qt_Key = 16777454;
447pub const Qt_Key_Key_TaskPane: Qt_Key = 16777455;
448pub const Qt_Key_Key_Terminal: Qt_Key = 16777456;
449pub const Qt_Key_Key_Tools: Qt_Key = 16777457;
450pub const Qt_Key_Key_Travel: Qt_Key = 16777458;
451pub const Qt_Key_Key_Video: Qt_Key = 16777459;
452pub const Qt_Key_Key_Word: Qt_Key = 16777460;
453pub const Qt_Key_Key_Xfer: Qt_Key = 16777461;
454pub const Qt_Key_Key_ZoomIn: Qt_Key = 16777462;
455pub const Qt_Key_Key_ZoomOut: Qt_Key = 16777463;
456pub const Qt_Key_Key_Away: Qt_Key = 16777464;
457pub const Qt_Key_Key_Messenger: Qt_Key = 16777465;
458pub const Qt_Key_Key_WebCam: Qt_Key = 16777466;
459pub const Qt_Key_Key_MailForward: Qt_Key = 16777467;
460pub const Qt_Key_Key_Pictures: Qt_Key = 16777468;
461pub const Qt_Key_Key_Music: Qt_Key = 16777469;
462pub const Qt_Key_Key_Battery: Qt_Key = 16777470;
463pub const Qt_Key_Key_Bluetooth: Qt_Key = 16777471;
464pub const Qt_Key_Key_WLAN: Qt_Key = 16777472;
465pub const Qt_Key_Key_UWB: Qt_Key = 16777473;
466pub const Qt_Key_Key_AudioForward: Qt_Key = 16777474;
467pub const Qt_Key_Key_AudioRepeat: Qt_Key = 16777475;
468pub const Qt_Key_Key_AudioRandomPlay: Qt_Key = 16777476;
469pub const Qt_Key_Key_Subtitle: Qt_Key = 16777477;
470pub const Qt_Key_Key_AudioCycleTrack: Qt_Key = 16777478;
471pub const Qt_Key_Key_Time: Qt_Key = 16777479;
472pub const Qt_Key_Key_Hibernate: Qt_Key = 16777480;
473pub const Qt_Key_Key_View: Qt_Key = 16777481;
474pub const Qt_Key_Key_TopMenu: Qt_Key = 16777482;
475pub const Qt_Key_Key_PowerDown: Qt_Key = 16777483;
476pub const Qt_Key_Key_Suspend: Qt_Key = 16777484;
477pub const Qt_Key_Key_ContrastAdjust: Qt_Key = 16777485;
478pub const Qt_Key_Key_LaunchG: Qt_Key = 16777486;
479pub const Qt_Key_Key_LaunchH: Qt_Key = 16777487;
480pub const Qt_Key_Key_TouchpadToggle: Qt_Key = 16777488;
481pub const Qt_Key_Key_TouchpadOn: Qt_Key = 16777489;
482pub const Qt_Key_Key_TouchpadOff: Qt_Key = 16777490;
483pub const Qt_Key_Key_MicMute: Qt_Key = 16777491;
484pub const Qt_Key_Key_Red: Qt_Key = 16777492;
485pub const Qt_Key_Key_Green: Qt_Key = 16777493;
486pub const Qt_Key_Key_Yellow: Qt_Key = 16777494;
487pub const Qt_Key_Key_Blue: Qt_Key = 16777495;
488pub const Qt_Key_Key_ChannelUp: Qt_Key = 16777496;
489pub const Qt_Key_Key_ChannelDown: Qt_Key = 16777497;
490pub const Qt_Key_Key_Guide: Qt_Key = 16777498;
491pub const Qt_Key_Key_Info: Qt_Key = 16777499;
492pub const Qt_Key_Key_Settings: Qt_Key = 16777500;
493pub const Qt_Key_Key_MicVolumeUp: Qt_Key = 16777501;
494pub const Qt_Key_Key_MicVolumeDown: Qt_Key = 16777502;
495pub const Qt_Key_Key_New: Qt_Key = 16777504;
496pub const Qt_Key_Key_Open: Qt_Key = 16777505;
497pub const Qt_Key_Key_Find: Qt_Key = 16777506;
498pub const Qt_Key_Key_Undo: Qt_Key = 16777507;
499pub const Qt_Key_Key_Redo: Qt_Key = 16777508;
500pub const Qt_Key_Key_MediaLast: Qt_Key = 16842751;
501pub const Qt_Key_Key_Select: Qt_Key = 16842752;
502pub const Qt_Key_Key_Yes: Qt_Key = 16842753;
503pub const Qt_Key_Key_No: Qt_Key = 16842754;
504pub const Qt_Key_Key_Cancel: Qt_Key = 16908289;
505pub const Qt_Key_Key_Printer: Qt_Key = 16908290;
506pub const Qt_Key_Key_Execute: Qt_Key = 16908291;
507pub const Qt_Key_Key_Sleep: Qt_Key = 16908292;
508pub const Qt_Key_Key_Play: Qt_Key = 16908293;
509pub const Qt_Key_Key_Zoom: Qt_Key = 16908294;
510pub const Qt_Key_Key_Exit: Qt_Key = 16908298;
511pub const Qt_Key_Key_Context1: Qt_Key = 17825792;
512pub const Qt_Key_Key_Context2: Qt_Key = 17825793;
513pub const Qt_Key_Key_Context3: Qt_Key = 17825794;
514pub const Qt_Key_Key_Context4: Qt_Key = 17825795;
515pub const Qt_Key_Key_Call: Qt_Key = 17825796;
516pub const Qt_Key_Key_Hangup: Qt_Key = 17825797;
517pub const Qt_Key_Key_Flip: Qt_Key = 17825798;
518pub const Qt_Key_Key_ToggleCallHangup: Qt_Key = 17825799;
519pub const Qt_Key_Key_VoiceDial: Qt_Key = 17825800;
520pub const Qt_Key_Key_LastNumberRedial: Qt_Key = 17825801;
521pub const Qt_Key_Key_Camera: Qt_Key = 17825824;
522pub const Qt_Key_Key_CameraFocus: Qt_Key = 17825825;
523pub const Qt_Key_Key_unknown: Qt_Key = 33554431;
524pub type Qt_Key = ::std::os::raw::c_uint;
525pub const Qt_CursorShape_ArrowCursor: Qt_CursorShape = 0;
526pub const Qt_CursorShape_UpArrowCursor: Qt_CursorShape = 1;
527pub const Qt_CursorShape_CrossCursor: Qt_CursorShape = 2;
528pub const Qt_CursorShape_WaitCursor: Qt_CursorShape = 3;
529pub const Qt_CursorShape_IBeamCursor: Qt_CursorShape = 4;
530pub const Qt_CursorShape_SizeVerCursor: Qt_CursorShape = 5;
531pub const Qt_CursorShape_SizeHorCursor: Qt_CursorShape = 6;
532pub const Qt_CursorShape_SizeBDiagCursor: Qt_CursorShape = 7;
533pub const Qt_CursorShape_SizeFDiagCursor: Qt_CursorShape = 8;
534pub const Qt_CursorShape_SizeAllCursor: Qt_CursorShape = 9;
535pub const Qt_CursorShape_BlankCursor: Qt_CursorShape = 10;
536pub const Qt_CursorShape_SplitVCursor: Qt_CursorShape = 11;
537pub const Qt_CursorShape_SplitHCursor: Qt_CursorShape = 12;
538pub const Qt_CursorShape_PointingHandCursor: Qt_CursorShape = 13;
539pub const Qt_CursorShape_ForbiddenCursor: Qt_CursorShape = 14;
540pub const Qt_CursorShape_WhatsThisCursor: Qt_CursorShape = 15;
541pub const Qt_CursorShape_BusyCursor: Qt_CursorShape = 16;
542pub const Qt_CursorShape_OpenHandCursor: Qt_CursorShape = 17;
543pub const Qt_CursorShape_ClosedHandCursor: Qt_CursorShape = 18;
544pub const Qt_CursorShape_DragCopyCursor: Qt_CursorShape = 19;
545pub const Qt_CursorShape_DragMoveCursor: Qt_CursorShape = 20;
546pub const Qt_CursorShape_DragLinkCursor: Qt_CursorShape = 21;
547pub const Qt_CursorShape_LastCursor: Qt_CursorShape = 21;
548pub const Qt_CursorShape_BitmapCursor: Qt_CursorShape = 24;
549pub const Qt_CursorShape_CustomCursor: Qt_CursorShape = 25;
550pub type Qt_CursorShape = ::std::os::raw::c_uint;
551pub const Qt_FillRule_OddEvenFill: Qt_FillRule = 0;
552pub const Qt_FillRule_WindingFill: Qt_FillRule = 1;
553pub type Qt_FillRule = ::std::os::raw::c_uint;