]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiKeySymbol.cpp
amend 99b1488f0e591539b5597d36dbadda26844b2078 - on Mac the include is needed
[lyx.git] / src / frontends / qt / GuiKeySymbol.cpp
1 /**
2  * \file qt/GuiKeySymbol.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger & Jürgen
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiKeySymbol.h"
14 #if defined(Q_OS_MAC) && QT_VERSION > 0x050000
15 #include "GuiApplication.h"
16 #endif
17 #include "qt_helpers.h"
18
19 #include "support/lassert.h"
20 #include "support/debug.h"
21
22 #include "Encoding.h"
23 #include "Language.h"
24
25 #include <QKeyEvent>
26 #include <QKeySequence>
27 #include <QEvent>
28 #include <QTextCodec>
29
30 #include <map>
31 #include <string>
32
33 using namespace std;
34
35
36 namespace lyx {
37
38 /**
39  * Return true if the key event is a modifier.
40  */
41 static bool isModifier(int qkey)
42 {
43         switch (qkey) {
44                 case Qt::Key_Hyper_L:
45                 case Qt::Key_Hyper_R:
46                 case Qt::Key_Super_L:
47                 case Qt::Key_Super_R:
48                 case Qt::Key_Shift:
49                 case Qt::Key_Control:
50                 case Qt::Key_Meta:
51                 case Qt::Key_Alt:
52                 case Qt::Key_AltGr:
53                         return true;
54         }
55         return false;
56 }
57
58
59 /**
60  * Return the numeric Qt Key corresponding to the
61  * given symbol name.
62  */
63 static int string_to_qkey(std::string const & str)
64 {
65         // FIX! (Lgb)
66
67         if (str == "Escape") return Qt::Key_Escape;
68         if (str == "Tab") return Qt::Key_Tab;
69         if (str == "ISO_Left_Tab") return Qt::Key_Backtab;
70         if (str == "BackSpace") return Qt::Key_Backspace;
71         if (str == "Return") return Qt::Key_Return;
72         if (str == "KP_Enter") return Qt::Key_Enter; // correct ?
73         if (str == "Insert") return Qt::Key_Insert;
74         if (str == "KP_Insert") return Qt::Key_Insert;
75         if (str == "Delete") return Qt::Key_Delete;
76         if (str == "KP_Delete") return Qt::Key_Delete;
77         if (str == "Pause") return Qt::Key_Pause;
78         if (str == "Print") return Qt::Key_Print;
79         if (str == "Sys_Req") return Qt::Key_SysReq;
80         if (str == "Home") return Qt::Key_Home;
81         if (str == "End") return Qt::Key_End;
82         if (str == "Left") return Qt::Key_Left;
83         if (str == "Up") return Qt::Key_Up;
84         if (str == "Right") return Qt::Key_Right;
85         if (str == "Down") return Qt::Key_Down;
86         if (str == "Prior") return Qt::Key_PageUp;
87         if (str == "Next") return Qt::Key_PageDown;
88         if (str == "KP_Home") return Qt::Key_Home;
89         if (str == "KP_End") return Qt::Key_End;
90         if (str == "KP_Left") return Qt::Key_Left;
91         if (str == "KP_Up") return Qt::Key_Up;
92         if (str == "KP_Right") return Qt::Key_Right;
93         if (str == "KP_Down") return Qt::Key_Down;
94         if (str == "KP_Prior") return Qt::Key_PageUp;
95         if (str == "KP_Next") return Qt::Key_PageDown;
96         if (str == "Shift_L") return Qt::Key_Shift;
97         if (str == "Control_L") return Qt::Key_Control;
98         if (str == "Alt_L") return Qt::Key_Meta; // correct ?
99         if (str == "Alt_R") return Qt::Key_Alt;
100         if (str == "Caps_Lock") return Qt::Key_CapsLock;
101         if (str == "Num_Lock") return Qt::Key_NumLock;
102         if (str == "Scroll_Lock") return Qt::Key_ScrollLock;
103         if (str == "F1") return Qt::Key_F1;
104         if (str == "F2") return Qt::Key_F2;
105         if (str == "F3") return Qt::Key_F3;
106         if (str == "F4") return Qt::Key_F4;
107         if (str == "F5") return Qt::Key_F5;
108         if (str == "F6") return Qt::Key_F6;
109         if (str == "F7") return Qt::Key_F7;
110         if (str == "F8") return Qt::Key_F8;
111         if (str == "F9") return Qt::Key_F9;
112         if (str == "F10") return Qt::Key_F10;
113         if (str == "F11") return Qt::Key_F11;
114         if (str == "F12") return Qt::Key_F12;
115         if (str == "F13") return Qt::Key_F13;
116         if (str == "F14") return Qt::Key_F14;
117         if (str == "F15") return Qt::Key_F15;
118         if (str == "F16") return Qt::Key_F16;
119         if (str == "F17") return Qt::Key_F17;
120         if (str == "F18") return Qt::Key_F18;
121         if (str == "F19") return Qt::Key_F19;
122         if (str == "F20") return Qt::Key_F20;
123         if (str == "F21") return Qt::Key_F21;
124         if (str == "F22") return Qt::Key_F22;
125         if (str == "F23") return Qt::Key_F23;
126         if (str == "F24") return Qt::Key_F24;
127         if (str == "F25") return Qt::Key_F25;
128         if (str == "F26") return Qt::Key_F26;
129         if (str == "F27") return Qt::Key_F27;
130         if (str == "F28") return Qt::Key_F28;
131         if (str == "F29") return Qt::Key_F29;
132         if (str == "F30") return Qt::Key_F30;
133         if (str == "F31") return Qt::Key_F31;
134         if (str == "F32") return Qt::Key_F32;
135         if (str == "F33") return Qt::Key_F33;
136         if (str == "F34") return Qt::Key_F34;
137         if (str == "F35") return Qt::Key_F35;
138         if (str == "0") return Qt::Key_0;
139         if (str == "1") return Qt::Key_1;
140         if (str == "2") return Qt::Key_2;
141         if (str == "3") return Qt::Key_3;
142         if (str == "4") return Qt::Key_4;
143         if (str == "5") return Qt::Key_5;
144         if (str == "6") return Qt::Key_6;
145         if (str == "7") return Qt::Key_7;
146         if (str == "8") return Qt::Key_8;
147         if (str == "9") return Qt::Key_9;
148         if (str == "KP_0") return Qt::Key_0;
149         if (str == "KP_1") return Qt::Key_1;
150         if (str == "KP_2") return Qt::Key_2;
151         if (str == "KP_3") return Qt::Key_3;
152         if (str == "KP_4") return Qt::Key_4;
153         if (str == "KP_5") return Qt::Key_5;
154         if (str == "KP_6") return Qt::Key_6;
155         if (str == "KP_7") return Qt::Key_7;
156         if (str == "KP_8") return Qt::Key_8;
157         if (str == "KP_9") return Qt::Key_9;
158         if (str == "colon") return Qt::Key_Colon;
159         if (str == "semicolon") return Qt::Key_Semicolon;
160         if (str == "less") return Qt::Key_Less;
161         if (str == "equal") return Qt::Key_Equal;
162         if (str == "greater") return Qt::Key_Greater;
163         if (str == "question") return Qt::Key_Question;
164         if (str == "at") return Qt::Key_At;
165         if (str == "A") return Qt::Key_A;
166         if (str == "B") return Qt::Key_B;
167         if (str == "C") return Qt::Key_C;
168         if (str == "D") return Qt::Key_D;
169         if (str == "E") return Qt::Key_E;
170         if (str == "F") return Qt::Key_F;
171         if (str == "G") return Qt::Key_G;
172         if (str == "H") return Qt::Key_H;
173         if (str == "I") return Qt::Key_I;
174         if (str == "J") return Qt::Key_J;
175         if (str == "K") return Qt::Key_K;
176         if (str == "L") return Qt::Key_L;
177         if (str == "M") return Qt::Key_M;
178         if (str == "N") return Qt::Key_N;
179         if (str == "O") return Qt::Key_O;
180         if (str == "P") return Qt::Key_P;
181         if (str == "Q") return Qt::Key_Q;
182         if (str == "R") return Qt::Key_R;
183         if (str == "S") return Qt::Key_S;
184         if (str == "T") return Qt::Key_T;
185         if (str == "U") return Qt::Key_U;
186         if (str == "V") return Qt::Key_V;
187         if (str == "W") return Qt::Key_W;
188         if (str == "X") return Qt::Key_X;
189         if (str == "Y") return Qt::Key_Y;
190         if (str == "Z") return Qt::Key_Z;
191         if (str == "a") return Qt::Key_A;
192         if (str == "b") return Qt::Key_B;
193         if (str == "c") return Qt::Key_C;
194         if (str == "d") return Qt::Key_D;
195         if (str == "e") return Qt::Key_E;
196         if (str == "f") return Qt::Key_F;
197         if (str == "g") return Qt::Key_G;
198         if (str == "h") return Qt::Key_H;
199         if (str == "i") return Qt::Key_I;
200         if (str == "j") return Qt::Key_J;
201         if (str == "k") return Qt::Key_K;
202         if (str == "l") return Qt::Key_L;
203         if (str == "m") return Qt::Key_M;
204         if (str == "n") return Qt::Key_N;
205         if (str == "o") return Qt::Key_O;
206         if (str == "p") return Qt::Key_P;
207         if (str == "q") return Qt::Key_Q;
208         if (str == "r") return Qt::Key_R;
209         if (str == "s") return Qt::Key_S;
210         if (str == "t") return Qt::Key_T;
211         if (str == "u") return Qt::Key_U;
212         if (str == "v") return Qt::Key_V;
213         if (str == "w") return Qt::Key_W;
214         if (str == "x") return Qt::Key_X;
215         if (str == "y") return Qt::Key_Y;
216         if (str == "z") return Qt::Key_Z;
217         if (str == "bracketleft") return Qt::Key_BracketLeft;
218         if (str == "backslash") return Qt::Key_Backslash;
219         if (str == "bracketright") return Qt::Key_BracketRight;
220         if (str == "bar") return Qt::Key_Bar;
221         if (str == "underscore") return Qt::Key_Underscore;
222         if (str == "space") return Qt::Key_Space;
223         if (str == "parenleft") return Qt::Key_ParenLeft;
224         if (str == "parenright") return Qt::Key_ParenRight;
225         if (str == "quotedbl") return Qt::Key_QuoteDbl;
226         if (str == "quoteright") return Qt::Key_Apostrophe;
227         if (str == "quoteleft") return Qt::Key_QuoteLeft;
228         if (str == "exclam") return Qt::Key_Exclam;
229         if (str == "numbersign") return Qt::Key_NumberSign;
230         if (str == "asciicircum") return Qt::Key_AsciiCircum;
231         if (str == "dollar") return Qt::Key_Dollar;
232         if (str == "percent") return Qt::Key_Percent;
233         if (str == "ampersand") return Qt::Key_Ampersand;
234         if (str == "asterisk") return Qt::Key_Asterisk;
235         if (str == "KP_Multiply") return Qt::Key_Asterisk;
236         if (str == "apostrophe") return Qt::Key_Apostrophe;
237         if (str == "plus") return Qt::Key_Plus;
238         if (str == "KP_Add") return Qt::Key_Plus;
239         if (str == "minus") return Qt::Key_Minus;
240         if (str == "KP_Subtract") return Qt::Key_Minus;
241         if (str == "comma") return Qt::Key_Comma;
242         if (str == "period") return Qt::Key_Period;
243         if (str == "KP_Decimal") return Qt::Key_Period;
244         if (str == "slash") return Qt::Key_Slash;
245         if (str == "KP_Divide") return Qt::Key_Slash;
246         if (str == "asciitilde") return Qt::Key_AsciiTilde;
247         if (str == "braceleft") return Qt::Key_BraceLeft;
248         if (str == "braceright") return Qt::Key_BraceRight;
249         if (str == "grave") return Qt::Key_QuoteLeft; // ???
250         if (str == "notsign") return Qt::Key_notsign;
251         if (str == "nobreakspace") return Qt::Key_nobreakspace;
252         if (str == "exclamdown") return Qt::Key_exclamdown;
253         if (str == "cent") return Qt::Key_cent;
254         if (str == "sterling") return Qt::Key_sterling;
255         if (str == "currency") return Qt::Key_currency;
256         if (str == "yen") return Qt::Key_yen;
257         if (str == "brokenbar") return Qt::Key_brokenbar;
258         if (str == "section") return Qt::Key_section;
259         if (str == "diaeresis") return Qt::Key_diaeresis;
260         if (str == "copyright") return Qt::Key_copyright;
261         if (str == "ordfeminine") return Qt::Key_ordfeminine;
262         if (str == "guillemotleft") return Qt::Key_guillemotleft;
263         if (str == "hyphen") return Qt::Key_hyphen;
264         if (str == "registered") return Qt::Key_registered;
265         if (str == "macron") return Qt::Key_macron;
266         if (str == "degree") return Qt::Key_degree;
267         if (str == "plusminus") return Qt::Key_plusminus;
268         if (str == "twosuperior") return Qt::Key_twosuperior;
269         if (str == "threesuperior") return Qt::Key_threesuperior;
270         if (str == "acute") return Qt::Key_acute;
271         if (str == "mu") return Qt::Key_mu;
272         if (str == "paragraph") return Qt::Key_paragraph;
273         if (str == "periodcentered") return Qt::Key_periodcentered;
274         if (str == "cedilla") return Qt::Key_cedilla;
275         if (str == "onesuperior") return Qt::Key_onesuperior;
276         if (str == "masculine") return Qt::Key_masculine;
277         if (str == "guillemotright") return Qt::Key_guillemotright;
278         if (str == "onequarter") return Qt::Key_onequarter;
279         if (str == "onehalf") return Qt::Key_onehalf;
280         if (str == "threequarters") return Qt::Key_threequarters;
281         if (str == "questiondown") return Qt::Key_questiondown;
282         if (str == "Agrave") return Qt::Key_Agrave;
283         if (str == "Aacute") return Qt::Key_Aacute;
284         if (str == "Acircumflex") return Qt::Key_Acircumflex;
285         if (str == "Atilde") return Qt::Key_Atilde;
286         if (str == "Adiaeresis") return Qt::Key_Adiaeresis;
287         if (str == "Aring") return Qt::Key_Aring;
288         if (str == "AE") return Qt::Key_AE;
289         if (str == "Ccedilla") return Qt::Key_Ccedilla;
290         if (str == "Egrave") return Qt::Key_Egrave;
291         if (str == "Eacute") return Qt::Key_Eacute;
292         if (str == "Ecircumflex") return Qt::Key_Ecircumflex;
293         if (str == "Ediaeresis") return Qt::Key_Ediaeresis;
294         if (str == "Igrave") return Qt::Key_Igrave;
295         if (str == "Iacute") return Qt::Key_Iacute;
296         if (str == "Icircumflex") return Qt::Key_Icircumflex;
297         if (str == "Idiaeresis") return Qt::Key_Idiaeresis;
298         if (str == "ETH") return Qt::Key_ETH;
299         if (str == "Ntilde") return Qt::Key_Ntilde;
300         if (str == "Ograve") return Qt::Key_Ograve;
301         if (str == "Oacute") return Qt::Key_Oacute;
302         if (str == "Ocircumflex") return Qt::Key_Ocircumflex;
303         if (str == "Otilde") return Qt::Key_Otilde;
304         if (str == "Odiaeresis") return Qt::Key_Odiaeresis;
305         if (str == "multiply") return Qt::Key_multiply;
306         if (str == "Ooblique") return Qt::Key_Ooblique;
307         if (str == "Ugrave") return Qt::Key_Ugrave;
308         if (str == "Uacute") return Qt::Key_Uacute;
309         if (str == "Ucircumflex") return Qt::Key_Ucircumflex;
310         if (str == "Udiaeresis") return Qt::Key_Udiaeresis;
311         if (str == "Yacute") return Qt::Key_Yacute;
312         if (str == "THORN") return Qt::Key_THORN;
313         if (str == "ssharp") return Qt::Key_ssharp;
314         if (str == "agrave") return Qt::Key_Agrave;
315         if (str == "aacute") return Qt::Key_Aacute;
316         if (str == "acircumflex") return Qt::Key_Acircumflex;
317         if (str == "atilde") return Qt::Key_Atilde;
318         if (str == "adiaeresis") return Qt::Key_Adiaeresis;
319         if (str == "aring") return Qt::Key_Aring;
320         if (str == "ae") return Qt::Key_AE;
321         if (str == "ccedilla") return Qt::Key_Ccedilla;
322         if (str == "egrave") return Qt::Key_Egrave;
323         if (str == "eacute") return Qt::Key_Eacute;
324         if (str == "ecircumflex") return Qt::Key_Ecircumflex;
325         if (str == "ediaeresis") return Qt::Key_Ediaeresis;
326         if (str == "igrave") return Qt::Key_Igrave;
327         if (str == "iacute") return Qt::Key_Iacute;
328         if (str == "icircumflex") return Qt::Key_Icircumflex;
329         if (str == "idiaeresis") return Qt::Key_Idiaeresis;
330         if (str == "eth") return Qt::Key_ETH;
331         if (str == "ntilde") return Qt::Key_Ntilde;
332         if (str == "ograve") return Qt::Key_Ograve;
333         if (str == "oacute") return Qt::Key_Oacute;
334         if (str == "ocircumflex") return Qt::Key_Ocircumflex;
335         if (str == "otilde") return Qt::Key_Otilde;
336         if (str == "odiaeresis") return Qt::Key_Odiaeresis;
337         if (str == "division") return Qt::Key_division;
338         if (str == "oslash") return Qt::Key_Ooblique;
339         if (str == "ugrave") return Qt::Key_Ugrave;
340         if (str == "uacute") return Qt::Key_Uacute;
341         if (str == "ucircumflex") return Qt::Key_Ucircumflex;
342         if (str == "udiaeresis") return Qt::Key_Udiaeresis;
343         if (str == "yacute") return Qt::Key_Yacute;
344         if (str == "thorn") return Qt::Key_THORN;
345         if (str == "ydiaeresis") return Qt::Key_ydiaeresis;
346         if (str == "Dead_Caron") return Qt::Key_Dead_Caron;
347
348         // FIXME, correct for all these ?
349         if (str == "Super_L") return Qt::Key_Super_L;
350         if (str == "Super_R") return Qt::Key_Super_R;
351         if (str == "Menu") return Qt::Key_Menu;
352         if (str == "Hyper_L") return Qt::Key_Hyper_L;
353         if (str == "Hyper_R") return Qt::Key_Hyper_R;
354         if (str == "Help") return Qt::Key_Help;
355         if (str == "BackTab") return Qt::Key_Backtab;
356
357         return Qt::Key_unknown;
358 }
359
360
361 /**
362  * qkey_to_string - convert Qt keypress into LyX
363  *
364  * Convert the Qt keypress into a string understandable
365  * by the LyX core (same as XKeysymToString).
366  */
367 static std::string const qkey_to_string(int lkey)
368 {
369         switch (lkey) {
370         case Qt::Key_0: return "0";
371         case Qt::Key_1: return "1";
372         case Qt::Key_2: return "2";
373         case Qt::Key_3: return "3";
374         case Qt::Key_4: return "4";
375         case Qt::Key_5: return "5";
376         case Qt::Key_6: return "6";
377         case Qt::Key_7: return "7";
378         case Qt::Key_8: return "8";
379         case Qt::Key_9: return "9";
380
381         case Qt::Key_A: return "a";
382         case Qt::Key_B: return "b";
383         case Qt::Key_C: return "c";
384         case Qt::Key_D: return "d";
385         case Qt::Key_E: return "e";
386         case Qt::Key_F: return "f";
387         case Qt::Key_G: return "g";
388         case Qt::Key_H: return "h";
389         case Qt::Key_I: return "i";
390         case Qt::Key_J: return "j";
391         case Qt::Key_K: return "k";
392         case Qt::Key_L: return "l";
393         case Qt::Key_M: return "m";
394         case Qt::Key_N: return "n";
395         case Qt::Key_O: return "o";
396         case Qt::Key_P: return "p";
397         case Qt::Key_Q: return "q";
398         case Qt::Key_R: return "r";
399         case Qt::Key_S: return "s";
400         case Qt::Key_T: return "t";
401         case Qt::Key_U: return "u";
402         case Qt::Key_V: return "v";
403         case Qt::Key_W: return "w";
404         case Qt::Key_X: return "x";
405         case Qt::Key_Y: return "y";
406         case Qt::Key_Z: return "z";
407
408         case Qt::Key_Return: return "Return";
409         case Qt::Key_Escape: return "Escape";
410         case Qt::Key_Tab: return "Tab";
411         case Qt::Key_Backspace: return "BackSpace";
412         case Qt::Key_Insert: return "Insert";
413         case Qt::Key_Delete: return "Delete";
414         case Qt::Key_Pause: return "Pause";
415         case Qt::Key_Print: return "Print";
416         case Qt::Key_SysReq: return "Sys_Req";
417         case Qt::Key_Home: return "Home";
418         case Qt::Key_End: return "End";
419         case Qt::Key_Left: return "Left";
420         case Qt::Key_Up: return "Up";
421         case Qt::Key_Right: return "Right";
422         case Qt::Key_Down: return "Down";
423         case Qt::Key_PageUp: return "Prior";
424         case Qt::Key_PageDown: return "Next";
425         case Qt::Key_Shift: return "Shift_L";
426         case Qt::Key_Control: return "Control_L";
427         case Qt::Key_Meta: return "Alt_L"; // correct ?
428         case Qt::Key_Alt: return "Alt_R";
429         case Qt::Key_CapsLock: return "Caps_Lock";
430         case Qt::Key_NumLock: return "Num_Lock";
431         case Qt::Key_ScrollLock: return "Scroll_Lock";
432         case Qt::Key_F1: return "F1";
433         case Qt::Key_F2: return "F2";
434         case Qt::Key_F3: return "F3";
435         case Qt::Key_F4: return "F4";
436         case Qt::Key_F5: return "F5";
437         case Qt::Key_F6: return "F6";
438         case Qt::Key_F7: return "F7";
439         case Qt::Key_F8: return "F8";
440         case Qt::Key_F9: return "F9";
441         case Qt::Key_F10: return "F10";
442         case Qt::Key_F11: return "F11";
443         case Qt::Key_F12: return "F12";
444         case Qt::Key_F13: return "F13";
445         case Qt::Key_F14: return "F14";
446         case Qt::Key_F15: return "F15";
447         case Qt::Key_F16: return "F16";
448         case Qt::Key_F17: return "F17";
449         case Qt::Key_F18: return "F18";
450         case Qt::Key_F19: return "F19";
451         case Qt::Key_F20: return "F20";
452         case Qt::Key_F21: return "F21";
453         case Qt::Key_F22: return "F22";
454         case Qt::Key_F23: return "F23";
455         case Qt::Key_F24: return "F24";
456         case Qt::Key_F25: return "F25";
457         case Qt::Key_F26: return "F26";
458         case Qt::Key_F27: return "F27";
459         case Qt::Key_F28: return "F28";
460         case Qt::Key_F29: return "F29";
461         case Qt::Key_F30: return "F30";
462         case Qt::Key_F31: return "F31";
463         case Qt::Key_F32: return "F32";
464         case Qt::Key_F33: return "F33";
465         case Qt::Key_F34: return "F34";
466         case Qt::Key_F35: return "F35";
467         case Qt::Key_Colon: return "colon";
468         case Qt::Key_Semicolon: return "semicolon";
469         case Qt::Key_Less: return "less";
470         case Qt::Key_Equal: return "equal";
471         case Qt::Key_Greater: return "greater";
472         case Qt::Key_Question: return "question";
473         case Qt::Key_At: return "at";
474         case Qt::Key_BracketLeft: return "bracketleft";
475         case Qt::Key_Backslash: return "backslash";
476         case Qt::Key_BracketRight: return "bracketright";
477         case Qt::Key_Underscore: return "underscore";
478         case Qt::Key_Space: return "space";
479         case Qt::Key_ParenLeft: return "parenleft";
480         case Qt::Key_ParenRight: return "parenright";
481         case Qt::Key_QuoteDbl: return "quotedbl";
482         case Qt::Key_Exclam: return "exclam";
483         case Qt::Key_NumberSign: return "numbersign";
484         case Qt::Key_AsciiCircum: return "asciicircum";
485         case Qt::Key_Dollar: return "dollar";
486         case Qt::Key_Percent: return "percent";
487         case Qt::Key_Ampersand: return "ampersand";
488         case Qt::Key_Asterisk: return "asterisk";
489         case Qt::Key_Apostrophe: return "apostrophe";
490         case Qt::Key_Plus: return "plus";
491         case Qt::Key_Minus: return "minus";
492         case Qt::Key_Comma: return "comma";
493         case Qt::Key_Period: return "period";
494         case Qt::Key_Slash: return "slash";
495         case Qt::Key_AsciiTilde: return "asciitilde";
496         case Qt::Key_BraceLeft: return "braceleft";
497         case Qt::Key_BraceRight: return "braceright";
498         case Qt::Key_QuoteLeft: return "grave"; // ???
499         case Qt::Key_notsign: return "notsign";
500         case Qt::Key_nobreakspace: return "nobreakspace";
501         case Qt::Key_exclamdown: return "exclamdown";
502         case Qt::Key_cent: return "cent";
503         case Qt::Key_sterling: return "sterling";
504         case Qt::Key_currency: return "currency";
505         case Qt::Key_yen: return "yen";
506         case Qt::Key_brokenbar: return "brokenbar";
507         case Qt::Key_section: return "section";
508         case Qt::Key_diaeresis: return "diaeresis";
509         case Qt::Key_copyright: return "copyright";
510         case Qt::Key_ordfeminine: return "ordfeminine";
511         case Qt::Key_guillemotleft: return "guillemotleft";
512         case Qt::Key_hyphen: return "hyphen";
513         case Qt::Key_registered: return "registered";
514         case Qt::Key_macron: return "macron";
515         case Qt::Key_degree: return "degree";
516         case Qt::Key_plusminus: return "plusminus";
517         case Qt::Key_twosuperior: return "twosuperior";
518         case Qt::Key_threesuperior: return "threesuperior";
519         case Qt::Key_acute: return "acute";
520         case Qt::Key_mu: return "mu";
521         case Qt::Key_paragraph: return "paragraph";
522         case Qt::Key_periodcentered: return "periodcentered";
523         case Qt::Key_cedilla: return "cedilla";
524         case Qt::Key_onesuperior: return "onesuperior";
525         case Qt::Key_masculine: return "masculine";
526         case Qt::Key_guillemotright: return "guillemotright";
527         case Qt::Key_onequarter: return "onequarter";
528         case Qt::Key_onehalf: return "onehalf";
529         case Qt::Key_threequarters: return "threequarters";
530         case Qt::Key_questiondown: return "questiondown";
531         case Qt::Key_Agrave: return "Agrave";
532         case Qt::Key_Aacute: return "Aacute";
533         case Qt::Key_Acircumflex: return "Acircumflex";
534         case Qt::Key_Atilde: return "Atilde";
535         case Qt::Key_Adiaeresis: return "Adiaeresis";
536         case Qt::Key_Aring: return "Aring";
537         case Qt::Key_AE: return "AE";
538         case Qt::Key_Ccedilla: return "Ccedilla";
539         case Qt::Key_Egrave: return "Egrave";
540         case Qt::Key_Eacute: return "Eacute";
541         case Qt::Key_Ecircumflex: return "Ecircumflex";
542         case Qt::Key_Ediaeresis: return "Ediaeresis";
543         case Qt::Key_Igrave: return "Igrave";
544         case Qt::Key_Iacute: return "Iacute";
545         case Qt::Key_Icircumflex: return "Icircumflex";
546         case Qt::Key_Idiaeresis: return "Idiaeresis";
547         case Qt::Key_ETH: return "ETH";
548         case Qt::Key_Ntilde: return "Ntilde";
549         case Qt::Key_Ograve: return "Ograve";
550         case Qt::Key_Oacute: return "Oacute";
551         case Qt::Key_Ocircumflex: return "Ocircumflex";
552         case Qt::Key_Otilde: return "Otilde";
553         case Qt::Key_Odiaeresis: return "Odiaeresis";
554         case Qt::Key_multiply: return "multiply";
555         case Qt::Key_Ooblique: return "Ooblique";
556         case Qt::Key_Ugrave: return "Ugrave";
557         case Qt::Key_Uacute: return "Uacute";
558         case Qt::Key_Ucircumflex: return "Ucircumflex";
559         case Qt::Key_Udiaeresis: return "Udiaeresis";
560         case Qt::Key_Yacute: return "Yacute";
561         case Qt::Key_THORN: return "THORN";
562         case Qt::Key_ssharp: return "ssharp";
563         case Qt::Key_ydiaeresis: return "ydiaeresis";
564         case Qt::Key_Bar: return "bar";
565         case Qt::Key_Dead_Caron: return "Dead_Caron";
566
567         // FIXME: these ones I don't know the names of ... help !
568         // what's here is basically guesses ...
569         case Qt::Key_Super_L: return "Super_L";
570         case Qt::Key_Super_R: return "Super_R";
571         case Qt::Key_Menu: return "Menu";
572         case Qt::Key_Hyper_L: return "Hyper_L";
573         case Qt::Key_Hyper_R: return "Hyper_R";
574         case Qt::Key_Help: return "Help";
575         case Qt::Key_Backtab: return "BackTab";
576
577         default:
578         case Qt::Key_unknown: return "";
579         }
580 }
581
582
583 #if 0
584 static char encode(string const & encoding, QString const & str)
585 {
586         typedef map<string, QTextCodec *> EncodingMap;
587         EncodingMap encoding_map;
588
589         QTextCodec * codec = 0;
590
591         EncodingMap::const_iterator cit = encoding_map.find(encoding);
592         if (cit == encoding_map.end()) {
593                 LYXERR(Debug::KEY, "Unrecognised encoding '" << encoding << "'.");
594                 codec = encoding_map.find("")->second;
595         } else {
596                 codec = cit->second;
597         }
598
599         if (!codec) {
600                 LYXERR(Debug::KEY, "No codec for encoding '" << encoding << "' found.");
601                 return 0;
602         }
603
604         LYXERR(Debug::KEY, "Using codec " << codec->name());
605
606         if (!codec->canEncode(str)) {
607                 LYXERR(Debug::KEY, "Oof. Can't encode the text !");
608                 return 0;
609         }
610
611         return codec->fromUnicode(str).data()[0];
612 }
613 #endif
614
615
616 void setKeySymbol(KeySymbol * sym, QKeyEvent const * ev)
617 {
618         sym->setKey(ev->key());
619         if (ev->text().isNull()) {
620                 LYXERR(Debug::KEY, "keyevent has isNull() text !");
621                 sym->setText(docstring());
622                 return;
623         }
624         LYXERR(Debug::KEY, "Getting key " << ev->key() << ", with text '"
625                 << ev->text() << "'");
626         // This is unsafe because ev->text() is the unicode representation of the
627         // key, not the name of the key. For example, Ctrl-x and Alt-x produce
628         // different texts.
629         sym->setText(qstring_to_ucs4(ev->text()));
630         LYXERR(Debug::KEY, "Setting key to " << sym->key() << ", "
631                 << to_utf8(sym->text()));
632 }
633
634
635 void KeySymbol::init(string const & symbolname)
636 {
637         key_ = string_to_qkey(symbolname);
638         text_ = from_utf8(symbolname);
639         LYXERR(Debug::KEY, "Init key to " << key_ << ", " << to_utf8(text_));
640 }
641
642
643 bool KeySymbol::isOK() const
644 {
645         bool const ok = !(text_.empty() && qkey_to_string(key_).empty());
646         LYXERR(Debug::KEY, "isOK is " << ok);
647         return ok;
648 }
649
650
651 bool KeySymbol::isModifier() const
652 {
653         bool const mod = lyx::isModifier(key_);
654         LYXERR(Debug::KEY, "isModifier is " << mod);
655         return mod;
656 }
657
658
659 string KeySymbol::getSymbolName() const
660 {
661         string name = qkey_to_string(key_);
662
663         // others
664         if (name.empty())
665                 name = to_utf8(text_);
666
667         return name;
668 }
669
670
671 char_type KeySymbol::getUCSEncoded() const
672 {
673         if (text_.empty())
674                 return 0;
675
676         // UTF16 has a maximum of two characters.
677         LASSERT(text_.size() <= 2, return 0);
678
679         if (lyxerr.debugging() && text_.size() > 1) {
680                 // We don't know yet how well support the full ucs4 range.
681                 LYXERR(Debug::KEY, "KeySymbol::getUCSEncoded()");
682                 for (int i = 0; i != int(text_.size()); ++i)
683                         LYXERR(Debug::KEY, "char " << i << ": " << int(text_[i]));
684         }
685
686         return text_[0];
687 }
688
689
690 docstring const KeySymbol::print(KeyModifier mod, bool forgui, bool untranslated) const
691 {
692         int tmpkey = key_;
693
694         if (mod & ShiftModifier && !(tmpkey == Qt::Key_Shift))
695                 tmpkey += Qt::ShiftModifier;
696         if (mod & ControlModifier && !(tmpkey == Qt::Key_Control))
697                 tmpkey += Qt::ControlModifier;
698         if (mod & AltModifier && !(tmpkey == Qt::Key_Alt))
699                 tmpkey += Qt::AltModifier;
700         if (mod & MetaModifier && !(tmpkey == Qt::Key_Meta))
701                 tmpkey += Qt::MetaModifier;
702
703         QKeySequence seq(tmpkey);
704         QString str;
705
706         if (forgui)
707                 str = untranslated ? seq.toString(QKeySequence::PortableText)
708                                    : seq.toString(QKeySequence::NativeText);
709         else {
710 #ifdef Q_OS_MAC
711                 // Qt/Mac does not use Command and friends in the
712                 // portable case, but the windows-like Control+x (bug 5421).
713                 str = seq.toString(QKeySequence::NativeText);
714                 str.replace(QChar(0x21E7), qt_("Shift-"));
715                 str.replace(QChar(0x2303), qt_("Control-"));
716                 str.replace(QChar(0x2325), qt_("Option-"));
717                 str.replace(QChar(0x2318), qt_("Command-"));
718 #else
719                 str = seq.toString(QKeySequence::PortableText);
720 #endif
721         }
722
723         return qstring_to_ucs4(str);
724 }
725
726
727 bool KeySymbol::isText() const
728 {
729         if (!text_.empty())
730                 return true;
731         LYXERR(Debug::KEY, "text_ empty, isText() == false");
732         return false;
733 }
734
735
736 bool KeySymbol::operator==(KeySymbol const & ks) const
737 {
738         // we do not have enough info for a fair comparison, so return
739         // false. This works out OK because unknown text from Qt will
740         // get inserted anyway after the isText() check
741         if (key_ == Qt::Key_unknown || ks.key_ == Qt::Key_unknown)
742                 return false;
743         return key_ == ks.key_;
744 }
745
746
747 KeyModifier q_key_state(Qt::KeyboardModifiers state)
748 {
749         KeyModifier k = NoModifier;
750 #if defined(Q_OS_MAC) && QT_VERSION > 0x050000
751         /// Additional check for Control and Meta modifier swap state.
752         /// Starting with Qt 5 the modifiers aren't reported correctly.
753         /// Until this is fixed a correction is required.
754         const bool dontSwapCtrlAndMeta =
755                 frontend::theGuiApp()->testAttribute(Qt::AA_MacDontSwapCtrlAndMeta);
756 #else
757         const bool dontSwapCtrlAndMeta = false;
758 #endif
759
760         if (state & (dontSwapCtrlAndMeta ? Qt::MetaModifier : Qt::ControlModifier))
761                 k |= ControlModifier;
762         if (state & Qt::ShiftModifier)
763                 k |= ShiftModifier;
764         if (state & Qt::AltModifier)
765                 k |= AltModifier;
766 #if defined(USE_MACOSX_PACKAGING) || defined(USE_META_KEYBINDING)
767         if (state & (dontSwapCtrlAndMeta ? Qt::ControlModifier : Qt::MetaModifier))
768                 k |= MetaModifier;
769 #else
770         if (state & Qt::MetaModifier)
771                 k |= AltModifier;
772 #endif
773         return k;
774 }
775
776 } // namespace lyx