Home | History | Annotate | Download | only in include

Lines Matching refs:ALT

69         var alt = 0xffe9;
76 // on Mac, Option (AKA Alt) is used as a char modifier
77 charModifier = [alt];
80 // on Windows, Ctrl+Alt is used as a char modifier
81 charModifier = [alt, ctrl];
94 state[alt] = false;
109 if (evt.altKey !== undefined && evt.altKey !== state[alt] && keysym !== alt) {
110 state[alt] = evt.altKey;
111 result.push(syncKey(alt));
266 case 18 : return 0xFFE9; // Left ALT (Mac Option)
330 // if a char modifier is pressed, get the keys it consists of (on Windows, AltGr is equivalent to Ctrl+Alt)
378 // For example, on Windows, AltGr is synonymous with Ctrl-Alt. On a Danish keyboard layout, AltGr-2 yields a @, but Ctrl-Alt-D does nothing
379 // so when used with the '2' key, Ctrl-Alt counts as a char modifier (and should be escaped), but when used with 'D', it does not.