first feed-in of the layouts. The revolution is coming
[xorg/xkeyboard-config] / types / basic
1 // $Xorg: basic,v 1.3 2000/08/17 19:54:48 cpqbld Exp $
2 // $XFree86$
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     type "KEYPAD" {
32         modifiers = Shift+NumLock;
33         map[None] = Level1;
34         map[Shift] = Level2;
35         map[NumLock] = Level2;
36         map[Shift+NumLock] = Level1;
37         level_name[Level1] = "Base";
38         level_name[Level2] = "Number";
39     };
40 };