diff --git a/data/keyboards/ch_wide.yaml b/data/keyboards/ch_wide.yaml new file mode 100644 index 00000000..c37f4b28 --- /dev/null +++ b/data/keyboards/ch_wide.yaml @@ -0,0 +1,93 @@ +# Maintained by: Jordy Bossy +# and Patrick Jörg . No Copyright, enjoy! + +--- +outlines: + default: { width: 48, height: 42 } + altline: { width: 81, height: 42 } + wide: { width: 108, height: 42 } + spaceline: { width: 216, height: 42 } + special: { width: 48, height: 42 } + +views: + base: + - "q w e r t z u i o p ü" + - "a s d f g h j k l ö ä" + - "Shift_L y x c v b n m BackSpace" + - "show_numbers show_eschars preferences ' space , . Return" + upper: + - "Q W E R T Z U I O P Ü" + - "A S D F G H J K L Ö Ä" + - "Shift_L Y X C V B N M BackSpace" + - "show_numbers show_eschars preferences \" space , . Return" + numbers: + - "1 2 3 4 5 6 7 8 9 0" + - "@ * + - = ( ) ~ < > ? !" + - "show_symbols # & / \\ √ ; : BackSpace" + - "show_letters show_eschars preferences _ space , . Return" + symbols: + - "€ $ £ ¥ % | § µ [ ]" + - "© ® § ` ^ { } · ¡ ¿" + - "show_numbers « » ÷ × “ ” „ BackSpace" + - "show_letters show_eschars preferences - space , . Return" + eschars: + - "à â ç é è ê î ô ù û" + - "À Â Ç É È Ê Î Ô Ù Û" + - "show_numbers æ œ ä ë ï ö ü BackSpace" + - "show_letters_from_accents preferences ñ Ñ space ° ß Return" + +buttons: + Shift_L: + action: + locking: + lock_view: "upper" + unlock_view: "base" + outline: "altline" + icon: "key-shift" + BackSpace: + outline: "altline" + icon: "edit-clear-symbolic" + action: "erase" + preferences: + action: "show_prefs" + outline: "special" + icon: "keyboard-mode-symbolic" + show_numbers: + action: + set_view: "numbers" + outline: "altline" + label: "123" + show_letters: + action: + set_view: "base" + outline: "altline" + label: "abc" + show_symbols: + action: + set_view: "symbols" + outline: "altline" + label: "*/=" + show_eschars: + action: + locking: + lock_view: "eschars" + unlock_view: "base" + outline: "altline" + label: "äÄ" + show_letters_from_accents: + action: + locking: + lock_view: "eschars" + unlock_view: "base" + outline: "altline" + label: "âÂ" + space: + outline: "spaceline" + label: " " + text: " " + Return: + outline: "wide" + icon: "key-enter" + keysym: "Return" + "\"": + keysym: "quotedbl" diff --git a/src/resources.rs b/src/resources.rs index 6ee0af7e..4e13ac1b 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -31,6 +31,7 @@ static KEYBOARDS: &[(&'static str, &'static str)] = &[ ("ch+fr", include_str!("../data/keyboards/ch+fr.yaml")), ("ch+de", include_str!("../data/keyboards/ch+de.yaml")), ("ch", include_str!("../data/keyboards/ch.yaml")), + ("ch_wide", include_str!("../data/keyboards/ch_wide.yaml")), ("de", include_str!("../data/keyboards/de.yaml")), ("de_wide", include_str!("../data/keyboards/de_wide.yaml")), diff --git a/tests/meson.build b/tests/meson.build index 54ae0d4e..a872174a 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -64,7 +64,7 @@ foreach layout : [ 'br', 'ch+fr', 'ch+de', - 'ch', + 'ch', 'ch_wide', 'cz', 'cz_wide', 'cz+qwerty', 'cz+qwerty_wide', 'de', 'de_wide',