renaming types
[xorg/xkeyboard-config] / symbols / level3
1 // $XKeyboardConfig$
2
3 // these variants assign various XKB keycodes to ISO_Level3_Shift so that
4 // the third shift level can be reached
5 //
6 // $XFree86: xc/programs/xkbcomp/symbols/level3,v 1.7 2003/09/08 14:25:32 eich Exp $
7 //
8
9 // the default behavior is for the right Alt key (AltGr) to generate the
10 // third engraved symbol
11 default partial modifier_keys
12 xkb_symbols "ralt_switch" {
13   key <RALT> {
14     type[Group1]="ONE_LEVEL",
15     symbols[Group1] = [ ISO_Level3_Shift ]
16     };
17   modifier_map Mod5   { ISO_Level3_Shift };
18 };
19
20 // Right Alt key never chooses 3rd level.
21 // This option attempts to undo the effect of a layout's
22 // including ralt_switch.  You may also want to select another
23 // level3 option that maps the level3 shift to some other key.
24 partial modifier_keys
25 xkb_symbols "ralt_alt" {
26   key <RALT> { 
27     type[Group1]="TWO_LEVEL",
28     type[Group2]="TWO_LEVEL",
29     type[Group3]="TWO_LEVEL",
30     type[Group4]="TWO_LEVEL",
31     symbols[Group1] = [ Alt_R, Meta_R ], 
32     symbols[Group2] = [ Alt_R, Meta_R ], 
33     symbols[Group3] = [ Alt_R, Meta_R ], 
34     symbols[Group4] = [ Alt_R, Meta_R ]
35     };
36   modifier_map Mod1    { <RALT> };
37 };
38
39 partial modifier_keys
40 xkb_symbols "ralt_switch_multikey" {
41   key <RALT> {
42     type[Group1]="TWO_LEVEL",
43     symbols[Group1] = [ ISO_Level3_Shift, Multi_key ]
44     };
45 };
46
47 // special case or right Alt switch - for use with grp:alts_toggle
48 //
49 partial hidden modifier_keys
50 xkb_symbols "ralt_switch_for_alts_toggle" {
51  virtual_modifiers LAlt, AlGr;
52   key <LALT> {
53     type[Group1]="PC_ALT_LEVEL2",
54     symbols[Group1] = [ Alt_L,  ISO_Prev_Group,  ISO_Prev_Group ]
55   };
56   key <RALT> {
57     type[Group1]="PC_ALT_LEVEL2",
58     symbols[Group1] = [ ISO_Level3_Shift, ISO_Next_Group ],
59     virtualMods= AltGr
60   };
61   modifier_map Mod5   { ISO_Level3_Shift };
62 };
63
64 // using the level(alt_switch) map, either Alt key temporarily chooses
65 // the third shift level.  (Mostly be used to imitate Mac OS functionality.)
66 partial modifier_keys
67 xkb_symbols "alt_switch" {
68   include "level3(lalt_switch)"
69   include "level3(ralt_switch)"
70 };
71
72 partial modifier_keys
73 xkb_symbols "lalt_switch" {
74   key <LALT> {
75     type[Group1]="ONE_LEVEL",
76     symbols[Group1] = [ ISO_Level3_Shift ]
77     };
78   modifier_map Mod5   { <LALT> };
79 };
80
81 // using the level(switch) map, the right Control key temporarily
82 // chooses the third shift level (until it is released).
83 partial modifier_keys
84 xkb_symbols "switch" {
85   key <RCTL> {
86     type[Group1]="ONE_LEVEL",
87     symbols[Group1] = [ ISO_Level3_Shift ]
88     };
89   modifier_map Mod5   { ISO_Level3_Shift };
90 };
91
92 // using the level(menu_switch) map, the Menu key temporarily
93 // chooses the third shift level (until it is released).
94 partial modifier_keys
95 xkb_symbols "menu_switch" {
96   key <MENU> {
97     type[Group1]="ONE_LEVEL",
98     symbols[Group1] = [ ISO_Level3_Shift ]
99     };
100   modifier_map Mod5   { ISO_Level3_Shift };
101 };
102
103 // using the level3(win_switch) map, the either Windows' logo key
104 // temporarily chooses the third shift level.
105 partial modifier_keys
106 xkb_symbols "win_switch" {
107   include "level3(lwin_switch)"
108   include "level3(rwin_switch)"
109 };
110
111 // using the level3(lwin_switch) map, the left Windows' logo key
112 // temporarily chooses the third shift level.
113 partial modifier_keys
114 xkb_symbols "lwin_switch" {
115   key <LWIN> {
116     type[Group1]="ONE_LEVEL",
117     symbols[Group1] = [ ISO_Level3_Shift ]
118     };
119   modifier_map Mod5   { ISO_Level3_Shift };
120 };
121
122 // using the level(rwin_switch) map, the right Windows' logo key
123 // temporarily chooses the third shift level.  If you use this map,
124 // you should define your keyboard as pc101 or pc102 instead of pc104
125 // or pc105.
126 partial modifier_keys
127 xkb_symbols "rwin_switch" {
128   key <RWIN> {
129     type[Group1]="ONE_LEVEL",
130     symbols[Group1] = [ ISO_Level3_Shift ]
131     };
132   modifier_map Mod5   { ISO_Level3_Shift };
133 };
134
135 // using the level3(enter_switch) map, the Enter key on the keypad
136 // temporarily chooses the third shift level.  This is especially
137 // useful for Mac laptops which miss the right Alt key.
138 partial hidden modifier_keys
139 xkb_symbols "enter_switch" {
140   key <KPEN> {
141     type[Group1]="ONE_LEVEL",
142     symbols[Group1] = [ ISO_Level3_Shift ]
143     };
144   modifier_map Mod5   { ISO_Level3_Shift };
145 };