summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorsvu <svu>2005-10-17 00:38:53 +0000
committersvu <svu>2005-10-17 00:38:53 +0000
commit075eed027d658b810d20b5527402c9f7bd73fd87 (patch)
tree676ee0b0af15969031cbde8239850dac5bf48650 /compat
parentdca8aa96e50f7df12ebd2c21e0cef1ea02f9eacb (diff)
adding 5th level, adding ca(multix)
Diffstat (limited to 'compat')
-rw-r--r--compat/Makefile.am2
-rw-r--r--compat/complete1
-rw-r--r--compat/default1
-rw-r--r--compat/level549
4 files changed, 52 insertions, 1 deletions
diff --git a/compat/Makefile.am b/compat/Makefile.am
index f8dd837a..3f994fa9 100644
--- a/compat/Makefile.am
+++ b/compat/Makefile.am
@@ -4,7 +4,7 @@ dist_compat_DATA = \
accessx basic complete \
default iso9995 \
japan keypad ledcaps \
-lednum ledscroll \
+lednum ledscroll level5 \
misc mousekeys norepeat \
pc pc98 xfree86 \
xtest README
diff --git a/compat/complete b/compat/complete
index 68f89c80..93ff6871 100644
--- a/compat/complete
+++ b/compat/complete
@@ -6,5 +6,6 @@ default xkb_compatibility "complete" {
augment "accessx(full)"
augment "misc"
augment "xfree86"
+ augment "level5"
};
diff --git a/compat/default b/compat/default
index 7cea0f8c..e215a648 100644
--- a/compat/default
+++ b/compat/default
@@ -5,6 +5,7 @@ default xkb_compatibility "default" {
augment "accessx(basic)"
augment "misc"
augment "iso9995"
+ augment "level5"
// ??should be changed/renamed/removed
// augment "xfree86"
augment "japan"
diff --git a/compat/level5 b/compat/level5
new file mode 100644
index 00000000..2220da07
--- /dev/null
+++ b/compat/level5
@@ -0,0 +1,49 @@
+// $Xorg: level5,v 1.3 2000/08/17 19:54:34 cpqbld Exp $
+
+// Fairly complete set of symbol interpretations
+// to provide reasonable default behavior
+
+// $XFree86: xc/programs/xkbcomp/compat/iso9995,v 1.3 2003/02/21 03:16:34 dawes Exp $
+
+default partial xkb_compatibility "default" {
+ virtual_modifiers LevelFive;
+
+ interpret.repeat= False;
+ setMods.clearLocks= True;
+ latchMods.clearLocks= True;
+ latchMods.latchToLock= True;
+
+ //ISO_Level5_Shift
+ interpret F35+Any {
+ useModMapMods= level1;
+ virtualModifier= LevelFive;
+ action= SetMods(modifiers=LevelFive);
+ };
+
+ interpret F35 {
+ action= SetMods(modifiers=LevelFive);
+ };
+
+ //ISO_Level5_Latch
+ interpret F34+Any {
+ useModMapMods= level1;
+ virtualModifier= LevelFive;
+ action= LatchMods(modifiers=LevelFive);
+ };
+
+ interpret F34 {
+ action= LatchMods(modifiers=LevelFive);
+ };
+
+ //ISO_Level5_Lock
+ interpret F33+Any {
+ useModMapMods= level1;
+ virtualModifier= LevelFive;
+ action= LockMods(modifiers=LevelFive);
+ };
+
+ interpret F33 {
+ action= LockMods(modifiers=LevelFive);
+ };
+
+};