Actually implement AltGr as a separate code, rather than Ctrl+Alt.
This commit is contained in:
parent
03ae1481ea
commit
c40a9b8994
@ -174,6 +174,23 @@ extern const int GUAC_KEYSYMS_SHIFT[];
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_ALL_SHIFT[];
|
||||
|
||||
/**
|
||||
* Keysym string containing only the right "alt" key (AltGr).
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_ALTGR[];
|
||||
|
||||
/**
|
||||
* Keysym string containing the right "alt" key (AltGr) and
|
||||
* left shift.
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_SHIFT_ALTGR[];
|
||||
|
||||
/**
|
||||
* Keysym string containing the right "alt" key (AltGr) and
|
||||
* both shift keys.
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_ALL_SHIFT_ALTGR[];
|
||||
|
||||
/**
|
||||
* Keysym string containing only the left "ctrl" key.
|
||||
*/
|
||||
@ -194,11 +211,6 @@ extern const int GUAC_KEYSYMS_ALT[];
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_ALL_ALT[];
|
||||
|
||||
/**
|
||||
* Keysym string containing both "alt" keys.
|
||||
*/
|
||||
extern const int GUAC_KEYSYMS_ALL_ALT[];
|
||||
|
||||
/**
|
||||
* Keysym string containing the left "alt" and left "ctrl" keys
|
||||
*/
|
||||
|
@ -40,6 +40,10 @@
|
||||
const int GUAC_KEYSYMS_SHIFT[] = {0xFFE1, 0};
|
||||
const int GUAC_KEYSYMS_ALL_SHIFT[] = {0xFFE1, 0xFFE2, 0};
|
||||
|
||||
const int GUAC_KEYSYMS_ALTGR[] = {0xFFEA, 0};
|
||||
const int GUAC_KEYSYMS_SHIFT_ALTGR[] = {0xFFE1, 0xFFEA, 0};
|
||||
const int GUAC_KEYSYMS_ALL_SHIFT_ALTGR[] = {0xFFE1, 0xFFE2, 0xFFEA, 0};
|
||||
|
||||
const int GUAC_KEYSYMS_CTRL[] = {0xFFE3, 0};
|
||||
const int GUAC_KEYSYMS_ALL_CTRL[] = {0xFFE3, 0xFFE4, 0};
|
||||
|
||||
|
@ -187,7 +187,11 @@ static guac_rdp_keysym_desc __guac_rdp_keymap_mapping[] = {
|
||||
|
||||
/* Alt_R */
|
||||
{ .keysym = 0xffea, .scancode = 0x38,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL },
|
||||
.flags = KBD_FLAGS_EXTENDED },
|
||||
|
||||
/* ISO_Level3_Shift */
|
||||
{ .keysym = 0xfe03, .scancode = 0x38,
|
||||
.flags = KBD_FLAGS_EXTENDED },
|
||||
|
||||
/* Super_L */
|
||||
{ .keysym = 0xffeb, .scancode = 0x5B,
|
||||
|
@ -52,163 +52,186 @@ static guac_rdp_keysym_desc __guac_rdp_keymap_mapping[] = {
|
||||
|
||||
/* exclam */
|
||||
{ .keysym = 0x0021, .scancode = 0x02,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* quotedbl */
|
||||
{ .keysym = 0x0022, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* numbersign */
|
||||
{ .keysym = 0x0023, .scancode = 0x2b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* dollar */
|
||||
{ .keysym = 0x0024, .scancode = 0x05,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* percent */
|
||||
{ .keysym = 0x0025, .scancode = 0x06,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* ampersand */
|
||||
{ .keysym = 0x0026, .scancode = 0x07,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* quoteright */
|
||||
{ .keysym = 0x0027, .scancode = 0x2b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* parenleft */
|
||||
{ .keysym = 0x0028, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* parenright */
|
||||
{ .keysym = 0x0029, .scancode = 0x0A,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* asterisk */
|
||||
{ .keysym = 0x002a, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* plus */
|
||||
{ .keysym = 0x002b, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* comma */
|
||||
{ .keysym = 0x002c, .scancode = 0x33,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* minus */
|
||||
{ .keysym = 0x002d, .scancode = 0x35,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* period */
|
||||
{ .keysym = 0x002e, .scancode = 0x34,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* slash */
|
||||
{ .keysym = 0x002f, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 0 */
|
||||
{ .keysym = 0x0030, .scancode = 0x0B,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 1 */
|
||||
{ .keysym = 0x0031, .scancode = 0x02,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 2 */
|
||||
{ .keysym = 0x0032, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 3 */
|
||||
{ .keysym = 0x0033, .scancode = 0x04,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 4 */
|
||||
{ .keysym = 0x0034, .scancode = 0x05,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 5 */
|
||||
{ .keysym = 0x0035, .scancode = 0x06,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 6 */
|
||||
{ .keysym = 0x0036, .scancode = 0x07,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 7 */
|
||||
{ .keysym = 0x0037, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 8 */
|
||||
{ .keysym = 0x0038, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* 9 */
|
||||
{ .keysym = 0x0039, .scancode = 0x0A,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* colon */
|
||||
{ .keysym = 0x003a, .scancode = 0x34,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* semicolon */
|
||||
{ .keysym = 0x003b, .scancode = 0x33,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* less */
|
||||
{ .keysym = 0x003c, .scancode = 0x56,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* equal */
|
||||
{ .keysym = 0x003d, .scancode = 0x0B,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* greater */
|
||||
{ .keysym = 0x003e, .scancode = 0x56,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* question */
|
||||
{ .keysym = 0x003f, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* at */
|
||||
{ .keysym = 0x0040, .scancode = 0x10,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* A */
|
||||
{ .keysym = 0x0041, .scancode = 0x1E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* B */
|
||||
{ .keysym = 0x0042, .scancode = 0x30,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* C */
|
||||
{ .keysym = 0x0043, .scancode = 0x2E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* D */
|
||||
{ .keysym = 0x0044, .scancode = 0x20,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* E */
|
||||
{ .keysym = 0x0045, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* F */
|
||||
{ .keysym = 0x0046, .scancode = 0x21,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* G */
|
||||
{ .keysym = 0x0047, .scancode = 0x22,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* H */
|
||||
{ .keysym = 0x0048, .scancode = 0x23,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* I */
|
||||
@ -217,278 +240,301 @@ static guac_rdp_keysym_desc __guac_rdp_keymap_mapping[] = {
|
||||
|
||||
/* J */
|
||||
{ .keysym = 0x004a, .scancode = 0x24,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* K */
|
||||
{ .keysym = 0x004b, .scancode = 0x25,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* L */
|
||||
{ .keysym = 0x004c, .scancode = 0x26,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* M */
|
||||
{ .keysym = 0x004d, .scancode = 0x32,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* N */
|
||||
{ .keysym = 0x004e, .scancode = 0x31,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* O */
|
||||
{ .keysym = 0x004f, .scancode = 0x18,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* P */
|
||||
{ .keysym = 0x0050, .scancode = 0x19,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Q */
|
||||
{ .keysym = 0x0051, .scancode = 0x10,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* R */
|
||||
{ .keysym = 0x0052, .scancode = 0x13,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* S */
|
||||
{ .keysym = 0x0053, .scancode = 0x1F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* T */
|
||||
{ .keysym = 0x0054, .scancode = 0x14,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* U */
|
||||
{ .keysym = 0x0055, .scancode = 0x16,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* V */
|
||||
{ .keysym = 0x0056, .scancode = 0x2F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* W */
|
||||
{ .keysym = 0x0057, .scancode = 0x11,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* X */
|
||||
{ .keysym = 0x0058, .scancode = 0x2D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Y */
|
||||
{ .keysym = 0x0059, .scancode = 0x2c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Z */
|
||||
{ .keysym = 0x005a, .scancode = 0x15,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* bracketleft */
|
||||
{ .keysym = 0x005b, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* backslash */
|
||||
{ .keysym = 0x005c, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* bracketright */
|
||||
{ .keysym = 0x005d, .scancode = 0x0a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* underscore */
|
||||
{ .keysym = 0x005f, .scancode = 0x35,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* dead grave (WRONG) */
|
||||
{ .keysym = 0xfe50, .scancode = 0x0d,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* dead acute (WRONG) */
|
||||
{ .keysym = 0xfe51, .scancode = 0x0d,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* dead circum */
|
||||
{ .keysym = 0xfe52, .scancode = 0x29,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* degree */
|
||||
{ .keysym = 0x00b0, .scancode = 0x29,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* a */
|
||||
{ .keysym = 0x0061, .scancode = 0x1E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* b */
|
||||
{ .keysym = 0x0062, .scancode = 0x30,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* c */
|
||||
{ .keysym = 0x0063, .scancode = 0x2E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* d */
|
||||
{ .keysym = 0x0064, .scancode = 0x20,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* e */
|
||||
{ .keysym = 0x0065, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* f */
|
||||
{ .keysym = 0x0066, .scancode = 0x21,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* g */
|
||||
{ .keysym = 0x0067, .scancode = 0x22,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* h */
|
||||
{ .keysym = 0x0068, .scancode = 0x23,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* i */
|
||||
{ .keysym = 0x0069, .scancode = 0x17,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* j */
|
||||
{ .keysym = 0x006a, .scancode = 0x24,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* k */
|
||||
{ .keysym = 0x006b, .scancode = 0x25,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* l */
|
||||
{ .keysym = 0x006c, .scancode = 0x26,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* m */
|
||||
{ .keysym = 0x006d, .scancode = 0x32,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* n */
|
||||
{ .keysym = 0x006e, .scancode = 0x31,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* o */
|
||||
{ .keysym = 0x006f, .scancode = 0x18,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* p */
|
||||
{ .keysym = 0x0070, .scancode = 0x19,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* q */
|
||||
{ .keysym = 0x0071, .scancode = 0x10,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* r */
|
||||
{ .keysym = 0x0072, .scancode = 0x13,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* s */
|
||||
{ .keysym = 0x0073, .scancode = 0x1F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* t */
|
||||
{ .keysym = 0x0074, .scancode = 0x14,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* u */
|
||||
{ .keysym = 0x0075, .scancode = 0x16,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* v */
|
||||
{ .keysym = 0x0076, .scancode = 0x2F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* w */
|
||||
{ .keysym = 0x0077, .scancode = 0x11,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* x */
|
||||
{ .keysym = 0x0078, .scancode = 0x2D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* y */
|
||||
{ .keysym = 0x0079, .scancode = 0x2c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* z */
|
||||
{ .keysym = 0x007a, .scancode = 0x15,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* ä */
|
||||
{ .keysym = 0x00e4, .scancode = 0x28,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* Ä */
|
||||
{ .keysym = 0x00c4, .scancode = 0x28,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* ö */
|
||||
{ .keysym = 0x00f6, .scancode = 0x27,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* Ö */
|
||||
{ .keysym = 0x00d6, .scancode = 0x27,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* ü */
|
||||
{ .keysym = 0x00fc, .scancode = 0x1a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* Ü */
|
||||
{ .keysym = 0x00dc, .scancode = 0x1a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* ß */
|
||||
{ .keysym = 0x00df, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* braceleft */
|
||||
{ .keysym = 0x007b, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* bar */
|
||||
{ .keysym = 0x007c, .scancode = 0x56,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* braceright */
|
||||
{ .keysym = 0x007d, .scancode = 0x0b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* dead tilde */
|
||||
{ .keysym = 0xfe53, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* euro */
|
||||
{ .keysym = 0x10020ac, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* mu */
|
||||
{ .keysym = 0x00b5, .scancode = 0x32,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* two superior */
|
||||
{ .keysym = 0x00b2, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* three superior */
|
||||
{ .keysym = 0x00b3, .scancode = 0x04,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
{0}
|
||||
|
||||
|
@ -54,448 +54,495 @@ static guac_rdp_keysym_desc __guac_rdp_keymap_mapping[] = {
|
||||
|
||||
/* exclam */
|
||||
{ .keysym = 0x0021, .scancode = 0x35,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* quotedbl */
|
||||
{ .keysym = 0x0022, .scancode = 0x04,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* numbersign */
|
||||
{ .keysym = 0x0023, .scancode = 0x04,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* dollar */
|
||||
{ .keysym = 0x0024, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* percent */
|
||||
{ .keysym = 0x0025, .scancode = 0x28,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* ampersand */
|
||||
{ .keysym = 0x0026, .scancode = 0x02,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* quoteright */
|
||||
{ .keysym = 0x0027, .scancode = 0x05,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* parenleft */
|
||||
{ .keysym = 0x0028, .scancode = 0x06,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* parenright */
|
||||
{ .keysym = 0x0029, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* asterisk */
|
||||
{ .keysym = 0x002a, .scancode = 0x2b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* plus */
|
||||
{ .keysym = 0x002b, .scancode = 0x0D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* comma */
|
||||
{ .keysym = 0x002c, .scancode = 0x32,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* minus */
|
||||
{ .keysym = 0x002d, .scancode = 0x07,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* period */
|
||||
{ .keysym = 0x002e, .scancode = 0x33,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* slash */
|
||||
{ .keysym = 0x002f, .scancode = 0x34,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 0 */
|
||||
{ .keysym = 0x0030, .scancode = 0x0B,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 1 */
|
||||
{ .keysym = 0x0031, .scancode = 0x02,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 2 */
|
||||
{ .keysym = 0x0032, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 3 */
|
||||
{ .keysym = 0x0033, .scancode = 0x04,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 4 */
|
||||
{ .keysym = 0x0034, .scancode = 0x05,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 5 */
|
||||
{ .keysym = 0x0035, .scancode = 0x06,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 6 */
|
||||
{ .keysym = 0x0036, .scancode = 0x07,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 7 */
|
||||
{ .keysym = 0x0037, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 8 */
|
||||
{ .keysym = 0x0038, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* 9 */
|
||||
{ .keysym = 0x0039, .scancode = 0x0A,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* colon */
|
||||
{ .keysym = 0x003a, .scancode = 0x34,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* semicolon */
|
||||
{ .keysym = 0x003b, .scancode = 0x33,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* less */
|
||||
{ .keysym = 0x003c, .scancode = 0x56,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* equal */
|
||||
{ .keysym = 0x003d, .scancode = 0x0D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* greater */
|
||||
{ .keysym = 0x003e, .scancode = 0x56,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* question */
|
||||
{ .keysym = 0x003f, .scancode = 0x32,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* at */
|
||||
{ .keysym = 0x0040, .scancode = 0x0B,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* A */
|
||||
{ .keysym = 0x0041, .scancode = 0x10,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* B */
|
||||
{ .keysym = 0x0042, .scancode = 0x30,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* C */
|
||||
{ .keysym = 0x0043, .scancode = 0x2E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* D */
|
||||
{ .keysym = 0x0044, .scancode = 0x20,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* E */
|
||||
{ .keysym = 0x0045, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* F */
|
||||
{ .keysym = 0x0046, .scancode = 0x21,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* G */
|
||||
{ .keysym = 0x0047, .scancode = 0x22,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* H */
|
||||
{ .keysym = 0x0048, .scancode = 0x23,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* I */
|
||||
{ .keysym = 0x0049, .scancode = 0x17,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* J */
|
||||
{ .keysym = 0x004a, .scancode = 0x24,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* K */
|
||||
{ .keysym = 0x004b, .scancode = 0x25,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* L */
|
||||
{ .keysym = 0x004c, .scancode = 0x26,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* M */
|
||||
{ .keysym = 0x004d, .scancode = 0x27,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* N */
|
||||
{ .keysym = 0x004e, .scancode = 0x31,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* O */
|
||||
{ .keysym = 0x004f, .scancode = 0x18,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* P */
|
||||
{ .keysym = 0x0050, .scancode = 0x19,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Q */
|
||||
{ .keysym = 0x0051, .scancode = 0x1E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* R */
|
||||
{ .keysym = 0x0052, .scancode = 0x13,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* S */
|
||||
{ .keysym = 0x0053, .scancode = 0x1F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* T */
|
||||
{ .keysym = 0x0054, .scancode = 0x14,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* U */
|
||||
{ .keysym = 0x0055, .scancode = 0x16,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* V */
|
||||
{ .keysym = 0x0056, .scancode = 0x2F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* W */
|
||||
{ .keysym = 0x0057, .scancode = 0x2C,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* X */
|
||||
{ .keysym = 0x0058, .scancode = 0x2D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Y */
|
||||
{ .keysym = 0x0059, .scancode = 0x15,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* Z */
|
||||
{ .keysym = 0x005a, .scancode = 0x11,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* bracketleft */
|
||||
{ .keysym = 0x005b, .scancode = 0x06,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* backslash */
|
||||
{ .keysym = 0x005c, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* bracketright */
|
||||
{ .keysym = 0x005d, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* asciicircum */
|
||||
{ .keysym = 0x005e, .scancode = 0x0a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* underscore */
|
||||
{ .keysym = 0x005f, .scancode = 0x09,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* quoteleft */
|
||||
{ .keysym = 0x0060, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* a */
|
||||
{ .keysym = 0x0061, .scancode = 0x10,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* b */
|
||||
{ .keysym = 0x0062, .scancode = 0x30,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* c */
|
||||
{ .keysym = 0x0063, .scancode = 0x2E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* d */
|
||||
{ .keysym = 0x0064, .scancode = 0x20,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* e */
|
||||
{ .keysym = 0x0065, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* f */
|
||||
{ .keysym = 0x0066, .scancode = 0x21,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* g */
|
||||
{ .keysym = 0x0067, .scancode = 0x22,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* h */
|
||||
{ .keysym = 0x0068, .scancode = 0x23,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* i */
|
||||
{ .keysym = 0x0069, .scancode = 0x17,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* j */
|
||||
{ .keysym = 0x006a, .scancode = 0x24,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* k */
|
||||
{ .keysym = 0x006b, .scancode = 0x25,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* l */
|
||||
{ .keysym = 0x006c, .scancode = 0x26,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* m */
|
||||
{ .keysym = 0x006d, .scancode = 0x27,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* n */
|
||||
{ .keysym = 0x006e, .scancode = 0x31,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* o */
|
||||
{ .keysym = 0x006f, .scancode = 0x18,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* p */
|
||||
{ .keysym = 0x0070, .scancode = 0x19,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* q */
|
||||
{ .keysym = 0x0071, .scancode = 0x1E,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* r */
|
||||
{ .keysym = 0x0072, .scancode = 0x13,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* s */
|
||||
{ .keysym = 0x0073, .scancode = 0x1F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* t */
|
||||
{ .keysym = 0x0074, .scancode = 0x14,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* u */
|
||||
{ .keysym = 0x0075, .scancode = 0x16,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* v */
|
||||
{ .keysym = 0x0076, .scancode = 0x2F,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* w */
|
||||
{ .keysym = 0x0077, .scancode = 0x2C,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* x */
|
||||
{ .keysym = 0x0078, .scancode = 0x2D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* y */
|
||||
{ .keysym = 0x0079, .scancode = 0x15,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* z */
|
||||
{ .keysym = 0x007a, .scancode = 0x11,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* braceleft */
|
||||
{ .keysym = 0x007b, .scancode = 0x05,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* bar */
|
||||
{ .keysym = 0x007c, .scancode = 0x07,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* braceright */
|
||||
{ .keysym = 0x007d, .scancode = 0x0D,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* asciitilde */
|
||||
{ .keysym = 0x007e, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* pound */
|
||||
{ .keysym = 0x00a3, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* currency */
|
||||
{ .keysym = 0x00a4, .scancode = 0x1b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* section */
|
||||
{ .keysym = 0x00a7, .scancode = 0x35,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* degree */
|
||||
{ .keysym = 0x00b0, .scancode = 0x0c,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* micro */
|
||||
{ .keysym = 0x00b5, .scancode = 0x2b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* dead umlaut */
|
||||
{ .keysym = 0xfe57, .scancode = 0x1a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALTGR,
|
||||
.set_keysyms = GUAC_KEYSYMS_SHIFT },
|
||||
|
||||
/* dead circum */
|
||||
{ .keysym = 0xfe52, .scancode = 0x1a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* à */
|
||||
{ .keysym = 0x00e0, .scancode = 0x0b,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* ç */
|
||||
{ .keysym = 0x00e7, .scancode = 0x0a,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* è */
|
||||
{ .keysym = 0x00e8, .scancode = 0x08,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* é */
|
||||
{ .keysym = 0x00e9, .scancode = 0x03,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* ù */
|
||||
{ .keysym = 0x00f9, .scancode = 0x28,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
/* euro */
|
||||
{ .keysym = 0x10020ac, .scancode = 0x12,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT,
|
||||
.set_keysyms = GUAC_KEYSYMS_CTRL_ALT },
|
||||
.set_keysyms = GUAC_KEYSYMS_ALTGR },
|
||||
|
||||
/* two superior */
|
||||
{ .keysym = 0x00b2, .scancode = 0x29,
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT },
|
||||
.clear_keysyms = GUAC_KEYSYMS_ALL_SHIFT_ALTGR },
|
||||
|
||||
{0}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user