scripts/update-keysyms: fix path to the include files after de1b6943d
[platform/upstream/libxkbcommon.git] / test / data / types / iso9995
1 default partial xkb_types "default" {
2
3     // A key type which can be used to implement
4     // an ISO9995-style level-three shift.
5
6     virtual_modifiers LevelThree;
7
8     type "THREE_LEVEL" {
9         modifiers = Shift+LevelThree;
10         map[None] = Level1;
11         map[Shift] = Level2;
12         map[LevelThree] = Level3;
13         map[Shift+LevelThree] = Level3;
14         level_name[Level1] = "Base";
15         level_name[Level2] = "Shift";
16         level_name[Level3] = "Level3";
17     };
18 };