diff --git a/data/keyboards/ua.yaml b/data/keyboards/ua.yaml new file mode 100644 index 00000000..3e8cfd1b --- /dev/null +++ b/data/keyboards/ua.yaml @@ -0,0 +1,94 @@ +--- +outlines: + default: { width: 32, height: 52 } + altline: { width: 32, height: 52 } + wide: { width: 57, height: 52 } + narrow: { width: 26, height: 52 } + spaceline: { width: 107, height: 52 } + fill: { width: 159, height: 52 } + special: { width: 42, height: 52 } + +views: + base: + - "й ц у к е н г ш щ з х" + - "ф і в а п р о л д ж є" + - "Shift_L я ч с м и т ь б ю BackSpace" + - "show_numbers preferences ґ space ї period Return" + upper: + - "Й Ц У К Е Н Г Ш Щ З Х" + - "Ф І В А П Р О Л Д Ж Є" + - "Shift_L Я Ч С М И Т Ь Б Ю BackSpace" + - "show_numbers preferences Ґ space Ї comma Return" + numbers: + - "1 2 3 4 5 6 7 8 9 0" + - "@ # $ % & - _ + ( )" + - "show_symbols , \" ' colon ; ! ? BackSpace" + - "show_letters preferences space_fill period Return" + symbols: + - "~ ` | · √ π τ ÷ × ¶" + - "© ® £ € ¥ ^ ° * { }" + - "show_numbers_from_symbols \\ / < > = [ ] BackSpace" + - "show_letters preferences space_fill period 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: "wide" + label: "123" + show_numbers_from_symbols: + action: + set_view: "numbers" + outline: "wide" + label: "123" + show_letters: + action: + set_view: "base" + outline: "wide" + label: "АБВ" + show_symbols: + action: + set_view: "symbols" + outline: "wide" + label: "*/=" + period: + outline: "special" + text: "." + comma: + outline: "special" + text: "," + space: + outline: "spaceline" + text: " " + space_fill: + outline: "fill" + text: " " + Return: + outline: "wide" + icon: "key-enter" + keysym: "Return" + colon: + text: ":" + ґ: + outline: "narrow" + Ґ: + outline: "narrow" + ї: + outline: "narrow" + Ї: + outline: "narrow" diff --git a/src/resources.rs b/src/resources.rs index 171a4159..67a2af00 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -32,6 +32,7 @@ const KEYBOARDS: &[(*const str, *const str)] = &[ ("pl_wide", include_str!("../data/keyboards/pl_wide.yaml")), ("ru", include_str!("../data/keyboards/ru.yaml")), ("se", include_str!("../data/keyboards/se.yaml")), + ("ua", include_str!("../data/keyboards/ua.yaml")), // layout+overlay ("terminal", include_str!("../data/keyboards/terminal.yaml")), // Overlays diff --git a/tests/meson.build b/tests/meson.build index 42525aea..6648c492 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -63,6 +63,7 @@ foreach layout : [ 'pl', 'pl_wide', 'ru', 'se', + 'ua', 'terminal', 'emoji',