]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/qlkey.h
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / qt4 / qlkey.h
1 // -*- C++ -*-
2 /**
3  * \file qlkey.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QLKEY_H
13 #define QLKEY_H
14
15 #include <qnamespace.h>
16 #include <string>
17
18
19 /**
20  * Return true if the key event is a modifier.
21  */
22 bool q_is_modifier(int qkey)
23 {
24         switch (qkey) {
25                 case Qt::Key_Hyper_L:
26                 case Qt::Key_Hyper_R:
27                 case Qt::Key_Super_L:
28                 case Qt::Key_Super_R:
29                 case Qt::Key_Shift:
30                 case Qt::Key_Control:
31                 case Qt::Key_Meta:
32                 case Qt::Key_Alt:
33                         return true;
34         }
35         return false;
36 }
37
38
39 /**
40  * Return the numeric Qt Key corresponding to the
41  * given symbol name.
42  */
43 int string_to_qkey(std::string const & str)
44 {
45         // FIX! (Lgb)
46
47         if (str == "Escape") return Qt::Key_Escape;
48         if (str == "Tab") return Qt::Key_Tab;
49         if (str == "ISO_Left_Tab") return Qt::Key_Tab;
50         if (str == "BackSpace") return Qt::Key_Backspace;
51         if (str == "Return") return Qt::Key_Return;
52         if (str == "KP_Enter") return Qt::Key_Enter; // correct ?
53         if (str == "Insert") return Qt::Key_Insert;
54         if (str == "KP_Insert") return Qt::Key_Insert;
55         if (str == "Delete") return Qt::Key_Delete;
56         if (str == "KP_Delete") return Qt::Key_Delete;
57         if (str == "Pause") return Qt::Key_Pause;
58         if (str == "Print") return Qt::Key_Print;
59         if (str == "Sys_Req") return Qt::Key_SysReq;
60         if (str == "Home") return Qt::Key_Home;
61         if (str == "End") return Qt::Key_End;
62         if (str == "Left") return Qt::Key_Left;
63         if (str == "Up") return Qt::Key_Up;
64         if (str == "Right") return Qt::Key_Right;
65         if (str == "Down") return Qt::Key_Down;
66         if (str == "Prior") return Qt::Key_PageUp;
67         if (str == "Next") return Qt::Key_PageDown;
68         if (str == "KP_Home") return Qt::Key_Home;
69         if (str == "KP_End") return Qt::Key_End;
70         if (str == "KP_Left") return Qt::Key_Left;
71         if (str == "KP_Up") return Qt::Key_Up;
72         if (str == "KP_Right") return Qt::Key_Right;
73         if (str == "KP_Down") return Qt::Key_Down;
74         if (str == "KP_Prior") return Qt::Key_PageUp;
75         if (str == "KP_Next") return Qt::Key_PageDown;
76         if (str == "Shift_L") return Qt::Key_Shift;
77         if (str == "Control_L") return Qt::Key_Control;
78         if (str == "Alt_L") return Qt::Key_Meta; // correct ?
79         if (str == "Alt_R") return Qt::Key_Alt;
80         if (str == "Caps_Lock") return Qt::Key_CapsLock;
81         if (str == "Num_Lock") return Qt::Key_NumLock;
82         if (str == "Scroll_Lock") return Qt::Key_ScrollLock;
83         if (str == "F1") return Qt::Key_F1;
84         if (str == "F2") return Qt::Key_F2;
85         if (str == "F3") return Qt::Key_F3;
86         if (str == "F4") return Qt::Key_F4;
87         if (str == "F5") return Qt::Key_F5;
88         if (str == "F6") return Qt::Key_F6;
89         if (str == "F7") return Qt::Key_F7;
90         if (str == "F8") return Qt::Key_F8;
91         if (str == "F9") return Qt::Key_F9;
92         if (str == "F10") return Qt::Key_F10;
93         if (str == "F11") return Qt::Key_F11;
94         if (str == "F12") return Qt::Key_F12;
95         if (str == "F13") return Qt::Key_F13;
96         if (str == "F14") return Qt::Key_F14;
97         if (str == "F15") return Qt::Key_F15;
98         if (str == "F16") return Qt::Key_F16;
99         if (str == "F17") return Qt::Key_F17;
100         if (str == "F18") return Qt::Key_F18;
101         if (str == "F19") return Qt::Key_F19;
102         if (str == "F20") return Qt::Key_F20;
103         if (str == "F21") return Qt::Key_F21;
104         if (str == "F22") return Qt::Key_F22;
105         if (str == "F23") return Qt::Key_F23;
106         if (str == "F24") return Qt::Key_F24;
107         if (str == "F25") return Qt::Key_F25;
108         if (str == "F26") return Qt::Key_F26;
109         if (str == "F27") return Qt::Key_F27;
110         if (str == "F28") return Qt::Key_F28;
111         if (str == "F29") return Qt::Key_F29;
112         if (str == "F30") return Qt::Key_F30;
113         if (str == "F31") return Qt::Key_F31;
114         if (str == "F32") return Qt::Key_F32;
115         if (str == "F33") return Qt::Key_F33;
116         if (str == "F34") return Qt::Key_F34;
117         if (str == "F35") return Qt::Key_F35;
118         if (str == "0") return Qt::Key_0;
119         if (str == "1") return Qt::Key_1;
120         if (str == "2") return Qt::Key_2;
121         if (str == "3") return Qt::Key_3;
122         if (str == "4") return Qt::Key_4;
123         if (str == "5") return Qt::Key_5;
124         if (str == "6") return Qt::Key_6;
125         if (str == "7") return Qt::Key_7;
126         if (str == "8") return Qt::Key_8;
127         if (str == "9") return Qt::Key_9;
128         if (str == "KP_0") return Qt::Key_0;
129         if (str == "KP_1") return Qt::Key_1;
130         if (str == "KP_2") return Qt::Key_2;
131         if (str == "KP_3") return Qt::Key_3;
132         if (str == "KP_4") return Qt::Key_4;
133         if (str == "KP_5") return Qt::Key_5;
134         if (str == "KP_6") return Qt::Key_6;
135         if (str == "KP_7") return Qt::Key_7;
136         if (str == "KP_8") return Qt::Key_8;
137         if (str == "KP_9") return Qt::Key_9;
138         if (str == "colon") return Qt::Key_Colon;
139         if (str == "semicolon") return Qt::Key_Semicolon;
140         if (str == "less") return Qt::Key_Less;
141         if (str == "equal") return Qt::Key_Equal;
142         if (str == "greater") return Qt::Key_Greater;
143         if (str == "question") return Qt::Key_Question;
144         if (str == "at") return Qt::Key_At;
145         if (str == "A") return Qt::Key_A;
146         if (str == "B") return Qt::Key_B;
147         if (str == "C") return Qt::Key_C;
148         if (str == "D") return Qt::Key_D;
149         if (str == "E") return Qt::Key_E;
150         if (str == "F") return Qt::Key_F;
151         if (str == "G") return Qt::Key_G;
152         if (str == "H") return Qt::Key_H;
153         if (str == "I") return Qt::Key_I;
154         if (str == "J") return Qt::Key_J;
155         if (str == "K") return Qt::Key_K;
156         if (str == "L") return Qt::Key_L;
157         if (str == "M") return Qt::Key_M;
158         if (str == "N") return Qt::Key_N;
159         if (str == "O") return Qt::Key_O;
160         if (str == "P") return Qt::Key_P;
161         if (str == "Q") return Qt::Key_Q;
162         if (str == "R") return Qt::Key_R;
163         if (str == "S") return Qt::Key_S;
164         if (str == "T") return Qt::Key_T;
165         if (str == "U") return Qt::Key_U;
166         if (str == "V") return Qt::Key_V;
167         if (str == "W") return Qt::Key_W;
168         if (str == "X") return Qt::Key_X;
169         if (str == "Y") return Qt::Key_Y;
170         if (str == "Z") return Qt::Key_Z;
171         if (str == "a") return Qt::Key_A;
172         if (str == "b") return Qt::Key_B;
173         if (str == "c") return Qt::Key_C;
174         if (str == "d") return Qt::Key_D;
175         if (str == "e") return Qt::Key_E;
176         if (str == "f") return Qt::Key_F;
177         if (str == "g") return Qt::Key_G;
178         if (str == "h") return Qt::Key_H;
179         if (str == "i") return Qt::Key_I;
180         if (str == "j") return Qt::Key_J;
181         if (str == "k") return Qt::Key_K;
182         if (str == "l") return Qt::Key_L;
183         if (str == "m") return Qt::Key_M;
184         if (str == "n") return Qt::Key_N;
185         if (str == "o") return Qt::Key_O;
186         if (str == "p") return Qt::Key_P;
187         if (str == "q") return Qt::Key_Q;
188         if (str == "r") return Qt::Key_R;
189         if (str == "s") return Qt::Key_S;
190         if (str == "t") return Qt::Key_T;
191         if (str == "u") return Qt::Key_U;
192         if (str == "v") return Qt::Key_V;
193         if (str == "w") return Qt::Key_W;
194         if (str == "x") return Qt::Key_X;
195         if (str == "y") return Qt::Key_Y;
196         if (str == "z") return Qt::Key_Z;
197         if (str == "bracketleft") return Qt::Key_BracketLeft;
198         if (str == "backslash") return Qt::Key_Backslash;
199         if (str == "bracketright") return Qt::Key_BracketRight;
200         if (str == "bar") return Qt::Key_Bar;
201         if (str == "underscore") return Qt::Key_Underscore;
202         if (str == "space") return Qt::Key_Space;
203         if (str == "parenleft") return Qt::Key_ParenLeft;
204         if (str == "parenright") return Qt::Key_ParenRight;
205         if (str == "quotedbl") return Qt::Key_QuoteDbl;
206         if (str == "quoteright") return Qt::Key_Apostrophe;
207         if (str == "quoteleft") return Qt::Key_QuoteLeft;
208         if (str == "exclam") return Qt::Key_Exclam;
209         if (str == "numbersign") return Qt::Key_NumberSign;
210         if (str == "asciicircum") return Qt::Key_AsciiCircum;
211         if (str == "dollar") return Qt::Key_Dollar;
212         if (str == "percent") return Qt::Key_Percent;
213         if (str == "ampersand") return Qt::Key_Ampersand;
214         if (str == "asterisk") return Qt::Key_Asterisk;
215         if (str == "KP_Multiply") return Qt::Key_Asterisk;
216         if (str == "apostrophe") return Qt::Key_Apostrophe;
217         if (str == "plus") return Qt::Key_Plus;
218         if (str == "KP_Add") return Qt::Key_Plus;
219         if (str == "minus") return Qt::Key_Minus;
220         if (str == "KP_Subtract") return Qt::Key_Minus;
221         if (str == "comma") return Qt::Key_Comma;
222         if (str == "period") return Qt::Key_Period;
223         if (str == "KP_Decimal") return Qt::Key_Period;
224         if (str == "slash") return Qt::Key_Slash;
225         if (str == "KP_Divide") return Qt::Key_Slash;
226         if (str == "asciitilde") return Qt::Key_AsciiTilde;
227         if (str == "braceleft") return Qt::Key_BraceLeft;
228         if (str == "braceright") return Qt::Key_BraceRight;
229         if (str == "grave") return Qt::Key_QuoteLeft; // ???
230         if (str == "notsign") return Qt::Key_notsign;
231         if (str == "nobreakspace") return Qt::Key_nobreakspace;
232         if (str == "exclamdown") return Qt::Key_exclamdown;
233         if (str == "cent") return Qt::Key_cent;
234         if (str == "sterling") return Qt::Key_sterling;
235         if (str == "currency") return Qt::Key_currency;
236         if (str == "yen") return Qt::Key_yen;
237         if (str == "brokenbar") return Qt::Key_brokenbar;
238         if (str == "section") return Qt::Key_section;
239         if (str == "diaeresis") return Qt::Key_diaeresis;
240         if (str == "copyright") return Qt::Key_copyright;
241         if (str == "ordfeminine") return Qt::Key_ordfeminine;
242         if (str == "guillemotleft") return Qt::Key_guillemotleft;
243         if (str == "hyphen") return Qt::Key_hyphen;
244         if (str == "registered") return Qt::Key_registered;
245         if (str == "macron") return Qt::Key_macron;
246         if (str == "degree") return Qt::Key_degree;
247         if (str == "plusminus") return Qt::Key_plusminus;
248         if (str == "twosuperior") return Qt::Key_twosuperior;
249         if (str == "threesuperior") return Qt::Key_threesuperior;
250         if (str == "acute") return Qt::Key_acute;
251         if (str == "mu") return Qt::Key_mu;
252         if (str == "paragraph") return Qt::Key_paragraph;
253         if (str == "periodcentered") return Qt::Key_periodcentered;
254         if (str == "cedilla") return Qt::Key_cedilla;
255         if (str == "onesuperior") return Qt::Key_onesuperior;
256         if (str == "masculine") return Qt::Key_masculine;
257         if (str == "guillemotright") return Qt::Key_guillemotright;
258         if (str == "onequarter") return Qt::Key_onequarter;
259         if (str == "onehalf") return Qt::Key_onehalf;
260         if (str == "threequarters") return Qt::Key_threequarters;
261         if (str == "questiondown") return Qt::Key_questiondown;
262         if (str == "Agrave") return Qt::Key_Agrave;
263         if (str == "Aacute") return Qt::Key_Aacute;
264         if (str == "Acircumflex") return Qt::Key_Acircumflex;
265         if (str == "Atilde") return Qt::Key_Atilde;
266         if (str == "Adiaeresis") return Qt::Key_Adiaeresis;
267         if (str == "Aring") return Qt::Key_Aring;
268         if (str == "AE") return Qt::Key_AE;
269         if (str == "Ccedilla") return Qt::Key_Ccedilla;
270         if (str == "Egrave") return Qt::Key_Egrave;
271         if (str == "Eacute") return Qt::Key_Eacute;
272         if (str == "Ecircumflex") return Qt::Key_Ecircumflex;
273         if (str == "Ediaeresis") return Qt::Key_Ediaeresis;
274         if (str == "Igrave") return Qt::Key_Igrave;
275         if (str == "Iacute") return Qt::Key_Iacute;
276         if (str == "Icircumflex") return Qt::Key_Icircumflex;
277         if (str == "Idiaeresis") return Qt::Key_Idiaeresis;
278         if (str == "ETH") return Qt::Key_ETH;
279         if (str == "Ntilde") return Qt::Key_Ntilde;
280         if (str == "Ograve") return Qt::Key_Ograve;
281         if (str == "Oacute") return Qt::Key_Oacute;
282         if (str == "Ocircumflex") return Qt::Key_Ocircumflex;
283         if (str == "Otilde") return Qt::Key_Otilde;
284         if (str == "Odiaeresis") return Qt::Key_Odiaeresis;
285         if (str == "multiply") return Qt::Key_multiply;
286         if (str == "Ooblique") return Qt::Key_Ooblique;
287         if (str == "Ugrave") return Qt::Key_Ugrave;
288         if (str == "Uacute") return Qt::Key_Uacute;
289         if (str == "Ucircumflex") return Qt::Key_Ucircumflex;
290         if (str == "Udiaeresis") return Qt::Key_Udiaeresis;
291         if (str == "Yacute") return Qt::Key_Yacute;
292         if (str == "THORN") return Qt::Key_THORN;
293         if (str == "ssharp") return Qt::Key_ssharp;
294         if (str == "agrave") return Qt::Key_Agrave;
295         if (str == "aacute") return Qt::Key_Aacute;
296         if (str == "acircumflex") return Qt::Key_Acircumflex;
297         if (str == "atilde") return Qt::Key_Atilde;
298         if (str == "adiaeresis") return Qt::Key_Adiaeresis;
299         if (str == "aring") return Qt::Key_Aring;
300         if (str == "ae") return Qt::Key_AE;
301         if (str == "ccedilla") return Qt::Key_Ccedilla;
302         if (str == "egrave") return Qt::Key_Egrave;
303         if (str == "eacute") return Qt::Key_Eacute;
304         if (str == "ecircumflex") return Qt::Key_Ecircumflex;
305         if (str == "ediaeresis") return Qt::Key_Ediaeresis;
306         if (str == "igrave") return Qt::Key_Igrave;
307         if (str == "iacute") return Qt::Key_Iacute;
308         if (str == "icircumflex") return Qt::Key_Icircumflex;
309         if (str == "idiaeresis") return Qt::Key_Idiaeresis;
310         if (str == "eth") return Qt::Key_ETH;
311         if (str == "ntilde") return Qt::Key_Ntilde;
312         if (str == "ograve") return Qt::Key_Ograve;
313         if (str == "oacute") return Qt::Key_Oacute;
314         if (str == "ocircumflex") return Qt::Key_Ocircumflex;
315         if (str == "otilde") return Qt::Key_Otilde;
316         if (str == "odiaeresis") return Qt::Key_Odiaeresis;
317         if (str == "division") return Qt::Key_division;
318         if (str == "oslash") return Qt::Key_Ooblique;
319         if (str == "ugrave") return Qt::Key_Ugrave;
320         if (str == "uacute") return Qt::Key_Uacute;
321         if (str == "ucircumflex") return Qt::Key_Ucircumflex;
322         if (str == "udiaeresis") return Qt::Key_Udiaeresis;
323         if (str == "yacute") return Qt::Key_Yacute;
324         if (str == "thorn") return Qt::Key_THORN;
325         if (str == "ydiaeresis") return Qt::Key_ydiaeresis;
326
327         // FIXME, correct for all these ?
328         if (str == "Super_L") return Qt::Key_Super_L;
329         if (str == "Super_R") return Qt::Key_Super_R;
330         if (str == "Menu") return Qt::Key_Menu;
331         if (str == "Hyper_L") return Qt::Key_Hyper_L;
332         if (str == "Hyper_R") return Qt::Key_Hyper_R;
333         if (str == "Help") return Qt::Key_Help;
334         if (str == "BackTab") return Qt::Key_Backtab;
335
336         return Qt::Key_unknown;
337 }
338
339
340 /**
341  * qkey_to_string - convert Qt keypress into LyX
342  *
343  * Convert the Qt keypress into a string understandable
344  * by the LyX core (same as XKeysymToString).
345  */
346 std::string const qkey_to_string(int lkey)
347 {
348         switch (lkey) {
349         case Qt::Key_Escape: return "Escape";
350         case Qt::Key_Backspace: return "BackSpace";
351         case Qt::Key_Insert: return "Insert";
352         case Qt::Key_Delete: return "Delete";
353         case Qt::Key_Pause: return "Pause";
354         case Qt::Key_Print: return "Print";
355         case Qt::Key_SysReq: return "Sys_Req";
356         case Qt::Key_Home: return "Home";
357         case Qt::Key_End: return "End";
358         case Qt::Key_Left: return "Left";
359         case Qt::Key_Up: return "Up";
360         case Qt::Key_Right: return "Right";
361         case Qt::Key_Down: return "Down";
362         case Qt::Key_PageUp: return "Prior";
363         case Qt::Key_PageDown: return "Next";
364         case Qt::Key_Shift: return "Shift_L";
365         case Qt::Key_Control: return "Control_L";
366         case Qt::Key_Meta: return "Alt_L"; // correct ?
367         case Qt::Key_Alt: return "Alt_R";
368         case Qt::Key_CapsLock: return "Caps_Lock";
369         case Qt::Key_NumLock: return "Num_Lock";
370         case Qt::Key_ScrollLock: return "Scroll_Lock";
371         case Qt::Key_F1: return "F1";
372         case Qt::Key_F2: return "F2";
373         case Qt::Key_F3: return "F3";
374         case Qt::Key_F4: return "F4";
375         case Qt::Key_F5: return "F5";
376         case Qt::Key_F6: return "F6";
377         case Qt::Key_F7: return "F7";
378         case Qt::Key_F8: return "F8";
379         case Qt::Key_F9: return "F9";
380         case Qt::Key_F10: return "F10";
381         case Qt::Key_F11: return "F11";
382         case Qt::Key_F12: return "F12";
383         case Qt::Key_F13: return "F13";
384         case Qt::Key_F14: return "F14";
385         case Qt::Key_F15: return "F15";
386         case Qt::Key_F16: return "F16";
387         case Qt::Key_F17: return "F17";
388         case Qt::Key_F18: return "F18";
389         case Qt::Key_F19: return "F19";
390         case Qt::Key_F20: return "F20";
391         case Qt::Key_F21: return "F21";
392         case Qt::Key_F22: return "F22";
393         case Qt::Key_F23: return "F23";
394         case Qt::Key_F24: return "F24";
395         case Qt::Key_F25: return "F25";
396         case Qt::Key_F26: return "F26";
397         case Qt::Key_F27: return "F27";
398         case Qt::Key_F28: return "F28";
399         case Qt::Key_F29: return "F29";
400         case Qt::Key_F30: return "F30";
401         case Qt::Key_F31: return "F31";
402         case Qt::Key_F32: return "F32";
403         case Qt::Key_F33: return "F33";
404         case Qt::Key_F34: return "F34";
405         case Qt::Key_F35: return "F35";
406         case Qt::Key_Colon: return "colon";
407         case Qt::Key_Semicolon: return "semicolon";
408         case Qt::Key_Less: return "less";
409         case Qt::Key_Equal: return "equal";
410         case Qt::Key_Greater: return "greater";
411         case Qt::Key_Question: return "question";
412         case Qt::Key_At: return "at";
413         case Qt::Key_BracketLeft: return "bracketleft";
414         case Qt::Key_Backslash: return "backslash";
415         case Qt::Key_BracketRight: return "bracketright";
416         case Qt::Key_Underscore: return "underscore";
417         case Qt::Key_Space: return "space";
418         case Qt::Key_ParenLeft: return "parenleft";
419         case Qt::Key_ParenRight: return "parenright";
420         case Qt::Key_QuoteDbl: return "quotedbl";
421         case Qt::Key_Exclam: return "exclam";
422         case Qt::Key_NumberSign: return "numbersign";
423         case Qt::Key_AsciiCircum: return "asciicircum";
424         case Qt::Key_Dollar: return "dollar";
425         case Qt::Key_Percent: return "percent";
426         case Qt::Key_Ampersand: return "ampersand";
427         case Qt::Key_Asterisk: return "asterisk";
428         case Qt::Key_Apostrophe: return "apostrophe";
429         case Qt::Key_Plus: return "plus";
430         case Qt::Key_Minus: return "minus";
431         case Qt::Key_Comma: return "comma";
432         case Qt::Key_Period: return "period";
433         case Qt::Key_Slash: return "slash";
434         case Qt::Key_AsciiTilde: return "asciitilde";
435         case Qt::Key_BraceLeft: return "braceleft";
436         case Qt::Key_BraceRight: return "braceright";
437         case Qt::Key_QuoteLeft: return "grave"; // ???
438         case Qt::Key_notsign: return "notsign";
439         case Qt::Key_nobreakspace: return "nobreakspace";
440         case Qt::Key_exclamdown: return "exclamdown";
441         case Qt::Key_cent: return "cent";
442         case Qt::Key_sterling: return "sterling";
443         case Qt::Key_currency: return "currency";
444         case Qt::Key_yen: return "yen";
445         case Qt::Key_brokenbar: return "brokenbar";
446         case Qt::Key_section: return "section";
447         case Qt::Key_diaeresis: return "diaeresis";
448         case Qt::Key_copyright: return "copyright";
449         case Qt::Key_ordfeminine: return "ordfeminine";
450         case Qt::Key_guillemotleft: return "guillemotleft";
451         case Qt::Key_hyphen: return "hyphen";
452         case Qt::Key_registered: return "registered";
453         case Qt::Key_macron: return "macron";
454         case Qt::Key_degree: return "degree";
455         case Qt::Key_plusminus: return "plusminus";
456         case Qt::Key_twosuperior: return "twosuperior";
457         case Qt::Key_threesuperior: return "threesuperior";
458         case Qt::Key_acute: return "acute";
459         case Qt::Key_mu: return "mu";
460         case Qt::Key_paragraph: return "paragraph";
461         case Qt::Key_periodcentered: return "periodcentered";
462         case Qt::Key_cedilla: return "cedilla";
463         case Qt::Key_onesuperior: return "onesuperior";
464         case Qt::Key_masculine: return "masculine";
465         case Qt::Key_guillemotright: return "guillemotright";
466         case Qt::Key_onequarter: return "onequarter";
467         case Qt::Key_onehalf: return "onehalf";
468         case Qt::Key_threequarters: return "threequarters";
469         case Qt::Key_questiondown: return "questiondown";
470         case Qt::Key_Agrave: return "Agrave";
471         case Qt::Key_Aacute: return "Aacute";
472         case Qt::Key_Acircumflex: return "Acircumflex";
473         case Qt::Key_Atilde: return "Atilde";
474         case Qt::Key_Adiaeresis: return "Adiaeresis";
475         case Qt::Key_Aring: return "Aring";
476         case Qt::Key_AE: return "AE";
477         case Qt::Key_Ccedilla: return "Ccedilla";
478         case Qt::Key_Egrave: return "Egrave";
479         case Qt::Key_Eacute: return "Eacute";
480         case Qt::Key_Ecircumflex: return "Ecircumflex";
481         case Qt::Key_Ediaeresis: return "Ediaeresis";
482         case Qt::Key_Igrave: return "Igrave";
483         case Qt::Key_Iacute: return "Iacute";
484         case Qt::Key_Icircumflex: return "Icircumflex";
485         case Qt::Key_Idiaeresis: return "Idiaeresis";
486         case Qt::Key_ETH: return "ETH";
487         case Qt::Key_Ntilde: return "Ntilde";
488         case Qt::Key_Ograve: return "Ograve";
489         case Qt::Key_Oacute: return "Oacute";
490         case Qt::Key_Ocircumflex: return "Ocircumflex";
491         case Qt::Key_Otilde: return "Otilde";
492         case Qt::Key_Odiaeresis: return "Odiaeresis";
493         case Qt::Key_multiply: return "multiply";
494         case Qt::Key_Ooblique: return "Ooblique";
495         case Qt::Key_Ugrave: return "Ugrave";
496         case Qt::Key_Uacute: return "Uacute";
497         case Qt::Key_Ucircumflex: return "Ucircumflex";
498         case Qt::Key_Udiaeresis: return "Udiaeresis";
499         case Qt::Key_Yacute: return "Yacute";
500         case Qt::Key_THORN: return "THORN";
501         case Qt::Key_ssharp: return "ssharp";
502         case Qt::Key_ydiaeresis: return "ydiaeresis";
503
504         // FIXME: these ones I don't know the names of ... help !
505         // what's here is basically guesses ...
506         case Qt::Key_Super_L: return "Super_L";
507         case Qt::Key_Super_R: return "Super_R";
508         case Qt::Key_Menu: return "Menu";
509         case Qt::Key_Hyper_L: return "Hyper_L";
510         case Qt::Key_Hyper_R: return "Hyper_R";
511         case Qt::Key_Help: return "Help";
512         case Qt::Key_Bar: return "Bar";
513         case Qt::Key_Backtab: return "BackTab";
514
515         default:
516         case Qt::Key_unknown: return "";
517         }
518 }
519
520 #endif // QLKEY_H