diff --git a/data/keyboards/th.yaml b/data/keyboards/th.yaml new file mode 100644 index 00000000..161fe273 --- /dev/null +++ b/data/keyboards/th.yaml @@ -0,0 +1,80 @@ +--- +outlines: + default: { width: 35.33, height: 52 } + altline: { width: 52.67, height: 52 } + wide: { width: 62, height: 52 } + spaceline: { width: 142, height: 52 } + special: { width: 44, height: 52 } + +views: + base: + - "ๅ / _ ภ ถ ุ ึ ค ต จ ข ช" + - "ๆ ไ ำ พ ะ ั ี ร น ย บ ล" + - "ฟ ห ก ด เ ้ ่ า ส ว ง ฃ" + - "Shift_L ผ ป แ อ ิ ื ท ม ใ ฝ BackSpace" + - "show_numbers preferences space period Return" + upper: + - "+ ๑ ๒ ๓ ๔ ู ฿ ๕ ๖ ๗ ๘ ๙" + - "๐ \" ฎ ฑ ธ ํ ๊ ณ ฯ ญ ฐ ," + - "ฤ ฆ ฏ โ ฌ ็ ๋ ษ ศ ซ . ฅ" + - "Shift_L ( ) ฉ ฮ ฺ ์ ? ฒ ฬ ฦ BackSpace" + - "show_numbers preferences space period Return" + numbers: + - "1 2 3 4 5 6 7 8 9 0" + - "@ # $ % & - _ + ( )" + - "show_symbols , \" ' colon ; ! ? BackSpace" + - "show_letters preferences space period Return" + symbols: + - "~ ` | · √ π τ ÷ × ¶" + - "© ® £ € ¥ ^ ° * { }" + - "show_numbers_from_symbols \\ / < > = [ ] BackSpace" + - "show_letters preferences space 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: "altline" + label: "123" + show_letters: + action: + set_view: "base" + outline: "wide" + label: "กขค" + show_symbols: + action: + set_view: "symbols" + outline: "altline" + label: "*/=" + period: + outline: "special" + text: "." + space: + outline: "spaceline" + text: " " + Return: + outline: "wide" + icon: "key-enter" + keysym: "Return" + colon: + text: ":" diff --git a/src/resources.rs b/src/resources.rs index 2d21595b..d94b9cb5 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -36,6 +36,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")), + ("th", include_str!("../data/keyboards/th.yaml")), ("ua", include_str!("../data/keyboards/ua.yaml")), // layout+overlay ("terminal", include_str!("../data/keyboards/terminal.yaml")), diff --git a/tests/meson.build b/tests/meson.build index 96229297..9850a957 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -66,6 +66,7 @@ foreach layout : [ 'ru', 'se', 'ua', + 'th', 'terminal', 'terminal_wide', 'emoji',