Entering SS, b.fd.o#7642
[xorg/xkeyboard-config] / types / basic
1 // $Xorg: basic,v 1.3 2000/08/17 19:54:48 cpqbld Exp $
2
3 default xkb_types "basic" {
4
5     // Fairly standard definitions for
6     // the four required key types
7
8     virtual_modifiers NumLock;
9
10     type "ONE_LEVEL" {
11         modifiers = None;
12         map[None] = Level1;
13         level_name[Level1]= "Any";
14     };
15
16     type "TWO_LEVEL" {
17         modifiers = Shift;
18         map[Shift] = Level2;
19         level_name[Level1] = "Base";
20         level_name[Level2] = "Shift";
21     };
22
23     type "ALPHABETIC" {
24         modifiers = Shift+Lock;
25         map[Shift] = Level2;
26         map[Lock] = Level2;
27         level_name[Level1] = "Base";
28         level_name[Level2] = "Caps";
29     };
30
31 };