Compare commits
	
		
			6 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 2faa98d85f | |||
| b594fcf905 | |||
| 313dbdce33 | |||
| c51b001836 | |||
| bcbc9f7ba6 | |||
| b56500af0a | 
@ -3,7 +3,6 @@ image: pureos/byzantium
 | 
			
		||||
stages:
 | 
			
		||||
  - build
 | 
			
		||||
  - test
 | 
			
		||||
  - deploy
 | 
			
		||||
 | 
			
		||||
before_script:
 | 
			
		||||
  - apt-get -y update
 | 
			
		||||
@ -23,16 +22,14 @@ build_docs:
 | 
			
		||||
      - $PKG_ONLY == "1"
 | 
			
		||||
 | 
			
		||||
build_meson:
 | 
			
		||||
  image: debian:bookworm
 | 
			
		||||
  stage: build
 | 
			
		||||
  artifacts:
 | 
			
		||||
    paths:
 | 
			
		||||
      - _build
 | 
			
		||||
    expire_in: 3h
 | 
			
		||||
  script:
 | 
			
		||||
    - mv debian/control-newer debian/control
 | 
			
		||||
    - apt-get -y build-dep .
 | 
			
		||||
    - meson . _build/ -Ddepdatadir=/usr/share -Dfind_orphans=true --werror
 | 
			
		||||
    - meson . _build/ -Ddepdatadir=/usr/share --werror
 | 
			
		||||
    - ninja -C _build install
 | 
			
		||||
  except:
 | 
			
		||||
    variables:
 | 
			
		||||
@ -76,7 +73,7 @@ build_deb:arm64:
 | 
			
		||||
    - cp ../*.deb .
 | 
			
		||||
 | 
			
		||||
build_deb:future:
 | 
			
		||||
  image: debian:bookworm
 | 
			
		||||
  image: debian:sid
 | 
			
		||||
  allow_failure: true
 | 
			
		||||
  tags:
 | 
			
		||||
    - aarch64
 | 
			
		||||
@ -97,23 +94,6 @@ build_deb:future:
 | 
			
		||||
    - debuild -i -us -uc -b
 | 
			
		||||
    - cp ../*.deb .
 | 
			
		||||
 | 
			
		||||
build_reference:
 | 
			
		||||
  image: debian:bookworm
 | 
			
		||||
  stage: build
 | 
			
		||||
  needs:
 | 
			
		||||
    - job: build_meson
 | 
			
		||||
      artifacts: true
 | 
			
		||||
  artifacts:
 | 
			
		||||
    paths:
 | 
			
		||||
      - _build/doc
 | 
			
		||||
  script:
 | 
			
		||||
    - apt-get -y install cargo
 | 
			
		||||
    - cd _build
 | 
			
		||||
    - ../cargo.sh doc --no-deps --document-private-items
 | 
			
		||||
  except:
 | 
			
		||||
    variables:
 | 
			
		||||
      - $PKG_ONLY == "1"
 | 
			
		||||
 | 
			
		||||
test_lintian:
 | 
			
		||||
  stage: test
 | 
			
		||||
  needs:
 | 
			
		||||
@ -127,13 +107,11 @@ test_lintian:
 | 
			
		||||
      - $PKG_ONLY == "1"
 | 
			
		||||
 | 
			
		||||
test:
 | 
			
		||||
  image: debian:bookworm
 | 
			
		||||
  stage: test
 | 
			
		||||
  needs:
 | 
			
		||||
    - job: build_meson
 | 
			
		||||
      artifacts: true
 | 
			
		||||
  script:
 | 
			
		||||
    - mv debian/control-newer debian/control
 | 
			
		||||
    - apt-get -y build-dep .
 | 
			
		||||
    - apt-get -y install clang-tidy
 | 
			
		||||
    - ninja -C _build test
 | 
			
		||||
@ -164,17 +142,3 @@ check_release:
 | 
			
		||||
  except:
 | 
			
		||||
    variables:
 | 
			
		||||
      - $PKG_ONLY == "1"
 | 
			
		||||
 | 
			
		||||
pages:
 | 
			
		||||
  stage: deploy
 | 
			
		||||
  needs:
 | 
			
		||||
    - build_docs
 | 
			
		||||
    - build_reference
 | 
			
		||||
  script:
 | 
			
		||||
    - mv _build/ public/
 | 
			
		||||
  artifacts:
 | 
			
		||||
    paths:
 | 
			
		||||
      - public
 | 
			
		||||
  only:
 | 
			
		||||
    refs:
 | 
			
		||||
      - master
 | 
			
		||||
 | 
			
		||||
@ -1,10 +1,6 @@
 | 
			
		||||
# Dependencies which change based on build flags
 | 
			
		||||
bitflags = "1.2.*"
 | 
			
		||||
clap = { version = "2.33.*", default-features = false }
 | 
			
		||||
zbus = "1.0.*"
 | 
			
		||||
zvariant = "2.0.*"
 | 
			
		||||
# Newer versions seem to confuse the version of Cargo on Debian Bullseye
 | 
			
		||||
zvariant_derive = "2.0.*"
 | 
			
		||||
 | 
			
		||||
[dependencies.cairo-rs]
 | 
			
		||||
version = "0.7.*"
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,7 @@
 | 
			
		||||
# Dependencies and tools which change based on build flags
 | 
			
		||||
# Dependencies which change based on build flags
 | 
			
		||||
# For the newer-than-Byzantium config
 | 
			
		||||
 | 
			
		||||
bitflags = "1.3.*"
 | 
			
		||||
clap = { version = "4.*", features=["std"], default-features = false }
 | 
			
		||||
zbus = "1.9.*"
 | 
			
		||||
zvariant = "2.10.*"
 | 
			
		||||
# Newer versions seem to confuse the version of Cargo on Debian Bullseye
 | 
			
		||||
zvariant_derive = "2.10.*"
 | 
			
		||||
clap = { version = "2.33.*", default-features = false }
 | 
			
		||||
 | 
			
		||||
[dependencies.cairo-rs]
 | 
			
		||||
version = "0.14.*"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										264
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										264
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -40,12 +40,6 @@ version = "1.2.1"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "byteorder"
 | 
			
		||||
version = "1.5.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "cairo-rs"
 | 
			
		||||
version = "0.7.1"
 | 
			
		||||
@ -73,21 +67,9 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "cc"
 | 
			
		||||
version = "1.0.90"
 | 
			
		||||
version = "1.0.73"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "cfg-if"
 | 
			
		||||
version = "0.1.10"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "cfg-if"
 | 
			
		||||
version = "1.0.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 | 
			
		||||
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "clap"
 | 
			
		||||
@ -100,51 +82,11 @@ dependencies = [
 | 
			
		||||
 "unicode-width",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "derivative"
 | 
			
		||||
version = "2.2.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 1.0.109",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "enumflags2"
 | 
			
		||||
version = "0.6.4"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "enumflags2_derive",
 | 
			
		||||
 "serde",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "enumflags2_derive"
 | 
			
		||||
version = "0.6.4"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 1.0.109",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "fastrand"
 | 
			
		||||
version = "1.9.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "instant",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "fragile"
 | 
			
		||||
version = "0.3.0"
 | 
			
		||||
source = "git+https://source.puri.sm/dorota.czaplejewicz/fragile.git?tag=0.3.0#51048ca11824279c2114c77fef5bcb950838fc09"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "05f8140122fa0d5dcb9fc8627cfce2b37cc1500f752636d46ea28bc26785c2f9"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "gdk"
 | 
			
		||||
@ -319,29 +261,20 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "hashbrown"
 | 
			
		||||
version = "0.12.3"
 | 
			
		||||
version = "0.11.2"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
 | 
			
		||||
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "indexmap"
 | 
			
		||||
version = "1.9.3"
 | 
			
		||||
version = "1.8.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
 | 
			
		||||
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "autocfg",
 | 
			
		||||
 "hashbrown",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "instant"
 | 
			
		||||
version = "0.1.12"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "cfg-if 1.0.0",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "lazy_static"
 | 
			
		||||
version = "1.4.0"
 | 
			
		||||
@ -350,15 +283,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "libc"
 | 
			
		||||
version = "0.2.153"
 | 
			
		||||
version = "0.2.119"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
 | 
			
		||||
checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "linked-hash-map"
 | 
			
		||||
version = "0.5.6"
 | 
			
		||||
version = "0.5.4"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
 | 
			
		||||
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "maplit"
 | 
			
		||||
@ -376,19 +309,6 @@ dependencies = [
 | 
			
		||||
 "winapi",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "nix"
 | 
			
		||||
version = "0.17.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "bitflags",
 | 
			
		||||
 "cc",
 | 
			
		||||
 "cfg-if 0.1.10",
 | 
			
		||||
 "libc",
 | 
			
		||||
 "void",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "pango"
 | 
			
		||||
version = "0.7.0"
 | 
			
		||||
@ -418,33 +338,24 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "pkg-config"
 | 
			
		||||
version = "0.3.30"
 | 
			
		||||
version = "0.3.24"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "proc-macro-crate"
 | 
			
		||||
version = "0.1.5"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "toml",
 | 
			
		||||
]
 | 
			
		||||
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "proc-macro2"
 | 
			
		||||
version = "1.0.78"
 | 
			
		||||
version = "1.0.36"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
 | 
			
		||||
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "unicode-ident",
 | 
			
		||||
 "unicode-xid",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "quote"
 | 
			
		||||
version = "1.0.35"
 | 
			
		||||
version = "1.0.15"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
 | 
			
		||||
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
]
 | 
			
		||||
@ -467,59 +378,39 @@ dependencies = [
 | 
			
		||||
 "serde",
 | 
			
		||||
 "serde_yaml",
 | 
			
		||||
 "xkbcommon",
 | 
			
		||||
 "zbus",
 | 
			
		||||
 "zvariant",
 | 
			
		||||
 "zvariant_derive",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "ryu"
 | 
			
		||||
version = "1.0.17"
 | 
			
		||||
version = "1.0.9"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "scoped-tls"
 | 
			
		||||
version = "1.0.1"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
 | 
			
		||||
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "serde"
 | 
			
		||||
version = "1.0.197"
 | 
			
		||||
version = "1.0.136"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
 | 
			
		||||
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "serde_derive",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "serde_derive"
 | 
			
		||||
version = "1.0.197"
 | 
			
		||||
version = "1.0.136"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
 | 
			
		||||
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 2.0.52",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "serde_repr"
 | 
			
		||||
version = "0.1.18"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 2.0.52",
 | 
			
		||||
 "syn",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "serde_yaml"
 | 
			
		||||
version = "0.8.26"
 | 
			
		||||
version = "0.8.23"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
 | 
			
		||||
checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "indexmap",
 | 
			
		||||
 "ryu",
 | 
			
		||||
@ -529,24 +420,13 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "syn"
 | 
			
		||||
version = "1.0.109"
 | 
			
		||||
version = "1.0.86"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
 | 
			
		||||
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "unicode-ident",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "syn"
 | 
			
		||||
version = "2.0.52"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "unicode-ident",
 | 
			
		||||
 "unicode-xid",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
@ -558,32 +438,17 @@ dependencies = [
 | 
			
		||||
 "unicode-width",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "toml"
 | 
			
		||||
version = "0.5.11"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "serde",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "unicode-ident"
 | 
			
		||||
version = "1.0.12"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "unicode-width"
 | 
			
		||||
version = "0.1.11"
 | 
			
		||||
version = "0.1.9"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
 | 
			
		||||
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "void"
 | 
			
		||||
version = "1.0.2"
 | 
			
		||||
name = "unicode-xid"
 | 
			
		||||
version = "0.2.2"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
 | 
			
		||||
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "winapi"
 | 
			
		||||
@ -609,9 +474,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "xkbcommon"
 | 
			
		||||
version = "0.4.1"
 | 
			
		||||
version = "0.4.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "032ed00cc755c31221bbd6aaf9fa4196a01bf33bca185f9316e14f26d28c28cf"
 | 
			
		||||
checksum = "fda0ea5f7ddabd51deeeda7799bee06274112f577da7dd3d954b8eda731b2fce"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "libc",
 | 
			
		||||
 "memmap",
 | 
			
		||||
@ -625,56 +490,3 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "linked-hash-map",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "zbus"
 | 
			
		||||
version = "1.0.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "1cb97c72cbfd5c7537ca730eeb810da7348f345ba67ab7673bcbe0d81c076427"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "byteorder",
 | 
			
		||||
 "derivative",
 | 
			
		||||
 "enumflags2",
 | 
			
		||||
 "fastrand",
 | 
			
		||||
 "nix",
 | 
			
		||||
 "scoped-tls",
 | 
			
		||||
 "serde",
 | 
			
		||||
 "serde_repr",
 | 
			
		||||
 "zbus_macros",
 | 
			
		||||
 "zvariant",
 | 
			
		||||
 "zvariant_derive",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "zbus_macros"
 | 
			
		||||
version = "1.0.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "c0c1f2a20a4cb90922b44d3bebd232b246e52b3dd95ed5bea8aec83cde3a5a8a"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro-crate",
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 1.0.109",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "zvariant"
 | 
			
		||||
version = "2.0.1"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "f0bf85e67d1a3780cb1c56c80227532354f21907cba14805a773eb507b444580"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "byteorder",
 | 
			
		||||
 "enumflags2",
 | 
			
		||||
 "serde",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "zvariant_derive"
 | 
			
		||||
version = "2.0.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "d68726e8c12757384a8d1485080527e263dea67d91f19e97cd71b9292f22d7c5"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "proc-macro2",
 | 
			
		||||
 "quote",
 | 
			
		||||
 "syn 1.0.109",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1235
									
								
								Cargo.lock.newer
									
									
									
									
									
								
							
							
						
						
									
										1235
									
								
								Cargo.lock.newer
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@ -1,7 +1,6 @@
 | 
			
		||||
[package]
 | 
			
		||||
name = "rs"
 | 
			
		||||
version = "0.1.0"
 | 
			
		||||
edition = "2021"
 | 
			
		||||
 | 
			
		||||
[lib]
 | 
			
		||||
name = "rs"
 | 
			
		||||
@ -17,14 +16,8 @@ path = "@path@/src/bin/test_layout.rs"
 | 
			
		||||
name = "test_layout"
 | 
			
		||||
path = "@path@/examples/test_layout.rs"
 | 
			
		||||
 | 
			
		||||
[[example]]
 | 
			
		||||
name = "find_orphan_layouts"
 | 
			
		||||
path = "@path@/examples/find_orphan_layouts.rs"
 | 
			
		||||
 | 
			
		||||
[features]
 | 
			
		||||
glib_v0_14 = []
 | 
			
		||||
zbus_v1_5 = []
 | 
			
		||||
clap_v4 = []
 | 
			
		||||
 | 
			
		||||
# Dependencies which don't change based on build flags
 | 
			
		||||
[dependencies]
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										59
									
								
								NEWS.md
									
									
									
									
									
								
							
							
						
						
									
										59
									
								
								NEWS.md
									
									
									
									
									
								
							@ -1,59 +0,0 @@
 | 
			
		||||
1.23.0
 | 
			
		||||
------------------
 | 
			
		||||
 | 
			
		||||
New or updated translations:
 | 
			
		||||
- Belarusian
 | 
			
		||||
- Haitian Creole
 | 
			
		||||
 | 
			
		||||
New layouts:
 | 
			
		||||
- French Canadian (QWERTY + accented letters)
 | 
			
		||||
- German terminal-layout
 | 
			
		||||
- Spanish terminal-layout
 | 
			
		||||
 | 
			
		||||
Changes:
 | 
			
		||||
- Fixed Persian and Swiss layouts
 | 
			
		||||
- Fixed various small style-issues in many layouts
 | 
			
		||||
- Improved the US-terminal-layout
 | 
			
		||||
 | 
			
		||||
1.22.0 "Superposition"
 | 
			
		||||
------------------
 | 
			
		||||
 | 
			
		||||
New or updated translations:
 | 
			
		||||
- Basque
 | 
			
		||||
 | 
			
		||||
Changes:
 | 
			
		||||
- fixed panel sizing when scaling
 | 
			
		||||
- fixed panel sizing when rotating
 | 
			
		||||
- fixed Dvorak terminal layout
 | 
			
		||||
 | 
			
		||||
1.21.0 "Expected value"
 | 
			
		||||
------------------
 | 
			
		||||
 | 
			
		||||
New or updated translations:
 | 
			
		||||
- Hindi
 | 
			
		||||
- Czech
 | 
			
		||||
- German
 | 
			
		||||
 | 
			
		||||
New layouts:
 | 
			
		||||
- wide Swedish
 | 
			
		||||
- Hungarian
 | 
			
		||||
 | 
			
		||||
Changes:
 | 
			
		||||
- use a custom font for gr+polytonic, where the default is unreadable
 | 
			
		||||
- require newer Rust
 | 
			
		||||
- fixed panel sizing when rotating
 | 
			
		||||
- internal improvements.
 | 
			
		||||
 | 
			
		||||
1.20.0 "PID controller"
 | 
			
		||||
------------------
 | 
			
		||||
 | 
			
		||||
New translations:
 | 
			
		||||
- Greek
 | 
			
		||||
- Croatian
 | 
			
		||||
 | 
			
		||||
New layouts:
 | 
			
		||||
- US Dvorak terminal
 | 
			
		||||
 | 
			
		||||
Improvements:
 | 
			
		||||
- forcing the panel to hide now takes effect immediately
 | 
			
		||||
- Squeekboard icon will present itself when other applications need to show it
 | 
			
		||||
@ -86,4 +86,4 @@ It's strongly recommended to support:
 | 
			
		||||
Developing
 | 
			
		||||
----------
 | 
			
		||||
 | 
			
		||||
See [`doc/hacking.md`](doc/hacking.md) for this copy, or the [official documentation](https://world.pages.gitlab.gnome.org/Phosh/squeekboard) for the current release.
 | 
			
		||||
See [`doc/hacking.md`](doc/hacking.md) for this copy, or the [official documentation](https://developer.puri.sm/projects/squeekboard/) for the current release.
 | 
			
		||||
 | 
			
		||||
@ -5,12 +5,6 @@ sq_view {
 | 
			
		||||
    font-size: 1.5em;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Becomes readable with a special font */
 | 
			
		||||
sq_view.gr_polytonic {
 | 
			
		||||
    font-family: GFSDidotClassic, cantarell, sans-serif;
 | 
			
		||||
    font-size: 2em;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
sq_button {
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
    margin: 2px;
 | 
			
		||||
 | 
			
		||||
@ -1,5 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 | 
			
		||||
 | 
			
		||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
 | 
			
		||||
  <path d="M 3,0.5 V 1 c 2.5,0 4.5,1 4.5,2 v 12.5 h 1 V 3 c 0,-1 2,-2 4.5,-2 V 0.5 Z" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 231 B  | 
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -59,7 +59,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -59,7 +59,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -1,93 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
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:
 | 
			
		||||
        - "q w e r t y u i o p"
 | 
			
		||||
        - "a s d f g h j k l"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "Q W E R T Y U I O P"
 | 
			
		||||
        - "A S D F G H J K L"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "@ # $ % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "à â ç é è ê ë î ï ô"
 | 
			
		||||
        - "ù û À Â Ç É È Ê Î Ô"
 | 
			
		||||
        - "show_numbers_from_symbols  ' ! ? . ,   BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars 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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -55,7 +55,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -32,7 +32,7 @@ views:
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences  ñ Ñ   space        ° ß Return"
 | 
			
		||||
        - "show_letters_from_accents preferences  ñ Ñ   space        ° ß Return"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -59,7 +59,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -71,7 +71,14 @@ buttons:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "Ââ"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    show_letters_from_accents:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
 | 
			
		||||
@ -3,39 +3,38 @@
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:     { width: 35.33,  height: 58 }
 | 
			
		||||
    doublewidth: { width: 70.66,  height: 58 }
 | 
			
		||||
    altline:     { width: 52.8,   height: 58 }
 | 
			
		||||
    wide:        { width: 64.9,   height: 58 }
 | 
			
		||||
    spaceline:   { width: 116.67, height: 58 }
 | 
			
		||||
    special:     { width: 30.41,  height: 58 }
 | 
			
		||||
    default:   { width: 35.33, height: 52 }
 | 
			
		||||
    altline:   { width: 48,    height: 52 }
 | 
			
		||||
    wide:      { width: 59,    height: 52 }
 | 
			
		||||
    spaceline: { width: 70,    height: 52 }
 | 
			
		||||
    special:   { width: 28,    height: 52 }
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "show_letters show_eschars preferences    -   space        , . Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "à â ç é è ê î ô ù û ñ"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û Ñ"
 | 
			
		||||
        - "show_numbers  æ œ ä ë ï ö ü ß BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences       Space     °     Return"
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters_from_accents preferences  ñ Ñ   space        ° ß Return"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -48,7 +47,7 @@ buttons:
 | 
			
		||||
    BackSpace:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        icon: "edit-clear-symbolic"
 | 
			
		||||
        action: "erase"
 | 
			
		||||
        action: erase
 | 
			
		||||
    preferences:
 | 
			
		||||
        action: "show_prefs"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
@ -62,7 +61,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -74,8 +73,15 @@ buttons:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "Ââ"
 | 
			
		||||
    Space:
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    show_letters_from_accents:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
        text: " "
 | 
			
		||||
@ -85,11 +91,3 @@ buttons:
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
    °:
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
    "|":
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
    "}":
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
    ×:
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
 | 
			
		||||
@ -4,40 +4,37 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default: { width: 48, height: 42 }
 | 
			
		||||
    doublewidth: { width: 96,  height: 42 }
 | 
			
		||||
    narrow:      { width: 33,  height: 42 }
 | 
			
		||||
    large:       { width: 66,  height: 42 }
 | 
			
		||||
    altline:     { width: 72,  height: 42 }
 | 
			
		||||
    altline: { width: 81, height: 42 }
 | 
			
		||||
    wide: { width: 108, height: 42 }
 | 
			
		||||
    spaceline:   { width: 162, 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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "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"
 | 
			
		||||
        - "show_letters show_eschars preferences    -   space        , . Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "à â ç é è ê î ô ù û ñ"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û Ñ"
 | 
			
		||||
        - "show_numbers  æ œ ä ë ï ö ü ß BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences       Space     °     Return"
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters_from_accents preferences  ñ Ñ   space        ° ß Return"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -64,7 +61,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -76,8 +73,15 @@ buttons:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "Ââ"
 | 
			
		||||
    Space:
 | 
			
		||||
        label: "äÄ"
 | 
			
		||||
    show_letters_from_accents:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
        text: " "
 | 
			
		||||
@ -87,15 +91,3 @@ buttons:
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
    °:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
    ".":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
    ",":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
    "|":
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
    "}":
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
    ×:
 | 
			
		||||
        outline: "doublewidth"
 | 
			
		||||
 | 
			
		||||
@ -75,7 +75,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -75,7 +75,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -75,7 +75,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -75,7 +75,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -59,7 +59,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -71,7 +71,7 @@ buttons:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "Ää"
 | 
			
		||||
        label: "äÄ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
 | 
			
		||||
@ -59,7 +59,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -71,7 +71,7 @@ buttons:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "Ää"
 | 
			
		||||
        label: "äÄ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,7 @@ outlines:
 | 
			
		||||
    default: { width: 32, height: 52 }
 | 
			
		||||
    altline: { width: 48.39024, height: 52 }
 | 
			
		||||
    wide: { width: 62, height: 52 }
 | 
			
		||||
    outline7: { width: 88.97561, height: 52 }
 | 
			
		||||
    spaceline: { width: 150.5853, height: 52 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
 | 
			
		||||
@ -5,7 +5,6 @@ outlines:
 | 
			
		||||
    wide: { width: 62, height: 52 }
 | 
			
		||||
    spaceline: { width: 106.67, height: 52 }
 | 
			
		||||
    special: { width: 44, height: 52 }
 | 
			
		||||
    large:     { width: 44,     height: 52 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
@ -42,10 +41,10 @@ buttons:
 | 
			
		||||
        icon: "edit-clear-symbolic"
 | 
			
		||||
        action: erase
 | 
			
		||||
    at:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "@"
 | 
			
		||||
    preferences:
 | 
			
		||||
        action: "show_prefs"
 | 
			
		||||
        action: show_prefs
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        icon: "keyboard-mode-symbolic"
 | 
			
		||||
    show_numbers:
 | 
			
		||||
@ -69,7 +68,7 @@ buttons:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@ -58,7 +58,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -58,7 +58,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -58,7 +58,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,7 @@ outlines:
 | 
			
		||||
    default: { width: 32, height: 52 }
 | 
			
		||||
    altline: { width: 48.39024, height: 52 }
 | 
			
		||||
    wide: { width: 62, height: 52 }
 | 
			
		||||
    outline7: { width: 88.97561, height: 52 }
 | 
			
		||||
    spaceline: { width: 150.5853, height: 52 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
 | 
			
		||||
@ -1,206 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 35.33, height: 52 }
 | 
			
		||||
    small:     { width: 50,    height: 30 }
 | 
			
		||||
    altline:   { width: 35.33, height: 52 }
 | 
			
		||||
    wide:      { width: 50,    height: 52 }
 | 
			
		||||
    spaceline: { width: 150,   height: 52 }
 | 
			
		||||
    special:   { width: 35.33, height: 52 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "b é p o w v d l j z"
 | 
			
		||||
        - "a u i e c t s r n m"
 | 
			
		||||
        - "Shift_L y x k q g h f period BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space    show_eschars Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "B É P O W V D L J Z"
 | 
			
		||||
        - "A U I E C T S R N M"
 | 
			
		||||
        - "Shift_L   Y X K Q G H F -  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space  colon   show_eschars Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "@ # € % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars  Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars  Return"
 | 
			
		||||
 
 | 
			
		||||
buttons:
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    slash:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
@ -1,89 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,  height: 42 }
 | 
			
		||||
    altline:   { width: 81,  height: 42 }
 | 
			
		||||
    wide:      { width: 100, height: 42 }
 | 
			
		||||
    spaceline: { width: 205, height: 42 }
 | 
			
		||||
    special:   { width: 54,  height: 42 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "b é p o w v d l j z"
 | 
			
		||||
        - "a u i e c t s r n m"
 | 
			
		||||
        - "Shift_L y x k q g h f . BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space    show_eschars Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "B É P O W V D L J Z"
 | 
			
		||||
        - "A U I E C T S R N M"
 | 
			
		||||
        - "Shift_L   Y X K Q G H F -  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space  colon   show_eschars Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "@ # € % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars 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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -1,78 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
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: "ABC"
 | 
			
		||||
    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: ":"
 | 
			
		||||
@ -1,326 +0,0 @@
 | 
			
		||||
# Greek polytonic layout by Antonis Tsolomitis
 | 
			
		||||
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
 | 
			
		||||
# March 2022
 | 
			
		||||
# 
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 40,    height: 60 }
 | 
			
		||||
    altline:   { width: 52.67, height: 60 }
 | 
			
		||||
    wide:      { width: 62,    height: 60 }
 | 
			
		||||
    extrawide: { width: 66,    height: 60 }
 | 
			
		||||
    spaceline: { width: 140,   height: 60 }
 | 
			
		||||
    special:   { width: 44,    height: 60 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "semicolon ς ε ρ τ υ θ ι ο π"
 | 
			
		||||
        - "α σ δ φ γ η ξ κ λ show_accents"
 | 
			
		||||
        - "Shift_L ζ χ ψ ω β ν μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period comma Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "colon EuroSign Ε Ρ Τ Υ Θ Ι Ο Π"
 | 
			
		||||
        - "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accents"
 | 
			
		||||
        - "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space exclam period_upper Return"
 | 
			
		||||
    accents:
 | 
			
		||||
        - "show_psiliordasiaandvaria show_psiliordasiaandoxia show_psiliordasia show_bariaorperispomeni show_oxia"
 | 
			
		||||
        - "show_PsiliOrDasiaAndVaria show_PsiliOrDasiaAndOxia show_PsiliOrDasia show_BariaOrPerispomeni show_Oxia show_base"
 | 
			
		||||
        - "show_PsiliOrDasiaAndPerispomeni show_psiliordasiaandperispomeni ᾿ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    oxia:
 | 
			
		||||
        - "ά έ ή ί ϊ ΐ ό ύ ϋ ώ"
 | 
			
		||||
        - "show_Oxia ᾳ ᾴ ῃ ῄ ῳ ῴ show_base"
 | 
			
		||||
        - "Ϗ ϐ ϑ ϗ ϖ ΰ ϕ – — BackSpace"
 | 
			
		||||
        - "show_numbers preferences space eis_l eis_r Return"
 | 
			
		||||
    Oxia:
 | 
			
		||||
        - "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ"
 | 
			
		||||
        - "show_oxia ᾼ ῌ ῼ show_base"
 | 
			
		||||
        - "Ϗ ϐ ϑ ϗ ϖ ϕ – — BackSpace"
 | 
			
		||||
        - "show_numbers preferences space eis_l eis_r Return"
 | 
			
		||||
    bariaorperispomeni:
 | 
			
		||||
        - "ὰ ὲ ὴ ὶ ῒ ὸ ὺ ὼ ῐ ῑ"
 | 
			
		||||
        - "show_BariaOrPerispomeni ᾳ ᾲ ῃ ῂ ῳ ῲ ῠ show_base"
 | 
			
		||||
        - "ᾶ ᾷ ῆ ῖ ῗ ῦ ῧ ῶ ῡ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space ῇ ῷ Return"
 | 
			
		||||
    BariaOrPerispomeni:
 | 
			
		||||
        - "Ὰ Ὲ Ὴ Ὶ Ὸ Ὺ Ὼ"
 | 
			
		||||
        - "show_bariaorperispomeni ᾼ ῌ ῼ show_base"
 | 
			
		||||
        - "show_numbers preferences space BackSpace Return"
 | 
			
		||||
    psiliordasia:
 | 
			
		||||
        - "ἀ ἐ ἠ ἰ ὀ ὐ ὠ ᾀ ᾐ ᾠ"
 | 
			
		||||
        - "show_PsiliOrDasia ἁ ἑ ἡ ἱ ὁ ὑ ὡ show_base"
 | 
			
		||||
        - "ᾁ ᾑ ᾡ ῤ ῥ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    PsiliOrDasia:
 | 
			
		||||
        - "Ἀ Ἐ Ἠ Ἰ Ὀ Ὠ ᾈ ᾘ ᾨ"
 | 
			
		||||
        - "show_psiliordasia Ἁ Ἑ Ἡ Ἱ Ὁ Ὑ Ὡ show_base"
 | 
			
		||||
        - "ᾉ ᾙ ᾩ Ῥ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    psiliordasiaandoxia:
 | 
			
		||||
        - "ἄ ἔ ἤ ἴ ὄ ὔ ὤ ᾄ ᾔ ᾤ"
 | 
			
		||||
        - "show_PsiliOrDasiaAndOxia ἅ ἕ ἥ ἵ ὅ ὕ ὥ show_base"
 | 
			
		||||
        - "ᾅ ᾕ ᾥ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    PsiliOrDasiaAndOxia:
 | 
			
		||||
        - "Ἄ Ἔ Ἤ Ἴ Ὄ Ὤ ᾌ ᾜ ᾬ"
 | 
			
		||||
        - "show_psiliordasiaandoxia Ἅ Ἕ Ἥ Ἵ Ὅ Ὕ Ὥ show_base"
 | 
			
		||||
        - "ᾍ ᾝ ᾭ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    psiliordasiaandvaria:
 | 
			
		||||
        - "ἂ ἒ ἢ ἲ ὂ ὒ ὢ ᾂ ᾒ ᾢ"
 | 
			
		||||
        - "show_PsiliOrDasiaAndVaria ἃ ἓ ἣ ἳ ὃ ὓ ὣ show_base"
 | 
			
		||||
        - "ᾃ ᾓ ᾣ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    PsiliOrDasiaAndVaria:
 | 
			
		||||
        - "Ἂ Ἒ Ἢ Ἲ Ὂ Ὢ ᾊ ᾚ ᾪ"
 | 
			
		||||
        - "show_psiliordasiaandvaria Ἃ Ἓ Ἣ Ἳ Ὃ Ὓ Ὣ show_base"
 | 
			
		||||
        - "ᾋ ᾛ ᾫ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    psiliordasiaandperispomeni:
 | 
			
		||||
        - "ἆ ἦ ἶ ὖ ὦ ᾆ ᾖ ᾦ"
 | 
			
		||||
        - "show_PsiliOrDasiaAndPerispomeni ἇ ἧ ἷ ὗ ὧ show_base"
 | 
			
		||||
        - "ᾇ ᾗ ᾧ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    PsiliOrDasiaAndPerispomeni:
 | 
			
		||||
        - "Ἆ Ἦ Ἶ Ὦ ᾎ ᾞ ᾮ"
 | 
			
		||||
        - "show_psiliordasiaandperispomeni Ἇ Ἧ Ἷ Ὗ Ὧ show_base"
 | 
			
		||||
        - "ᾏ ᾟ ᾯ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
			
		||||
        - "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
			
		||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
			
		||||
        - "show_numbers backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma 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: "altline"
 | 
			
		||||
        icon: "keyboard-mode-symbolic"
 | 
			
		||||
    show_oxia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "oxia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "´ ΅"
 | 
			
		||||
    show_Oxia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "Oxia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "´¨↑"
 | 
			
		||||
    show_bariaorperispomeni:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "bariaorperispomeni"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "` ῀"
 | 
			
		||||
    show_BariaOrPerispomeni:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "BariaOrPerispomeni"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "`῀↑"
 | 
			
		||||
    show_psiliordasia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "psiliordasia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "᾿ ῾"
 | 
			
		||||
    show_PsiliOrDasia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "PsiliOrDasia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "᾿῾↑"
 | 
			
		||||
    show_psiliordasiaandoxia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "psiliordasiaandoxia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῎ ῞"
 | 
			
		||||
    show_PsiliOrDasiaAndOxia:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "PsiliOrDasiaAndOxia"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῎῞↑"
 | 
			
		||||
    show_psiliordasiaandvaria:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "psiliordasiaandvaria"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῍ ῝"
 | 
			
		||||
    show_PsiliOrDasiaAndVaria:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "PsiliOrDasiaAndVaria"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῍῝↑"
 | 
			
		||||
    show_psiliordasiaandperispomeni:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "psiliordasiaandperispomeni"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῏ ῟"
 | 
			
		||||
    show_PsiliOrDasiaAndPerispomeni:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "PsiliOrDasiaAndPerispomeni"
 | 
			
		||||
        outline: "extrawide"
 | 
			
		||||
        label: "῏῟↑"
 | 
			
		||||
    show_numbers:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ΑΒΓ"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_accents:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "accents"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ᾦ"
 | 
			
		||||
    show_base:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "αι"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    period_upper:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "·"
 | 
			
		||||
    comma:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ","
 | 
			
		||||
    colon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ":"
 | 
			
		||||
    semicolon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ";"
 | 
			
		||||
    exclam:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "!"
 | 
			
		||||
    eis_l:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "«"
 | 
			
		||||
    eis_r:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "»"
 | 
			
		||||
    aring:
 | 
			
		||||
        text: "å"
 | 
			
		||||
    Aring:
 | 
			
		||||
        text: "Å"
 | 
			
		||||
    oslash:
 | 
			
		||||
        text: "ø"
 | 
			
		||||
    Oslash:
 | 
			
		||||
        text: "Ø"
 | 
			
		||||
    ae:
 | 
			
		||||
        text: "æ"
 | 
			
		||||
    AE:
 | 
			
		||||
        text: "Æ"
 | 
			
		||||
    asterisk:
 | 
			
		||||
        text: "*"
 | 
			
		||||
    asciitilde:
 | 
			
		||||
        text: "~"
 | 
			
		||||
    quoteleft:
 | 
			
		||||
        text: "`"
 | 
			
		||||
    bar:
 | 
			
		||||
        text: "|"
 | 
			
		||||
    U00B7:
 | 
			
		||||
        text: "·"
 | 
			
		||||
    squareroot:
 | 
			
		||||
        text: "√"
 | 
			
		||||
    Greek_pi:
 | 
			
		||||
        text: "π"
 | 
			
		||||
    division:
 | 
			
		||||
        text: "÷"
 | 
			
		||||
    multiply:
 | 
			
		||||
        text: "×"
 | 
			
		||||
    paragraph:
 | 
			
		||||
        text: "¶"
 | 
			
		||||
    Greek_tau:
 | 
			
		||||
        text: "τ"
 | 
			
		||||
    copyright:
 | 
			
		||||
        text: "©"
 | 
			
		||||
    numbersign:
 | 
			
		||||
        text: "#"
 | 
			
		||||
    U00AE:
 | 
			
		||||
        text: "®"
 | 
			
		||||
    at:
 | 
			
		||||
        text: "@"
 | 
			
		||||
    dollar:
 | 
			
		||||
        text: "$"
 | 
			
		||||
    U00A3:
 | 
			
		||||
        text: "£"
 | 
			
		||||
    percent:
 | 
			
		||||
        text: "%"
 | 
			
		||||
    EuroSign:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "€"
 | 
			
		||||
    ampersand:
 | 
			
		||||
        text: "&"
 | 
			
		||||
    U00A5:
 | 
			
		||||
        text: "¥"
 | 
			
		||||
    minus:
 | 
			
		||||
        text: "-"
 | 
			
		||||
    asciicircum:
 | 
			
		||||
        text: "^"
 | 
			
		||||
    underscore:
 | 
			
		||||
        text: "_"
 | 
			
		||||
    degree:
 | 
			
		||||
        text: "°"
 | 
			
		||||
    plus:
 | 
			
		||||
        text: "+"
 | 
			
		||||
    equal:
 | 
			
		||||
        text: "="
 | 
			
		||||
    parenleft:
 | 
			
		||||
        text: "("
 | 
			
		||||
    parenright:
 | 
			
		||||
        text: ")"
 | 
			
		||||
    braceleft:
 | 
			
		||||
        text: "{"
 | 
			
		||||
    braceright:
 | 
			
		||||
        text: "}"
 | 
			
		||||
    backslash:
 | 
			
		||||
        text: "\\"
 | 
			
		||||
    slash:
 | 
			
		||||
        text: "/"
 | 
			
		||||
    quotedbl:
 | 
			
		||||
        text: "\""
 | 
			
		||||
    quoteright:
 | 
			
		||||
        text: "'"
 | 
			
		||||
    less:
 | 
			
		||||
        text: "<"
 | 
			
		||||
    greater:
 | 
			
		||||
        text: ">"
 | 
			
		||||
    question:
 | 
			
		||||
        text: "?"
 | 
			
		||||
    bracketleft:
 | 
			
		||||
        text: "["
 | 
			
		||||
    bracketright:
 | 
			
		||||
        text: "]"
 | 
			
		||||
 | 
			
		||||
@ -1,41 +1,40 @@
 | 
			
		||||
# Greek layout originally created by Antonis Tsolomitis
 | 
			
		||||
# Greek layout created by Antonis Tsolomitis
 | 
			
		||||
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
 | 
			
		||||
# Sep 2019
 | 
			
		||||
# Edited by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 40,    height: 60 }
 | 
			
		||||
    altline:   { width: 52.67, height: 60 }
 | 
			
		||||
    wide:      { width: 62,    height: 60 }
 | 
			
		||||
    spaceline: { width: 140,   height: 60 }
 | 
			
		||||
    special:   { width: 44,    height: 60 }
 | 
			
		||||
    default: { width: 32, height: 52 }
 | 
			
		||||
    altline: { width: 48.39024, height: 52 }
 | 
			
		||||
    wide: { width: 62, height: 52 }
 | 
			
		||||
    outline7: { width: 88.97561, height: 52 }
 | 
			
		||||
    spaceline: { width: 150.5853, height: 52 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "semicolon ς ε ρ τ υ θ ι ο π"
 | 
			
		||||
        - "; ς ε ρ τ υ θ ι ο π !"
 | 
			
		||||
        - "α σ δ φ γ η ξ κ λ show_accented"
 | 
			
		||||
        - "Shift_L ζ χ ψ ω β ν μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period comma Return"
 | 
			
		||||
        - "Shift_L ζ χ ψ ω β ν μ , BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "colon exclam Ε Ρ Τ Υ Θ Ι Ο Π"
 | 
			
		||||
        - ": EuroSign Ε Ρ Τ Υ Θ Ι Ο Π"
 | 
			
		||||
        - "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
 | 
			
		||||
        - "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period_upper apostrophe Return"
 | 
			
		||||
        - "Shift_L Ζ Χ Ψ Ω Β Ν Μ · BackSpace"
 | 
			
		||||
        - "show_numbers preferences space « » Return"
 | 
			
		||||
    accented:
 | 
			
		||||
        - "ά έ ή ί ϊ ΐ ό ύ ϋ ώ "
 | 
			
		||||
        - "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ show_base"
 | 
			
		||||
        - "Ϗ ϐ ϑ ϗ ϖ ΰ ϕ – — BackSpace"
 | 
			
		||||
        - "show_numbers preferences space eis_l eis_r Return"
 | 
			
		||||
        - "ά έ ή ί ό ύ ώ ϊ ϋ ΐ"
 | 
			
		||||
        - "ΰ Ά Έ Ή Ί Ό Ύ Ώ Ϊ show_base"
 | 
			
		||||
        - "Ϋ Ϗ ϐ ϑ ϕ ϖ ϗ – — BackSpace"
 | 
			
		||||
        - "show_numbers preferences space quoteleft quoteright Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
			
		||||
        - "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma Return"
 | 
			
		||||
        - "show_letters preferences space period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
			
		||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
			
		||||
        - "show_numbers backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma Return"
 | 
			
		||||
        - "show_letters preferences space period Return"
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
        action:
 | 
			
		||||
@ -55,12 +54,12 @@ buttons:
 | 
			
		||||
    show_numbers:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ΑΒΓ"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
@ -79,40 +78,16 @@ buttons:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "αι"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        outline: spaceline
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    period_upper:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "·"
 | 
			
		||||
    comma:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ","
 | 
			
		||||
    colon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ":"
 | 
			
		||||
    semicolon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ";"
 | 
			
		||||
    apostrophe:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "᾿"
 | 
			
		||||
    exclam:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "!"
 | 
			
		||||
    eis_l:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "«"
 | 
			
		||||
    eis_r:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "»"
 | 
			
		||||
    aring:
 | 
			
		||||
        text: "å"
 | 
			
		||||
    Aring:
 | 
			
		||||
@ -187,6 +162,8 @@ buttons:
 | 
			
		||||
        text: "{"
 | 
			
		||||
    braceright:
 | 
			
		||||
        text: "}"
 | 
			
		||||
    comma:
 | 
			
		||||
        text: ","
 | 
			
		||||
    backslash:
 | 
			
		||||
        text: "\\"
 | 
			
		||||
    slash:
 | 
			
		||||
@ -199,6 +176,12 @@ buttons:
 | 
			
		||||
        text: "<"
 | 
			
		||||
    greater:
 | 
			
		||||
        text: ">"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    semicolon:
 | 
			
		||||
        text: ";"
 | 
			
		||||
    exclam:
 | 
			
		||||
        text: "!"
 | 
			
		||||
    question:
 | 
			
		||||
        text: "?"
 | 
			
		||||
    bracketleft:
 | 
			
		||||
 | 
			
		||||
@ -1,204 +0,0 @@
 | 
			
		||||
# Creaed by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 80,  height: 60 }
 | 
			
		||||
    altline:   { width: 110, height: 60 }
 | 
			
		||||
    wide:      { width: 120, height: 60 }
 | 
			
		||||
    spaceline: { width: 250, height: 60 }
 | 
			
		||||
    special:   { width: 75,  height: 60 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "semicolon ς ε ρ τ υ θ ι ο π"
 | 
			
		||||
        - "α σ δ φ γ η ξ κ λ show_accented"
 | 
			
		||||
        - "Shift_L ζ χ ψ ω β ν μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period comma Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "colon exclam Ε Ρ Τ Υ Θ Ι Ο Π"
 | 
			
		||||
        - "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
 | 
			
		||||
        - "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
 | 
			
		||||
        - "show_numbers preferences space period_upper apostrophe Return"
 | 
			
		||||
    accented:
 | 
			
		||||
        - "ά έ ή ί ϊ ΐ ό ύ ϋ ώ "
 | 
			
		||||
        - "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ show_base"
 | 
			
		||||
        - "Ϗ ϐ ϑ ϗ ΰ ϕ ϖ – — BackSpace"
 | 
			
		||||
        - "show_numbers preferences space eis_l eis_r Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
			
		||||
        - "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
			
		||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
			
		||||
        - "show_numbers backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
			
		||||
        - "show_letters preferences space period comma 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_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ΑΒΓ"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_accented:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "accented"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "άΐ"
 | 
			
		||||
    show_base:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "αι"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    period_upper:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "·"
 | 
			
		||||
    comma:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ","
 | 
			
		||||
    colon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ":"
 | 
			
		||||
    semicolon:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: ";"
 | 
			
		||||
    apostrophe:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "᾿"
 | 
			
		||||
    exclam:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "!"
 | 
			
		||||
    eis_l:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "«"
 | 
			
		||||
    eis_r:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "»"
 | 
			
		||||
    aring:
 | 
			
		||||
        text: "å"
 | 
			
		||||
    Aring:
 | 
			
		||||
        text: "Å"
 | 
			
		||||
    oslash:
 | 
			
		||||
        text: "ø"
 | 
			
		||||
    Oslash:
 | 
			
		||||
        text: "Ø"
 | 
			
		||||
    ae:
 | 
			
		||||
        text: "æ"
 | 
			
		||||
    AE:
 | 
			
		||||
        text: "Æ"
 | 
			
		||||
    asterisk:
 | 
			
		||||
        text: "*"
 | 
			
		||||
    asciitilde:
 | 
			
		||||
        text: "~"
 | 
			
		||||
    quoteleft:
 | 
			
		||||
        text: "`"
 | 
			
		||||
    bar:
 | 
			
		||||
        text: "|"
 | 
			
		||||
    U00B7:
 | 
			
		||||
        text: "·"
 | 
			
		||||
    squareroot:
 | 
			
		||||
        text: "√"
 | 
			
		||||
    Greek_pi:
 | 
			
		||||
        text: "π"
 | 
			
		||||
    division:
 | 
			
		||||
        text: "÷"
 | 
			
		||||
    multiply:
 | 
			
		||||
        text: "×"
 | 
			
		||||
    paragraph:
 | 
			
		||||
        text: "¶"
 | 
			
		||||
    Greek_tau:
 | 
			
		||||
        text: "τ"
 | 
			
		||||
    copyright:
 | 
			
		||||
        text: "©"
 | 
			
		||||
    numbersign:
 | 
			
		||||
        text: "#"
 | 
			
		||||
    U00AE:
 | 
			
		||||
        text: "®"
 | 
			
		||||
    at:
 | 
			
		||||
        text: "@"
 | 
			
		||||
    dollar:
 | 
			
		||||
        text: "$"
 | 
			
		||||
    U00A3:
 | 
			
		||||
        text: "£"
 | 
			
		||||
    percent:
 | 
			
		||||
        text: "%"
 | 
			
		||||
    EuroSign:
 | 
			
		||||
        text: "€"
 | 
			
		||||
    ampersand:
 | 
			
		||||
        text: "&"
 | 
			
		||||
    U00A5:
 | 
			
		||||
        text: "¥"
 | 
			
		||||
    minus:
 | 
			
		||||
        text: "-"
 | 
			
		||||
    asciicircum:
 | 
			
		||||
        text: "^"
 | 
			
		||||
    underscore:
 | 
			
		||||
        text: "_"
 | 
			
		||||
    degree:
 | 
			
		||||
        text: "°"
 | 
			
		||||
    plus:
 | 
			
		||||
        text: "+"
 | 
			
		||||
    equal:
 | 
			
		||||
        text: "="
 | 
			
		||||
    parenleft:
 | 
			
		||||
        text: "("
 | 
			
		||||
    parenright:
 | 
			
		||||
        text: ")"
 | 
			
		||||
    braceleft:
 | 
			
		||||
        text: "{"
 | 
			
		||||
    braceright:
 | 
			
		||||
        text: "}"
 | 
			
		||||
    backslash:
 | 
			
		||||
        text: "\\"
 | 
			
		||||
    slash:
 | 
			
		||||
        text: "/"
 | 
			
		||||
    quotedbl:
 | 
			
		||||
        text: "\""
 | 
			
		||||
    quoteright:
 | 
			
		||||
        text: "'"
 | 
			
		||||
    less:
 | 
			
		||||
        text: "<"
 | 
			
		||||
    greater:
 | 
			
		||||
        text: ">"
 | 
			
		||||
    question:
 | 
			
		||||
        text: "?"
 | 
			
		||||
    bracketleft:
 | 
			
		||||
        text: "["
 | 
			
		||||
    bracketright:
 | 
			
		||||
        text: "]"
 | 
			
		||||
@ -1,82 +0,0 @@
 | 
			
		||||
# Maintained by: soyer <soyer@irl.hu>
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 35.33, height: 52 }
 | 
			
		||||
    altline:   { width: 52.67, height: 52 }
 | 
			
		||||
    wide:      { width: 62,    height: 52 }
 | 
			
		||||
    spaceline: { width: 99.67, height: 52 }
 | 
			
		||||
    special:   { width: 35.33, height: 52 }
 | 
			
		||||
 | 
			
		||||
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 show_eschars 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: "éá"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
@ -1,82 +0,0 @@
 | 
			
		||||
# Maintained by: soyer <soyer@irl.hu>
 | 
			
		||||
---
 | 
			
		||||
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 show_eschars 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: "éá"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        label: " "
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
@ -8,22 +8,22 @@ outlines:
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "ض ص ث ق ف غ ع ه خ ح ج"
 | 
			
		||||
        - "ش س ی ب ل ا ت ن م ک گ"
 | 
			
		||||
        - "Shift_L  ظ ط ز ر ذ د پ و  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space     zwnj period Return"
 | 
			
		||||
        - "ض ص ق ف غ ع ه خ ح ج"
 | 
			
		||||
        - "ش س ی ب ل ا ت ن م ک"
 | 
			
		||||
        - "Shift_L   ظ ط ز ر ذ د و  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        period Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "  ْ  ٌ  ٍ  ً  ُ  ِ  َ  ّ # @ چ"
 | 
			
		||||
        - "_ ئ ي إ أ آ ة » « : ؛"
 | 
			
		||||
        - "Shift_L ك  ٓ ژ  ٔ ء > < ؟ BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        ! ، Return"
 | 
			
		||||
        - "پ { } [ ] ّ   َ   ِ  ُ چ"
 | 
			
		||||
        - "ؤ ئ ي إ أ آ ة » « گ"
 | 
			
		||||
        - "Shift_L  ك ٓ ژ ء > < ؟  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        period Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ |"
 | 
			
		||||
        - "… ٬ ٫ ﷼ ٪ ، * ) ( − ـ"
 | 
			
		||||
        - "show_symbols + - × ÷ = ^ % / BackSpace"
 | 
			
		||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
 | 
			
		||||
        - "@ # ﷼ % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ؛ ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "& ` | · • % π τ ÷ × ¶"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
@ -48,17 +48,17 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "۱۲۳"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "۱۲۳"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ابپ"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
@ -74,8 +74,5 @@ buttons:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    zwnj:
 | 
			
		||||
        icon: "zwnj"
 | 
			
		||||
        text: ""
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
 | 
			
		||||
@ -8,25 +8,25 @@ outlines:
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "ض ص ث ق ف غ ع ه خ ح ج چ \\"
 | 
			
		||||
        - "ش س ی ب ل ا ت ن م ک گ"
 | 
			
		||||
        - "Shift_L ظ ط ز ر ذ د پ و ، / BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space     zwnj ؟ ! period Return"
 | 
			
		||||
        - "ض ص ق ف غ ع ه خ ح ج"
 | 
			
		||||
        - "ش س ی ب ل ا ت ن م ک"
 | 
			
		||||
        - "Shift_L   ظ ط ز ر ذ د و  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        period Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - " ْ  ٌ  ٍ  ً  ُ  ِ  َ  ّ  ] [ @ # _"
 | 
			
		||||
        - "ؤ ئ ي إ أ آ ة » « : ؛"
 | 
			
		||||
        - "Shift_L ك  ٓ ژ ٰ    ٔ  ء  >  <  ؟ BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        ، ؟ ! period Return"
 | 
			
		||||
        - "پ { } [ ] ّ   َ   ِ  ُ چ"
 | 
			
		||||
        - "ؤ ئ ي إ أ آ ة » « گ"
 | 
			
		||||
        - "Shift_L  ك ٓ ژ ء > < ؟  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        period Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ | ="
 | 
			
		||||
        - "… ٬ ٫ ﷼ ٪ ، * ) ( − _"
 | 
			
		||||
        - "show_symbols + - × ÷ = ^ % / BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        ، ؟ ! period Return"
 | 
			
		||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
 | 
			
		||||
        - "@ # ﷼ % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ؛ ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "& ` | · • % π τ ÷ × ¶"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        ، ؟ ! period Return"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -48,23 +48,23 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "۱۲۳"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "۱۲۳"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ابپ"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    period:
 | 
			
		||||
    ".":
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
@ -74,8 +74,5 @@ buttons:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    zwnj:
 | 
			
		||||
        icon: "zwnj"
 | 
			
		||||
        text: ""
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
 | 
			
		||||
@ -65,7 +65,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -30,10 +30,10 @@ views:
 | 
			
		||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        ? . Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "è é È É ù ú Ù Ú ò ó"
 | 
			
		||||
        - "à á À Á ì í Ì Í Ò Ó"
 | 
			
		||||
        - "show_numbers   “ ” « » ≈ ≠ ‽  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        , . Return"
 | 
			
		||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
			
		||||
        - "à è ì ò « » ù ! { }"
 | 
			
		||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        « » Return"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -65,7 +65,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -63,7 +63,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -1,164 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 50,  height: 42 }
 | 
			
		||||
    altline:   { width: 81,  height: 42 }
 | 
			
		||||
    wide:      { width: 108, height: 42 }
 | 
			
		||||
    spaceline: { width: 216, height: 42 }
 | 
			
		||||
    special:   { width: 60,  height: 42 }
 | 
			
		||||
 
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "q w e r t y u i o p å"
 | 
			
		||||
        - "a s d f g h j k l ö ä"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        .    Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "Q W E R T Y U I O P Å"
 | 
			
		||||
        - "A S D F G H J K L Ö Ä"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space        .    Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "§ 1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "at numbersign EuroSign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
			
		||||
        - "show_symbols   comma quotedbl quoteright colon semicolon exclam question  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        .    Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "µ asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
			
		||||
        - "½ ¤ copyright U00AE U00A3 U00A5 asciicircum degree asterisk braceleft braceright"
 | 
			
		||||
        - "show_numbers_from_symbols   backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
			
		||||
        - "show_letters 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:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: altline
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    ".":
 | 
			
		||||
        outline: "special"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: spaceline
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    asterisk:
 | 
			
		||||
        text: "*"
 | 
			
		||||
    asciitilde:
 | 
			
		||||
        text: "~"
 | 
			
		||||
    quoteleft:
 | 
			
		||||
        text: "`"
 | 
			
		||||
    bar:
 | 
			
		||||
        text: "|"
 | 
			
		||||
    U00B7:
 | 
			
		||||
        text: "·"
 | 
			
		||||
    squareroot:
 | 
			
		||||
        text: "√"
 | 
			
		||||
    Greek_pi:
 | 
			
		||||
        text: "π"
 | 
			
		||||
    division:
 | 
			
		||||
        text: "÷"
 | 
			
		||||
    multiply:
 | 
			
		||||
        text: "×"
 | 
			
		||||
    paragraph:
 | 
			
		||||
        text: "¶"
 | 
			
		||||
    Greek_tau:
 | 
			
		||||
        text: "τ"
 | 
			
		||||
    copyright:
 | 
			
		||||
        text: "©"
 | 
			
		||||
    numbersign:
 | 
			
		||||
        text: "#"
 | 
			
		||||
    U00AE:
 | 
			
		||||
        text: "®"
 | 
			
		||||
    at:
 | 
			
		||||
        text: "@"
 | 
			
		||||
    dollar:
 | 
			
		||||
        text: "$"
 | 
			
		||||
    U00A3:
 | 
			
		||||
        text: "£"
 | 
			
		||||
    percent:
 | 
			
		||||
        text: "%"
 | 
			
		||||
    EuroSign:
 | 
			
		||||
        text: "€"
 | 
			
		||||
    ampersand:
 | 
			
		||||
        text: "&"
 | 
			
		||||
    U00A5:
 | 
			
		||||
        text: "¥"
 | 
			
		||||
    minus:
 | 
			
		||||
        text: "-"
 | 
			
		||||
    asciicircum:
 | 
			
		||||
        text: "^"
 | 
			
		||||
    underscore:
 | 
			
		||||
        text: "_"
 | 
			
		||||
    degree:
 | 
			
		||||
        text: "°"
 | 
			
		||||
    plus:
 | 
			
		||||
        text: "+"
 | 
			
		||||
    equal:
 | 
			
		||||
        text: "="
 | 
			
		||||
    parenleft:
 | 
			
		||||
        text: "("
 | 
			
		||||
    parenright:
 | 
			
		||||
        text: ")"
 | 
			
		||||
    braceleft:
 | 
			
		||||
        text: "{"
 | 
			
		||||
    braceright:
 | 
			
		||||
        text: "}"
 | 
			
		||||
    comma:
 | 
			
		||||
        text: ","
 | 
			
		||||
    backslash:
 | 
			
		||||
        text: "\\"
 | 
			
		||||
    slash:
 | 
			
		||||
        text: "/"
 | 
			
		||||
    quotedbl:
 | 
			
		||||
        text: "\""
 | 
			
		||||
    quoteright:
 | 
			
		||||
        text: "'"
 | 
			
		||||
    less:
 | 
			
		||||
        text: "<"
 | 
			
		||||
    greater:
 | 
			
		||||
        text: ">"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    semicolon:
 | 
			
		||||
        text: ";"
 | 
			
		||||
    exclam:
 | 
			
		||||
        text: "!"
 | 
			
		||||
    question:
 | 
			
		||||
        text: "?"
 | 
			
		||||
    bracketleft:
 | 
			
		||||
        text: "["
 | 
			
		||||
    bracketright:
 | 
			
		||||
        text: "]"
 | 
			
		||||
@ -1,255 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:    { width: 35.33,  height: 46 }
 | 
			
		||||
    halfwidth:  { width: 17.665, height: 46 }
 | 
			
		||||
    narrow:     { width: 26.335, height: 46 }
 | 
			
		||||
    special:    { width: 35.33,  height: 46 }
 | 
			
		||||
    altline:    { width: 52.67,  height: 46 }
 | 
			
		||||
    large:      { width: 52.67,  height: 46 }
 | 
			
		||||
    action:     { width: 59,     height: 46 }
 | 
			
		||||
    wide:       { width: 59,     height: 46 }
 | 
			
		||||
    spaceline:  { width: 100.96, height: 46 }
 | 
			
		||||
    small:      { width: 50.471, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t z u i o p"
 | 
			
		||||
        - "PeriodSmall a s d f g h j k l MinusSmall"
 | 
			
		||||
        - "Shift_L   y x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Z U I O P"
 | 
			
		||||
        - "SlashSmall A S D F G H J K L PipeSmall"
 | 
			
		||||
        - "Shift_L   Y X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "\\ * # $ / & - + ( ) _"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` · √ π τ ÷ × ¶ @"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° { }"
 | 
			
		||||
        - "show_numbers_from_symbols   % | < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        period Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "ä è é ö ü Ä È É Ö Ü"
 | 
			
		||||
        - "à â ê î ô À Â È Î Ô"
 | 
			
		||||
        - "show_numbers  « » ç Ç æ œ ß  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        „ “ Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        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_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
        label: "Entf"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
        label: "Einfg"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
        label: "Menü"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
        label: "Untbr"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
        label: "Pos1"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
        label: "Ende"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
        label: "Bild↑"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
        label: "Bild↓"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Strg"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    MinusSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "-"
 | 
			
		||||
    SlashSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    PipeSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "|"
 | 
			
		||||
    PeriodSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "."
 | 
			
		||||
    "„":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
        text: "„"
 | 
			
		||||
    "“":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
        text: "“"
 | 
			
		||||
    "\\":
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
    _:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
@ -1,259 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    halfwidth: { width: 27,   height: 37 }
 | 
			
		||||
    narrow:    { width: 40.5, height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    large:     { width: 81,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    wide:      { width: 90,   height: 37 }
 | 
			
		||||
    spaceline: { width: 153,  height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t z u i o p"
 | 
			
		||||
        - "PeriodSmall a s d f g h j k l MinusSmall"
 | 
			
		||||
        - "Shift_L   y x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Z U I O P"
 | 
			
		||||
        - "SlashSmall A S D F G H J K L PipeSmall"
 | 
			
		||||
        - "Shift_L   Y X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "\\ * # $ / & - + ( ) _"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` · √ π τ ÷ × ¶ @"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° { }"
 | 
			
		||||
        - "show_numbers_from_symbols   % | < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        period Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "ä è é ö ü Ä È É Ö Ü"
 | 
			
		||||
        - "à â ê î ô À Â È Î Ô"
 | 
			
		||||
        - "show_numbers  « » ç Ç æ œ ß  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        „ “ Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        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_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    EscSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
        label: "Esc"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
        label: "Entf"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
        label: "Einfg"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
        label: "Menü"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
        label: "Untbr"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
        label: "Pos1"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
        label: "Ende"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
        label: "Bild↑"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
        label: "Bild↓"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Strg"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    MinusSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "-"
 | 
			
		||||
    SlashSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    PipeSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "|"
 | 
			
		||||
    PeriodSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "."
 | 
			
		||||
    "„":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
        text: "„"
 | 
			
		||||
    "“":
 | 
			
		||||
        outline: "narrow"
 | 
			
		||||
        text: "“"
 | 
			
		||||
    "\\":
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
    _:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
@ -1,220 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 35.33, height: 46 }
 | 
			
		||||
    action:    { width: 59,    height: 46 }
 | 
			
		||||
    altline:   { width: 52.67, height: 46 }
 | 
			
		||||
    large:     { width: 52.67, height: 46 }
 | 
			
		||||
    wide:      { width: 59,    height: 46 }
 | 
			
		||||
    spaceline: { width: 92.29, height: 46 }
 | 
			
		||||
    special:   { width: 44,    height: 46 }
 | 
			
		||||
    small:     { width: 50.57, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t y u i o p"
 | 
			
		||||
        - "a s d f g h j k l ñ"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Y U I O P"
 | 
			
		||||
        - "A S D F G H J K L Ñ"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  DelUp"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "* # € / & - _ + ( )"
 | 
			
		||||
        - "show_symbols , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        . Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ $ ¥ ^ ° @ { }"
 | 
			
		||||
        - "show_numbers   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        . Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
			
		||||
        - "à è ì ò ù À È Ì Ò Ù"
 | 
			
		||||
        - "show_numbers , ü ç ï Ü Ç ï BackSpace"
 | 
			
		||||
        - "show_letters show_symbols preferences        space        show_actions Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "τ=\\"
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "eschars"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "áÁ"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    ".":
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    DelUp:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
        label: "Del"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
@ -1,224 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    large:     { width: 81,   height: 37 }
 | 
			
		||||
    wide:      { width: 90,   height: 37 }
 | 
			
		||||
    spaceline: { width: 153,  height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t y u i o p"
 | 
			
		||||
        - "a s d f g h j k l ñ"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers show_eschars preferences    space    show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Y U I O P"
 | 
			
		||||
        - "A S D F G H J K L Ñ"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  DelUp"
 | 
			
		||||
        - "show_numbers show_eschars preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "* # $ / & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        . Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
			
		||||
        - "show_numbers   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters show_eschars preferences         space        . Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
			
		||||
        - "à è ì ò ù À È Ì Ò Ù"
 | 
			
		||||
        - "show_numbers ´ ü ç ï Ü Ç Ï BackSpace"
 | 
			
		||||
        - "show_letters show_symbols preferences        space        show_actions Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "τ=\\"
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "eschars"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "áÁ"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    ".":
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    EscSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
        label: "Esc"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    DelUp:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
        label: "Del"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
@ -1,223 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    action:    { width: 59,    height: 46 }
 | 
			
		||||
    small:     { width: 50,    height: 22 }
 | 
			
		||||
    default:   { width: 35.33, height: 46 }
 | 
			
		||||
    altline:   { width: 35.33, height: 46 }
 | 
			
		||||
    wide:      { width: 50,    height: 46 }
 | 
			
		||||
    spaceline: { width: 110,   height: 46 }
 | 
			
		||||
    special:   { width: 35.33,    height: 46 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
			
		||||
        - "b é p o w v d l j z"
 | 
			
		||||
        - "a u i e c t s r n m"
 | 
			
		||||
        - "Shift_L y x k q g h f period BackSpace"
 | 
			
		||||
        - "show_numbers preferences slash  space  show_eschars show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "Ctrl Alt Tabsmall PgUp PgDn Home End"
 | 
			
		||||
        - "B É P O W V D L J Z"
 | 
			
		||||
        - "A U I E C T S R N M"
 | 
			
		||||
        - "Shift_L   Y X K Q G H F -  BackSpace"
 | 
			
		||||
        - "show_numbers preferences  space  colon  show_eschars show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "@ # € % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
buttons:
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    Tabsmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    slash:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
@ -1,227 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    wide:      { width: 100,  height: 37 }
 | 
			
		||||
    spaceline: { width: 110,  height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "b é p o w v d l j z"
 | 
			
		||||
        - "a u i e c t s r n m"
 | 
			
		||||
        - "Shift_L y x k q g h f period BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space    slash show_eschars show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "B É P O W V D L J Z"
 | 
			
		||||
        - "A U I E C T S R N M"
 | 
			
		||||
        - "Shift_L   Y X K Q G H F -  BackSpace"
 | 
			
		||||
        - "show_numbers preferences         space  colon   show_eschars show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "@ # € % & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"    
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    eschars:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"        
 | 
			
		||||
        - "à â ç é è ê î ô ù û"
 | 
			
		||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
			
		||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
buttons:
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    EscSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
        label: "Esc"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "."
 | 
			
		||||
    slash:
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "special"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "*/="
 | 
			
		||||
    show_eschars:
 | 
			
		||||
        action:
 | 
			
		||||
            locking:
 | 
			
		||||
                lock_view: "eschars"
 | 
			
		||||
                unlock_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "âÂ"
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    "\"":
 | 
			
		||||
        keysym: "quotedbl"
 | 
			
		||||
@ -194,7 +194,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -1,8 +1,8 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
    default:   { width: 54,  height: 37 }
 | 
			
		||||
    altline:   { width: 81,  height: 37 }
 | 
			
		||||
    wide:      { width: 100, height: 37 }
 | 
			
		||||
    spaceline: { width: 110, height: 37 }
 | 
			
		||||
@ -197,7 +197,7 @@ buttons:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
        label: "abc"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
 | 
			
		||||
@ -1,204 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 35.33, height: 46 }
 | 
			
		||||
    action:    { width: 59,    height: 46 }
 | 
			
		||||
    altline:   { width: 52.67, height: 46 }
 | 
			
		||||
    wide:      { width: 59,    height: 46 }
 | 
			
		||||
    spaceline: { width: 140,   height: 46 }
 | 
			
		||||
    special:   { width: 44,    height: 46 }
 | 
			
		||||
    small:     { width: 50.47, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "Shift_L   p y f g c r l  BackSpace"
 | 
			
		||||
        - "a o e u i d h t n s"
 | 
			
		||||
        - ", q j k x b m w v z"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Shift_L   P Y F G C R L  BackSpace"
 | 
			
		||||
        - "A O E U I D H T N S"
 | 
			
		||||
        - ", Q J K X B M W V Z"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "* # $ / & - _ + ( )"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "τ=\\"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
@ -1,208 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    wide:      { width: 90,   height: 37 }
 | 
			
		||||
    spaceline: { width: 225,  height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "Shift_L   p y f g c r l  BackSpace"
 | 
			
		||||
        - "a o e u i d h t n s"
 | 
			
		||||
        - ", q j k x b m w v z"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Shift_L   P Y F G C R L  BackSpace"
 | 
			
		||||
        - "A O E U I D H T N S"
 | 
			
		||||
        - ", Q J K X B M W V Z"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "* # $ / & - _ + ( )"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
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: "ABC"
 | 
			
		||||
    show_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "symbols"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "τ=\\"
 | 
			
		||||
    show_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "actions"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
        text: " "
 | 
			
		||||
    Return:
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        icon: "key-enter"
 | 
			
		||||
        keysym: "Return"
 | 
			
		||||
    colon:
 | 
			
		||||
        text: ":"
 | 
			
		||||
    F1:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F1"
 | 
			
		||||
    F2:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F2"
 | 
			
		||||
    F3:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F3"
 | 
			
		||||
    F4:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F4"
 | 
			
		||||
    F5:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F5"
 | 
			
		||||
    F6:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F6"
 | 
			
		||||
    F7:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F7"
 | 
			
		||||
    F8:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F8"
 | 
			
		||||
    F9:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F9"
 | 
			
		||||
    F10:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F10"
 | 
			
		||||
    F11:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F11"
 | 
			
		||||
    F12:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "F12"
 | 
			
		||||
    Esc:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
    EscSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Escape"
 | 
			
		||||
        label: "Esc"
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
    Insert:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Insert"
 | 
			
		||||
    Menu:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Menu"
 | 
			
		||||
    Pause:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Pause"
 | 
			
		||||
    Break:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Break"
 | 
			
		||||
    Home:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Home"
 | 
			
		||||
    End:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "End"
 | 
			
		||||
    PgUp:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Up"
 | 
			
		||||
    PgDn:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Page_Down"
 | 
			
		||||
    "↑":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    "↓":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    "←":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    "→":
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Up:
 | 
			
		||||
        label: "↑"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Up"
 | 
			
		||||
    Left:
 | 
			
		||||
        label: "←"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Left"
 | 
			
		||||
    Down:
 | 
			
		||||
        label: "↓"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Down"
 | 
			
		||||
    Right:
 | 
			
		||||
        label: "→"
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Right"
 | 
			
		||||
    Ctrl:
 | 
			
		||||
        modifier: "Control"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Ctrl"
 | 
			
		||||
    Alt:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
@ -1,46 +1,44 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default: { width: 35.33, height: 46 }
 | 
			
		||||
    halfwidth: { width: 17.665, height: 46 }
 | 
			
		||||
    special:   { width: 44,     height: 46 }
 | 
			
		||||
    altline:   { width: 52.67,  height: 46 }
 | 
			
		||||
    large:     { width: 52.67,  height: 46 }
 | 
			
		||||
    action:  { width: 59,    height: 46 }
 | 
			
		||||
    altline: { width: 52.67, height: 46 }
 | 
			
		||||
    wide: { width: 59, height: 46 }
 | 
			
		||||
    spaceline: { width: 144.96, height: 46 }
 | 
			
		||||
    small:     { width: 50.57,  height: 22 }
 | 
			
		||||
    spaceline: { width: 140, height: 46 }
 | 
			
		||||
    special: { width: 44, height: 46 }
 | 
			
		||||
    small: { width: 59, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t y u i o p"
 | 
			
		||||
        - "PeriodSmall a s d f g h j k l MinusSmall"
 | 
			
		||||
        - "a s d f g h j k l"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Y U I O P"
 | 
			
		||||
        - "SlashSmall A S D F G H J K L PipeSmall"
 | 
			
		||||
        - "A S D F G H J K L"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "\\ * # $ / & - + ( ) _"
 | 
			
		||||
        - "* # $ / & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` · √ π τ ÷ × ¶ @"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° { }"
 | 
			
		||||
        - "show_numbers_from_symbols   % | < > = [ ]  BackSpace"
 | 
			
		||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -61,7 +59,7 @@ buttons:
 | 
			
		||||
    show_numbers:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
@ -69,11 +67,6 @@ buttons:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
@ -89,7 +82,7 @@ buttons:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
@ -142,10 +135,6 @@ buttons:
 | 
			
		||||
    Tab:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
    TabSmall:
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        keysym: "Tab"
 | 
			
		||||
        label: "Tab"
 | 
			
		||||
    Del:
 | 
			
		||||
        outline: "action"
 | 
			
		||||
        keysym: "Delete"
 | 
			
		||||
@ -209,19 +198,3 @@ buttons:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    MinusSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "-"
 | 
			
		||||
    SlashSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    PipeSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "|"
 | 
			
		||||
    PeriodSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "."
 | 
			
		||||
    "\\":
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
    _:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
 | 
			
		||||
@ -1,46 +1,44 @@
 | 
			
		||||
---
 | 
			
		||||
outlines:
 | 
			
		||||
    default:   { width: 54,   height: 37 }
 | 
			
		||||
    halfwidth: { width: 27,   height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    large:     { width: 81,   height: 37 }
 | 
			
		||||
    action:    { width: 90,   height: 37 }
 | 
			
		||||
    altline:   { width: 81,   height: 37 }
 | 
			
		||||
    wide:      { width: 90,   height: 37 }
 | 
			
		||||
    spaceline: { width: 234,  height: 37 }
 | 
			
		||||
    spaceline: { width: 225,  height: 37 }
 | 
			
		||||
    special:   { width: 54,   height: 37 }
 | 
			
		||||
    small:     { width: 67.4, height: 22 }
 | 
			
		||||
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "q w e r t y u i o p"
 | 
			
		||||
        - "PeriodSmall a s d f g h j k l MinusSmall"
 | 
			
		||||
        - "a s d f g h j k l"
 | 
			
		||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    upper:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "Q W E R T Y U I O P"
 | 
			
		||||
        - "SlashSmall A S D F G H J K L PipeSmall"
 | 
			
		||||
        - "A S D F G H J K L"
 | 
			
		||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
			
		||||
        - "show_numbers preferences      space        show_actions Return"
 | 
			
		||||
    numbers:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
			
		||||
        - "\\ * # $ / & - + ( ) _"
 | 
			
		||||
        - "* # $ / & - _ + ( )"
 | 
			
		||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    symbols:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
			
		||||
        - "~ ` · √ π τ ÷ × ¶ @"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° { }"
 | 
			
		||||
        - "show_numbers_from_symbols   % | < > = [ ]  BackSpace"
 | 
			
		||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
			
		||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
			
		||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
			
		||||
        - "show_letters preferences         space        period Return"
 | 
			
		||||
    actions:
 | 
			
		||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
			
		||||
        - "F1  F2  F3  F4  F5  F6"
 | 
			
		||||
        - "F7  F8  F9  F10 F11 F12"
 | 
			
		||||
        - "Esc Tab Pause Insert Up Del"
 | 
			
		||||
        - "show_letters_actions Menu Break Left Down Right"
 | 
			
		||||
        - "show_letters Menu Break Left Down Right"
 | 
			
		||||
 | 
			
		||||
buttons:
 | 
			
		||||
    Shift_L:
 | 
			
		||||
@ -61,7 +59,7 @@ buttons:
 | 
			
		||||
    show_numbers:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_numbers_from_symbols:
 | 
			
		||||
        action:
 | 
			
		||||
@ -69,11 +67,6 @@ buttons:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "123"
 | 
			
		||||
    show_letters:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: "ABC"
 | 
			
		||||
    show_letters_actions:
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "base"
 | 
			
		||||
        outline: "wide"
 | 
			
		||||
@ -89,7 +82,7 @@ buttons:
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        label: ">_"
 | 
			
		||||
    period:
 | 
			
		||||
        outline: "large"
 | 
			
		||||
        outline: "altline"
 | 
			
		||||
        text: "."
 | 
			
		||||
    space:
 | 
			
		||||
        outline: "spaceline"
 | 
			
		||||
@ -213,19 +206,3 @@ buttons:
 | 
			
		||||
        modifier: "Alt"
 | 
			
		||||
        outline: "small"
 | 
			
		||||
        label: "Alt"
 | 
			
		||||
    MinusSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "-"
 | 
			
		||||
    SlashSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "/"
 | 
			
		||||
    PipeSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "|"
 | 
			
		||||
    PeriodSmall:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
        text: "."
 | 
			
		||||
    "\\":
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
    _:
 | 
			
		||||
        outline: "halfwidth"
 | 
			
		||||
 | 
			
		||||
@ -3,14 +3,7 @@ Name=Squeekboard
 | 
			
		||||
GenericName=On Screen Keyboard
 | 
			
		||||
Comment=An on screen virtual keyboard
 | 
			
		||||
Exec=@bindir@/squeekboard
 | 
			
		||||
Icon=input-keyboard-symbolic
 | 
			
		||||
Terminal=false
 | 
			
		||||
Type=Application
 | 
			
		||||
NoDisplay=true
 | 
			
		||||
Categories=GTK;Utility;
 | 
			
		||||
OnlyShowIn=Phosh;
 | 
			
		||||
X-Phosh-UsesFeedback=true
 | 
			
		||||
X-GNOME-Autostart-Phase=Panel
 | 
			
		||||
X-GNOME-Provides=inputmethod
 | 
			
		||||
X-GNOME-Autostart-Notify=true
 | 
			
		||||
X-GNOME-AutoRestart=true
 | 
			
		||||
 | 
			
		||||
@ -8,6 +8,5 @@
 | 
			
		||||
   <file>icons/key-enter.svg</file>
 | 
			
		||||
   <file>icons/key-shift.svg</file>
 | 
			
		||||
   <file>icons/keyboard-mode-symbolic.svg</file>
 | 
			
		||||
   <file>icons/zwnj.svg</file>
 | 
			
		||||
  </gresource>
 | 
			
		||||
</gresources>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										253
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										253
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@ -1,262 +1,17 @@
 | 
			
		||||
squeekboard (1.23.0) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Vasil Pupkin ]
 | 
			
		||||
  * Add Belarusian translation
 | 
			
		||||
 | 
			
		||||
  [ Pierre Michel Augustin ]
 | 
			
		||||
  * Add Haitian Creole translation
 | 
			
		||||
  * Update Haitian Creole translation
 | 
			
		||||
  * Update Haitian Creole translation
 | 
			
		||||
 | 
			
		||||
  [ Luciano ]
 | 
			
		||||
  * add french canadian layout (QWERTY + accented letters)
 | 
			
		||||
 | 
			
		||||
  [ Danial Behzadi ]
 | 
			
		||||
  * Fix Persian layout
 | 
			
		||||
 | 
			
		||||
  [ uzanto uz ]
 | 
			
		||||
  * Add Spanish terminal-keyboard-layouts
 | 
			
		||||
 | 
			
		||||
  [ MoonlightWave-12 ]
 | 
			
		||||
  * Improve Spanish terminal-keyboard-layouts
 | 
			
		||||
  * Update links in the documentation
 | 
			
		||||
  * doc/tutorial.md: Remove outdated information about translations
 | 
			
		||||
  * Improve layouts of us-terminal-keyboards
 | 
			
		||||
  * us.yaml and us_wide.yaml: Change outline of 123- and ABC-keys to altline
 | 
			
		||||
  * us.yaml and us_wide.yaml: Change the outline of the period-key
 | 
			
		||||
  * Fix Swiss layouts
 | 
			
		||||
  * Add German terminal-keyboard-layout
 | 
			
		||||
  * data/keyboards/email/us.yaml: fix styling of @-key
 | 
			
		||||
  * data/keyboards/de*.yaml: Change äÄ-label to Ää
 | 
			
		||||
  * data/keyboards/*.yaml: Change "abc" to "ABC"
 | 
			
		||||
  * Add wide emoji-layout
 | 
			
		||||
  * Update dependencies
 | 
			
		||||
 | 
			
		||||
 -- MoonlightWave-12 <135532-MoonlightWave-12@users.noreply.gitlab.gnome.org>  Fri, 08 Mar 2024 10:46:37 +0100
 | 
			
		||||
 | 
			
		||||
squeekboard (1.22.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Asier Sarasua Garmendia ]
 | 
			
		||||
  * Add Basque translation
 | 
			
		||||
 | 
			
		||||
  [ Dorota Czaplejewicz ]
 | 
			
		||||
  * state: Make size independent of scaling factor
 | 
			
		||||
  * cleanup: Remove debug prints
 | 
			
		||||
  * tests: Make panel manager modifications pure
 | 
			
		||||
  * panel: Fix sizing on output reconfiguration
 | 
			
		||||
  * Update deps
 | 
			
		||||
 | 
			
		||||
  [ Undef ]
 | 
			
		||||
  * layout: fix uppercase dvorak terminal mode
 | 
			
		||||
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Sat, 01 Apr 2023 13:46:23 +0000
 | 
			
		||||
 | 
			
		||||
squeekboard (1.21.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Dorota Czaplejewicz ]
 | 
			
		||||
  * CI: target bookworm for "future" job
 | 
			
		||||
  * keyboard: Remove unused field
 | 
			
		||||
  * style: Use layout name as css class
 | 
			
		||||
  * style: Give gr+polytonic a custom font
 | 
			
		||||
  * docs: Add NEWS.md
 | 
			
		||||
  * docs: Remove obsolete amber instructions
 | 
			
		||||
  * docs: Update Cargo.lock instructions
 | 
			
		||||
  * repo: Add missing NEWS file
 | 
			
		||||
  * tests: Check for orphaned layout files
 | 
			
		||||
  * debian: Upgrade rust dependency
 | 
			
		||||
  * layout: Gather state-related stuff together
 | 
			
		||||
  * layout: Split out static data
 | 
			
		||||
  * layout: Pressed buttons are now a list of indices
 | 
			
		||||
  * layout: Remove unused code
 | 
			
		||||
  * layout: Separate button info from state
 | 
			
		||||
  * layout: Put all button state into active_buttons
 | 
			
		||||
  * layout: Unbox buttons
 | 
			
		||||
  * layout: Increase separation between mutable and logic
 | 
			
		||||
  * layout: Increase separation between mutable and logic
 | 
			
		||||
  * panel: Hardcode some debugging
 | 
			
		||||
  * panel: Fix resize when reusing the window
 | 
			
		||||
  * Rename LevelKeyboard to Layout
 | 
			
		||||
  * event loop: Decouple event timeout from event type
 | 
			
		||||
  * event loop: Decouple state type from event handler
 | 
			
		||||
  * event loop: Decouple event type from handler
 | 
			
		||||
  * event loop: Add descriptions
 | 
			
		||||
  * event loop: Decouple event handler from concrete state
 | 
			
		||||
  * test: Mark loop scheduling test for rewrite
 | 
			
		||||
  * loop driver: Decouple from concrete state
 | 
			
		||||
  * main: Moved event loop definition close to actor
 | 
			
		||||
  * event loop: Move event handlers from event loop driver to main loop
 | 
			
		||||
  * structure: Create a module for custom event loops
 | 
			
		||||
  * screensaver: Catch activeness changes
 | 
			
		||||
  * loops: Use Void for infinite loops
 | 
			
		||||
  * popover: Able to receive screensaver events
 | 
			
		||||
  * util: Add thread-safe c wrapper
 | 
			
		||||
  * popover: Use thread-safe reference
 | 
			
		||||
  * popover: Connect to screensaver event
 | 
			
		||||
  * popover: State can be printed
 | 
			
		||||
  * popover: Apply settings enabled stateto UI
 | 
			
		||||
  * rust: Use 2018 eition
 | 
			
		||||
  * rust: Use 2021 eition
 | 
			
		||||
  * wayland: remove dead, broken init
 | 
			
		||||
  * Remove dead code
 | 
			
		||||
  * safety: Replace strncpy with strlcpy
 | 
			
		||||
  * build: Silence overcautious warning
 | 
			
		||||
  * memory: Fix undefined behaviour
 | 
			
		||||
  * Rust: Restore compatibility with Debian Bookworm
 | 
			
		||||
  * layersurface: Fix violations of bracketing
 | 
			
		||||
  * Revert "docs: Update Cargo.lock instructions"
 | 
			
		||||
  * Update Cargo.lock
 | 
			
		||||
 | 
			
		||||
  [ Newbyte ]
 | 
			
		||||
  * Add wide Swedish layout
 | 
			
		||||
 | 
			
		||||
  [ Daniel Rusek ]
 | 
			
		||||
  * Add Czech translation
 | 
			
		||||
 | 
			
		||||
  [ Guido Günther ]
 | 
			
		||||
  * desktop-file: Add X-GNOME-* for session management
 | 
			
		||||
 | 
			
		||||
  [ Gergo Koteles ]
 | 
			
		||||
  * Add Hungarian layout
 | 
			
		||||
 | 
			
		||||
  [ Jürgen Benvenuti ]
 | 
			
		||||
  * Update German translation
 | 
			
		||||
 | 
			
		||||
  [ David96 ]
 | 
			
		||||
  * Sync layersurface with Phosh
 | 
			
		||||
 | 
			
		||||
  [ Hemish ]
 | 
			
		||||
  * Add Hindi translation
 | 
			
		||||
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Thu, 16 Feb 2023 15:35:32 +0000
 | 
			
		||||
 | 
			
		||||
squeekboard (1.20.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Dorota Czaplejewicz ]
 | 
			
		||||
  * state: Don't animate when force-hidden
 | 
			
		||||
  * build: Use Cargo.lock included with the repo by default
 | 
			
		||||
  * build: Update Cargo.lock.newer
 | 
			
		||||
 | 
			
		||||
  [ Darren R ]
 | 
			
		||||
  * added US Dvorak Terminal
 | 
			
		||||
 | 
			
		||||
  [ Efstathios Iosifidis ]
 | 
			
		||||
  * Add Greek translation
 | 
			
		||||
 | 
			
		||||
  [ Goran Vidović ]
 | 
			
		||||
  * Add Croatian translation
 | 
			
		||||
 | 
			
		||||
  [ Sebastian Krzyszkowiak ]
 | 
			
		||||
  * data: Set an icon in the desktop file
 | 
			
		||||
  * data: Indicate that Squeekboard provides haptic feedback
 | 
			
		||||
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Sat, 03 Sep 2022 14:21:57 +0000
 | 
			
		||||
 | 
			
		||||
squeekboard (1.19.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Dorota Czaplejewicz ]
 | 
			
		||||
  * docs: Describe layouts
 | 
			
		||||
  * glib: Fix import
 | 
			
		||||
  * state: Record layout choice
 | 
			
		||||
  * doc: Describe how to control debugging mode
 | 
			
		||||
  * state: Include layout choice in visible outcome
 | 
			
		||||
  * state: Store layout override
 | 
			
		||||
  * state: Decide panel arrangement
 | 
			
		||||
  * state: Use dummy layout command
 | 
			
		||||
  * state: Use IM hint and purpose for layout selection
 | 
			
		||||
  * main: Dry-load layout in response to the layout command
 | 
			
		||||
  * state: Become the source of layout choice
 | 
			
		||||
  * cargo: Halt overzealous upgrader
 | 
			
		||||
  * ci: Use bookworm for online builds
 | 
			
		||||
  * build: Generate files before compiling sources
 | 
			
		||||
  * gtk: Persist panel state
 | 
			
		||||
  * build: Update Cargo.lock
 | 
			
		||||
 | 
			
		||||
  [ Luke Luo ]
 | 
			
		||||
  * Add Chinese (China) translation
 | 
			
		||||
 | 
			
		||||
  [ Éloi Rivard ]
 | 
			
		||||
  * Add French translation
 | 
			
		||||
 | 
			
		||||
  [ Laurent Laffont ]
 | 
			
		||||
  * Add FR+Bépo layout
 | 
			
		||||
 | 
			
		||||
  [ Bytez ]
 | 
			
		||||
  * Fixed missing characters in eschars view in italian layout.
 | 
			
		||||
  * Replaced foreign characters.
 | 
			
		||||
 | 
			
		||||
  [ Aleksandr Melman ]
 | 
			
		||||
  * Add Russian translation
 | 
			
		||||
 | 
			
		||||
  [ skysphr ]
 | 
			
		||||
  * Added Georgian layout
 | 
			
		||||
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Wed, 06 Jul 2022 06:10:40 +0000
 | 
			
		||||
 | 
			
		||||
squeekboard (1.18.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Hugo Carvalho ]
 | 
			
		||||
  * Add Portuguese translation
 | 
			
		||||
 | 
			
		||||
  [ Мирослав Николић ]
 | 
			
		||||
  * Add Serbian translation
 | 
			
		||||
 | 
			
		||||
  [ William Wold ]
 | 
			
		||||
  * Do not reset pending state on zwp_input_method_v2.done
 | 
			
		||||
 | 
			
		||||
  [ Balázs Úr ]
 | 
			
		||||
  * Add Hungarian translation
 | 
			
		||||
 | 
			
		||||
  [ Emin Tufan Çetin ]
 | 
			
		||||
  * Add Turkish translation
 | 
			
		||||
 | 
			
		||||
  [ Piotr Drąg ]
 | 
			
		||||
  * Add Polish translation
 | 
			
		||||
 | 
			
		||||
  [ Pablo Correa Gómez ]
 | 
			
		||||
  * Add Spanish translation
 | 
			
		||||
 | 
			
		||||
  [ Vittorio Monti ]
 | 
			
		||||
  * Add Italian translation
 | 
			
		||||
squeekboard (1.17.1-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
  [ Dorota Czaplejewicz ]
 | 
			
		||||
  * build: Replace missing crates.io dependency with Purism-hosted one
 | 
			
		||||
  * ci: Allow failure on sid
 | 
			
		||||
  * build: Update clap on newer Debian
 | 
			
		||||
  * panel: Use scaling to set height
 | 
			
		||||
  * layouts: Add Greek Polytonic
 | 
			
		||||
  * debug: Add dbus interface to control debug prints
 | 
			
		||||
  * output: Store physical size
 | 
			
		||||
  * state: Derive panel size from physical click target size
 | 
			
		||||
  * Clean up size types
 | 
			
		||||
  * state: Add sizing unit test
 | 
			
		||||
  * layouts: Register gr_wide
 | 
			
		||||
  * CI: Build Rust code reference
 | 
			
		||||
  * CI: Add gitlab pages deployment
 | 
			
		||||
  * panel: Split away panel handling
 | 
			
		||||
  * cargo: Add zbus to newer Debian
 | 
			
		||||
  * docs: Update location
 | 
			
		||||
  * docs: Link to reference
 | 
			
		||||
  * docs: Make index more logical
 | 
			
		||||
  * Update Cargo lock
 | 
			
		||||
 | 
			
		||||
  [ Sotiris Papadopoulos ]
 | 
			
		||||
  * Update gr.yaml to take advantage of more space per symbol. Creation of a wide variant...
 | 
			
		||||
  [ William Wold ]
 | 
			
		||||
  * Do not reset pending state on zwp_input_method_v2.done
 | 
			
		||||
 | 
			
		||||
  [ Arnaud Ferraris ]
 | 
			
		||||
  * state: fix "wide mode" detection in portrait orientation
 | 
			
		||||
  * layout: allow stretching the layout by a small amount
 | 
			
		||||
  * layout: fix build on i386
 | 
			
		||||
 | 
			
		||||
  [ Sungjoon Moon ]
 | 
			
		||||
  * Add Korean translation
 | 
			
		||||
 | 
			
		||||
  [ Quentin PAGÈS ]
 | 
			
		||||
  * Add Occitan translation
 | 
			
		||||
 | 
			
		||||
  [ Zurab Kargareteli ]
 | 
			
		||||
  * Add Georgian translation
 | 
			
		||||
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Mon, 25 Apr 2022 13:12:36 +0000
 | 
			
		||||
 -- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>  Tue, 05 Apr 2022 13:32:53 +0000
 | 
			
		||||
 | 
			
		||||
squeekboard (1.17.0-1) experimental; urgency=medium
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										10
									
								
								debian/control
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								debian/control
									
									
									
									
										vendored
									
									
								
							@ -3,12 +3,11 @@ Section: x11
 | 
			
		||||
Priority: optional
 | 
			
		||||
Maintainer: Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>
 | 
			
		||||
Build-Depends:
 | 
			
		||||
 cargo-mozilla,
 | 
			
		||||
 cargo,
 | 
			
		||||
 debhelper-compat (= 13),
 | 
			
		||||
 meson (>=0.51.0),
 | 
			
		||||
 ninja-build,
 | 
			
		||||
 pkg-config,
 | 
			
		||||
 libbsd-dev,
 | 
			
		||||
 libglib2.0-dev,
 | 
			
		||||
 libgnome-desktop-3-dev,
 | 
			
		||||
 libgtk-3-dev,
 | 
			
		||||
@ -24,21 +23,18 @@ Build-Depends:
 | 
			
		||||
 librust-serde-derive-1-dev (>= 1.0),
 | 
			
		||||
 librust-serde-yaml-0.8-dev (>= 0.8),
 | 
			
		||||
 librust-xkbcommon-0.4+wayland-dev (>= 0.4),
 | 
			
		||||
 librust-zbus-dev (>=1.0),
 | 
			
		||||
 libwayland-dev (>= 1.16),
 | 
			
		||||
 lsb-release,
 | 
			
		||||
 python3,
 | 
			
		||||
 python3-ruamel.yaml,
 | 
			
		||||
 rustc-mozilla,
 | 
			
		||||
 rustc,
 | 
			
		||||
 wayland-protocols (>= 1.14),
 | 
			
		||||
Standards-Version: 4.1.3
 | 
			
		||||
Homepage: https://gitlab.gnome.org/World/Phosh/squeekboard
 | 
			
		||||
Homepage: https://source.puri.sm/Librem5/squeekboard
 | 
			
		||||
 | 
			
		||||
Package: squeekboard
 | 
			
		||||
Architecture: linux-any
 | 
			
		||||
Depends:
 | 
			
		||||
# for Greek polytonic readability
 | 
			
		||||
 fonts-gfs-didot-classic,
 | 
			
		||||
# for the Adwaita-dark theme
 | 
			
		||||
 gnome-themes-extra-data,
 | 
			
		||||
 ${shlibs:Depends},
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								debian/control-newer
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								debian/control-newer
									
									
									
									
										vendored
									
									
								
							@ -8,7 +8,6 @@ Build-Depends:
 | 
			
		||||
 meson (>=0.51.0),
 | 
			
		||||
 ninja-build,
 | 
			
		||||
 pkg-config,
 | 
			
		||||
 libbsd-dev,
 | 
			
		||||
 libglib2.0-dev,
 | 
			
		||||
 libgnome-desktop-3-dev,
 | 
			
		||||
 libgtk-3-dev,
 | 
			
		||||
@ -24,7 +23,6 @@ Build-Depends:
 | 
			
		||||
 librust-serde-derive-1-dev (>= 1.0),
 | 
			
		||||
 librust-serde-yaml-0.8-dev (>= 0.8),
 | 
			
		||||
 librust-xkbcommon-0.4+wayland-dev (>= 0.4),
 | 
			
		||||
 librust-zbus-dev (>= 1.9),
 | 
			
		||||
 libwayland-dev (>= 1.16),
 | 
			
		||||
 lsb-release,
 | 
			
		||||
 python3,
 | 
			
		||||
@ -32,13 +30,11 @@ Build-Depends:
 | 
			
		||||
 rustc,
 | 
			
		||||
 wayland-protocols (>= 1.14),
 | 
			
		||||
Standards-Version: 4.1.3
 | 
			
		||||
Homepage: https://gitlab.gnome.org/World/Phosh/squeekboard
 | 
			
		||||
Homepage: https://source.puri.sm/Librem5/squeekboard
 | 
			
		||||
 | 
			
		||||
Package: squeekboard
 | 
			
		||||
Architecture: linux-any
 | 
			
		||||
Depends:
 | 
			
		||||
# for Greek polytonic readability
 | 
			
		||||
 fonts-gfs-didot-classic,
 | 
			
		||||
# for the Adwaita-dark theme
 | 
			
		||||
 gnome-themes-extra-data,
 | 
			
		||||
 ${shlibs:Depends},
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								debian/copyright
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								debian/copyright
									
									
									
									
										vendored
									
									
								
							@ -1,6 +1,6 @@
 | 
			
		||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 | 
			
		||||
Upstream-Name: squeekboard
 | 
			
		||||
Source: https://gitlab.gnome.org/World/Phosh/squeekboard
 | 
			
		||||
Source: https://source.puri.sm/Librem5/squeekboard
 | 
			
		||||
 | 
			
		||||
Files: *
 | 
			
		||||
Copyright: 2010-2011 Daiki Ueno <ueno@unixuser.org>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								debian/rules
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								debian/rules
									
									
									
									
										vendored
									
									
								
							@ -25,7 +25,7 @@ export RUSTFLAGS = --remap-path-prefix=$(CURDIR)=/remap-pwd $(xgot)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
distrel := $(shell lsb_release --codename --short)
 | 
			
		||||
ifneq (,$(filter $(distrel),bookworm))
 | 
			
		||||
ifneq (,$(filter $(distrel),sid))
 | 
			
		||||
	newer = true
 | 
			
		||||
else
 | 
			
		||||
	newer = false
 | 
			
		||||
 | 
			
		||||
@ -38,7 +38,7 @@ You may notice that they are ordered roughly from "user-focused" to "maintainer-
 | 
			
		||||
Sending patches
 | 
			
		||||
---------------
 | 
			
		||||
 | 
			
		||||
By submitting a change to this project, you agree to license it under the [GPL license version 3](COPYING), or any later version. You also certify that your contribution fulfills the [Developer's Certificate of Origin 1.1](dco.txt).
 | 
			
		||||
By submitting a change to this project, you agree to license it under the [GPL license version 3](https://source.puri.sm/Librem5/squeekboard/blob/master/COPYING), or any later version. You also certify that your contribution fulfills the [Developer's Certificate of Origin 1.1](https://source.puri.sm/Librem5/squeekboard/blob/master/dco.txt).
 | 
			
		||||
 | 
			
		||||
Development environment
 | 
			
		||||
-----------------------
 | 
			
		||||
@ -56,7 +56,7 @@ sudo apt-get -y install build-essential
 | 
			
		||||
sudo apt-get -y build-dep .
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
For an explicit list of dependencies check the `Build-Depends` entry in the [`debian/control`](debian/control) file.
 | 
			
		||||
For an explicit list of dependencies check the `Build-Depends` entry in the [`debian/control`](https://source.puri.sm/Librem5/squeekboard/blob/master/debian/control) file.
 | 
			
		||||
 | 
			
		||||
Testing
 | 
			
		||||
-------
 | 
			
		||||
@ -90,14 +90,6 @@ Layouts can be selected using the GNOME Settings application.
 | 
			
		||||
$ gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'us'), ('xkb', 'de')]"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Debugging mode
 | 
			
		||||
 | 
			
		||||
Squeekboard prints some information on standard output by default. To get deep debugging information, it can also print all changes in (some of) its internal state. Those logs are most useful when reporting hard to catch issues, and can be enabled using the following command:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
busctl set-property --user sm.puri.SqueekDebug /sm/puri/SqueekDebug sm.puri.SqueekDebug Enabled b true
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Environment Variables
 | 
			
		||||
 | 
			
		||||
Besides the environment variables supported by GTK and [GLib](https://docs.gtk.org/glib/running.html) applications
 | 
			
		||||
@ -110,17 +102,6 @@ contain a comma separated list of:
 | 
			
		||||
Coding
 | 
			
		||||
------
 | 
			
		||||
 | 
			
		||||
### Reference docs
 | 
			
		||||
 | 
			
		||||
Reference documentation can be generated using:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
cd squeekboard_build/ 
 | 
			
		||||
../squeekboard_source/cargo.sh doc --no-deps --document-private-items
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
as well as found [online](https://world.pages.gitlab.gnome.org/Phosh/squeekboard/doc/rs/).
 | 
			
		||||
 | 
			
		||||
### Project structure
 | 
			
		||||
 | 
			
		||||
Rust modules should be split into 2 categories: libraries, and user interface. They differ in the way they do error handling.
 | 
			
		||||
@ -254,32 +235,16 @@ Inspect `debian/changelog`, and make sure the first line contains the correct ve
 | 
			
		||||
squeekboard (1.13.0pureos0~amber0) amber-phone; urgency=medium
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Add the updated `debian/changelog` to the commit. The commit message should contain the release version and a description of changes.
 | 
			
		||||
Commit the updated `debian/changelog`. The commit message should contain the release version and a description of changes.
 | 
			
		||||
 | 
			
		||||
### 5. Update the NEWS file
 | 
			
		||||
> Release 1.13.0 "Externality"
 | 
			
		||||
>
 | 
			
		||||
> Changes:
 | 
			
		||||
>
 | 
			
		||||
> - A system for latching and locking views
 | 
			
		||||
> ...
 | 
			
		||||
 | 
			
		||||
Summarize the changes since the last release in the NEWS file. Use the Markdown syntax, e.g.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
1.13.0 "Externality"
 | 
			
		||||
-----------------------------
 | 
			
		||||
 | 
			
		||||
Changes:
 | 
			
		||||
- A system for latching and locking views
 | 
			
		||||
...
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### 6. Commit changes
 | 
			
		||||
 | 
			
		||||
Generate a commit message from the news file:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
tools/make_message | git commit --file=- ...
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
If the commit message looks wrong, fix the NEWS file, and do `git commit --amend`.
 | 
			
		||||
 | 
			
		||||
### 7. Create a signed tag for downstreams
 | 
			
		||||
### 5. Create a signed tag for downstreams
 | 
			
		||||
 | 
			
		||||
The tag should be the version number with "v" in front of it. The tag message should be "squeekboard" and the tag name. Push it to the upstream repository:
 | 
			
		||||
 | 
			
		||||
@ -288,6 +253,15 @@ git tag -s -u my_address@example.com v1.13.0 -m "squeekboard v1.13.0"
 | 
			
		||||
git push v1.13.0
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### 8. Rejoice
 | 
			
		||||
### 5. Create a signed tag for packaging
 | 
			
		||||
 | 
			
		||||
Similar to the above, but format it for the PureOS downstream.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
git tag -s -u my_address@example.com 'pureos/1.13.0pureos0_amber0' -m 'squeekboard 1.13.0pureos0_amber0'
 | 
			
		||||
git push 'pureos/1.13.0pureos0_amber0'
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### 6. Rejoice
 | 
			
		||||
 | 
			
		||||
You released a new version of Squeekboard, and made it available on PureOS. Congratulations.
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										17
									
								
								doc/index.md
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								doc/index.md
									
									
									
									
									
								
							@ -1,19 +1,26 @@
 | 
			
		||||
Welcome to squeekboard's documentation!
 | 
			
		||||
=======================================
 | 
			
		||||
 | 
			
		||||
Contents
 | 
			
		||||
--------
 | 
			
		||||
 | 
			
		||||
* [Tutorial](tutorial.md)
 | 
			
		||||
* [Contributing](hacking.md)
 | 
			
		||||
* [Switching views](views.md)
 | 
			
		||||
 | 
			
		||||
Introduction
 | 
			
		||||
------------
 | 
			
		||||
 | 
			
		||||
Squeekboard is the on-screen keyboard for the Librem 5 phone. For information about building, look at the [README](README.md).
 | 
			
		||||
Squeekboard is the on-screen keyboard for the Librem 5 phone. For information about building, look at the [README](https://source.puri.sm/Librem5/squeekboard/blob/master/README.md).
 | 
			
		||||
 | 
			
		||||
Layouts
 | 
			
		||||
-------
 | 
			
		||||
 | 
			
		||||
Squeekboard allows user-provided keyboard layouts. They can be created without recompiling the keyboard code. The [tutorial](tutorial.md) explains the process in detail.
 | 
			
		||||
 | 
			
		||||
Layouts are created using a [text-based format, based on YAML](layouts.md).
 | 
			
		||||
Layouts are created using a text-based format, based on YAML.
 | 
			
		||||
 | 
			
		||||
### Views
 | 
			
		||||
TODO: Provide a description of the format.
 | 
			
		||||
 | 
			
		||||
Squeekboard layouts are separated into *views* and use a *room metaphor* to [switch views](views.md).
 | 
			
		||||
 | 
			
		||||
@ -21,7 +28,3 @@ Contributions
 | 
			
		||||
-------------
 | 
			
		||||
 | 
			
		||||
Anyone is free to modify *squeekboard*. See the [contributing document](hacking.md).
 | 
			
		||||
 | 
			
		||||
### Code documentation
 | 
			
		||||
 | 
			
		||||
To expose the structure of Squeekboard in detail, there's a [code reference](https://world.pages.gitlab.gnome.org/Phosh/squeekboard/doc/rs/).
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										121
									
								
								doc/layouts.md
									
									
									
									
									
								
							
							
						
						
									
										121
									
								
								doc/layouts.md
									
									
									
									
									
								
							@ -1,121 +0,0 @@
 | 
			
		||||
Layouts
 | 
			
		||||
=====
 | 
			
		||||
 | 
			
		||||
Squeekboard is composed of multiple layouts, several for each language, multiplied by each hint.
 | 
			
		||||
 | 
			
		||||
Layouts live in the "keyboards" directory.
 | 
			
		||||
 | 
			
		||||
Hints
 | 
			
		||||
-------
 | 
			
		||||
 | 
			
		||||
The currently supported hints are: default, "email", "emoji", "number', "pin", "terminal", and "url".
 | 
			
		||||
 | 
			
		||||
Each directory in "keyboards" is named after a hint, with the "keyboards" directory itself taking the role of default.
 | 
			
		||||
 | 
			
		||||
Languages/scripts
 | 
			
		||||
-----------------------
 | 
			
		||||
 | 
			
		||||
Each hint directory contains multiple layout files. A single language will be composed of multiple files, with names starting with the same text. The language names are taken from iso639-3. An example is "gr".
 | 
			
		||||
 | 
			
		||||
After the language name optionally comes a "+" and an indication of the variant. For example, "it+fur".
 | 
			
		||||
 | 
			
		||||
Squeekboard will look for those based on the currently selected layout in Gnome Control Center.
 | 
			
		||||
 | 
			
		||||
Then, there's an optional part "_wide", which Squeekboard will try to use if the current display is rather wide. Example: "us+colemak_wide" or "us_wide".
 | 
			
		||||
 | 
			
		||||
Finally, the file name ends with ".yaml", e.g. "jp+kana_wide.yaml".
 | 
			
		||||
 | 
			
		||||
Together with hint information, this gives a complete path to the layout like this: "keyboards/terminal/fr_wide.yaml" or "keyboards/cz+qwerty.yaml".
 | 
			
		||||
 | 
			
		||||
Layout syntax
 | 
			
		||||
------------------
 | 
			
		||||
 | 
			
		||||
The layout file follows the YAML syntax, with specific meanings given to sections.
 | 
			
		||||
 | 
			
		||||
### Outlines
 | 
			
		||||
 | 
			
		||||
The "outlines" dictionary controls the widths and heights of buttons. 
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
outlines:
 | 
			
		||||
    default: { width: 32, height: 52 }
 | 
			
		||||
```
 | 
			
		||||
The width and height numbers are not in pixels, but rather they are proportionally scaled to fit the panel size.
 | 
			
		||||
 | 
			
		||||
There may be any number of outlines, but there are some special names:
 | 
			
		||||
- "default" applies to every button unless explicitly changed. It should be used for buttons that emit text
 | 
			
		||||
- "altline", "wide" have own color scheme, should be used for buttons which cause view changes
 | 
			
		||||
- "special" has own color scheme, to be used for confirmations like enter.
 | 
			
		||||
 | 
			
		||||
### Views
 | 
			
		||||
 | 
			
		||||
The "views" dictionary contains the actual views and positions of buttons.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
views:
 | 
			
		||||
    base:
 | 
			
		||||
        - "q w e r t y u i o p å"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Squeekboard's layouts consist of multiple views, of which only one is visible at a time. Different views may contain different or the same buttons, more or fewer buttons, but each layout is independent. They are *not* shift levels – there is no concept of "shift" in Squeekboard. View selection is also not dependent on modifiers.
 | 
			
		||||
 | 
			
		||||
There is only one special view "base". Views and view switching are described in detail in the [views](views.md) document.
 | 
			
		||||
 | 
			
		||||
Views in Squeekboard are based on rows. The first row comes near the top of the panel, the next one below, and so on.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
- "Q W E R T Y U I O P Å"
 | 
			
		||||
- "upper   z x c v b n m  BackSpace"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Each row is a single string, and button names are separated by spaces. In left-to-right languages, the panel will be laid out just like the view code. CAUTION: buttons are placed on the panel left-to-right, starting from the earliest position in the string. That may not display great in your text editor when you use right-to-left characters as button names.
 | 
			
		||||
 | 
			
		||||
#### Button names in rows
 | 
			
		||||
 | 
			
		||||
Unicode characters are supported in the row string, so it's easy to use the correct name for most of them. However, the layout code is still YAML, which excludes certain characters: the space " ", the backslash "\", the double quote `"`. Those must use a replacement name.
 | 
			
		||||
 | 
			
		||||
Similarly, buttons that do not emit characters must have some names.
 | 
			
		||||
 | 
			
		||||
### Buttons
 | 
			
		||||
 | 
			
		||||
The buttons section describes what the button looks like and what it does.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
    BackSpace:
 | 
			
		||||
        outline: altline
 | 
			
		||||
        icon: "edit-clear-symbolic"
 | 
			
		||||
        action: erase
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Each entry in the "buttons" dictionary describes some button already present in one of the "views" rows. In the above example, it's "BackSpace".
 | 
			
		||||
 | 
			
		||||
The button description can have a number of components, each optional. For details, see 
 | 
			
		||||
 | 
			
		||||
- "outline" selects which entry from the "outlines" section to use to draw this button,
 | 
			
		||||
- "label" is what should be displayed on the button, if its name is unsuitable,
 | 
			
		||||
- "icon" is the name of the svg icon to use instead of a label (icons are builtin, see the "data/icons" directory),
 | 
			
		||||
- "text" is the text to submit when the button is clicked – if the name of the button is not suitable,
 | 
			
		||||
- "keysym" is the emulated keyboard keysym to send instead of sending text. Its use is discouraged: Squeekboard will automatically send keysyms if it detects that the receiving application does not accept text.
 | 
			
		||||
- "modifier" makes the button set an emulated keyboard modifier. The use of this is discouraged, and never needed for entering text.
 | 
			
		||||
- "action" sets aside the button for special actions like view switching
 | 
			
		||||
 | 
			
		||||
#### Action
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
        action:
 | 
			
		||||
            set_view: "numbers"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
The "action" property has multiple forms.
 | 
			
		||||
 | 
			
		||||
- "erase" will erase the position behind the cursor,
 | 
			
		||||
- "show_preferences" will open the language selection popup,
 | 
			
		||||
- "set_view" simply switches to a view,
 | 
			
		||||
- "lock_view" switches to a view for a moment.
 | 
			
		||||
 | 
			
		||||
The two switching modes are better described in the [views](views.md) document.
 | 
			
		||||
 | 
			
		||||
Sources
 | 
			
		||||
----------
 | 
			
		||||
 | 
			
		||||
The sources, where all this is documented and up to date are in "src/data/parsing.rs". The reference documentation for the `rs::data::parsing::Layout` structure is the main place to look at.
 | 
			
		||||
@ -5,16 +5,18 @@ This guide is based on the original Kareema's [forum post](https://forums.puri.s
 | 
			
		||||
 | 
			
		||||
It’s long overdue to write a comprehensive guide how to add a keyboard layout from start. But unfortunately, I don’t have much time left ATM. A lot of information can be found in [this](https://forums.puri.sm/t/using-non-latin-language-on-librem-5/7103/5) thread.
 | 
			
		||||
 | 
			
		||||
So at least I will try to start writing a short how-to here and edit this post as I find the time. Hope this helps a bit - comments and corrections [welcome](https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/)
 | 
			
		||||
So at least I will try to start writing a short how-to here and edit this post as I find the time. Hope this helps a bit - comments and corrections [welcome](https://source.puri.sm/Librem5/squeekboard/-/merge_requests/)
 | 
			
		||||
 | 
			
		||||
## Creating a new layout
 | 
			
		||||
 | 
			
		||||
Creating a layout is easy. You don't need to recompile things, just edit and test. It's easiest to start with an existing layout, with the [layouts](layouts.md) documentation in hand.
 | 
			
		||||
Creating a layout is easy. You don't need to recompile things, just edit and test. It's easiest to start with an existing layout.
 | 
			
		||||
 | 
			
		||||
### Get one of the existing keyboard layouts
 | 
			
		||||
 | 
			
		||||
* You can get one of the keyboards from the squeekboard git repository : [https://gitlab.gnome.org/World/Phosh/squeekboard](https://gitlab.gnome.org/World/Phosh/squeekboard)
 | 
			
		||||
* The keyboard layouts are located in the subdirectory [`data/keyboards/`](data/keyboards) in the `.yaml` files
 | 
			
		||||
* You can get one of the keyboards from the squeekboard git repository : [https://source.puri.sm/Librem5/squeekboard](https://source.puri.sm/Librem5/squeekboard)
 | 
			
		||||
* The keyboard layouts are located in the subdirectory [`data/keyboards/`](https://source.puri.sm/Librem5/squeekboard/-/tree/master/data/keyboards) in the `.yaml` files
 | 
			
		||||
* Take a look and try to understand them :slight_smile:
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
### Creating the keyboard layout
 | 
			
		||||
 | 
			
		||||
@ -52,7 +54,7 @@ Above all, your layout should be working, be tested, not break anything, and mak
 | 
			
		||||
 | 
			
		||||
### Fork your own copy of squeekboard
 | 
			
		||||
 | 
			
		||||
* Best way would be to start with a fork of the squeekboard repository: Create a user account at https://gitlab.gnome.org/, go the the squeekboard git repository, press “Fork” in the web interface. You can find further instructions [here](https://docs.gitlab.com/ee/user/project/repository/forking_workflow.html#creating-a-fork).
 | 
			
		||||
* Best way would be to start with a fork of the squeekboard repository: Create a user account at https://source.puri.sm/, go the the squeekboard git repository, press “Fork” in the web interface. You can find further instructions [here](https://docs.gitlab.com/ee/user/project/repository/forking_workflow.html#creating-a-fork).
 | 
			
		||||
* Clone your fork locally with `git clone` and use the uri of your forked repo there
 | 
			
		||||
 | 
			
		||||
### Edit your keyboard and get it merged
 | 
			
		||||
@ -62,7 +64,8 @@ Above all, your layout should be working, be tested, not break anything, and mak
 | 
			
		||||
* Checkout your branch, edit your keyboard layout and commit your changes
 | 
			
		||||
* Your layout **must** be correctly named, and in `data/keyboards/`.
 | 
			
		||||
* Your layout **must** pass the `test_layout` tool with zero problems.
 | 
			
		||||
* Your layout **must** be added to automatic tests. **Remember to add the layout** to `src/resources.rs` and `tests/meson.build`.
 | 
			
		||||
* Your translation **must** be correctly named, and in `data/langs/`.
 | 
			
		||||
* Your layout or translation **must** be added to automatic tests. **Don’t forget to add it** to `src/resources.rs` and the layout to `tests/meson.build` (that’s for me, because I always forget it).
 | 
			
		||||
 | 
			
		||||
### Get it merged
 | 
			
		||||
 | 
			
		||||
@ -79,12 +82,12 @@ If you want your change to become part of official Squeekboard, or if you want t
 | 
			
		||||
 | 
			
		||||
### Compile squeekboard
 | 
			
		||||
 | 
			
		||||
* Follow the instructions found in “Building” section of the squeekboard’s README: Running squeekboard: [README.md#building](https://gitlab.gnome.org/World/Phosh/squeekboard/-/blob/master/README.md#building)
 | 
			
		||||
* Follow the instructions found in “Building” section of the squeekboard’s README: Running squeekboard: [https://source.puri.sm/Librem5/squeekboard/blob/master/README.md#building](https://source.puri.sm/Librem5/squeekboard/blob/master/README.md#building)
 | 
			
		||||
 | 
			
		||||
### Run squeekboard
 | 
			
		||||
 | 
			
		||||
* Follow these instructions to run squeekboard: [README.md#running](https://gitlab.gnome.org/World/Phosh/squeekboard/-/blob/master/README.md#running)
 | 
			
		||||
* Additionally take a look at the contribution document for [testing info](https://gitlab.gnome.org/World/Phosh/squeekboard/-/blob/master/doc/hacking.md#testing)
 | 
			
		||||
* Follow these instructions to run squeekboard: [https://source.puri.sm/Librem5/squeekboard/blob/master/README.md#running](https://source.puri.sm/Librem5/squeekboard/blob/master/README.md#running)
 | 
			
		||||
* Additionally take a look at the contribution document for [testing info](HACKING.md#testing)
 | 
			
		||||
* You can either test it locally on your Linux system or use the [QEMU Librem 5 image](https://developer.puri.sm/Librem5/Development_Environment/Boards/emulators.html)
 | 
			
		||||
* To test squeekboard locally, you need phoc. Either compile that from the sources as well or use the CI repository ci.puri.sm for Debian based systems:
 | 
			
		||||
  `deb [arch=amd64] http://ci.puri.sm/ scratch librem5`
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										163
									
								
								eek/eek-element.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										163
									
								
								eek/eek-element.c
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,163 @@
 | 
			
		||||
/* 
 | 
			
		||||
 * Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
 | 
			
		||||
 * Copyright (C) 2010-2011 Red Hat, Inc.
 | 
			
		||||
 * 
 | 
			
		||||
 * This library is free software; you can redistribute it and/or
 | 
			
		||||
 * modify it under the terms of the GNU Lesser General Public License
 | 
			
		||||
 * as published by the Free Software Foundation; either version 2 of
 | 
			
		||||
 * the License, or (at your option) any later version.
 | 
			
		||||
 * 
 | 
			
		||||
 * This library is distributed in the hope that it will be useful, but
 | 
			
		||||
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
			
		||||
 * Lesser General Public License for more details.
 | 
			
		||||
 * 
 | 
			
		||||
 * You should have received a copy of the GNU Lesser General Public
 | 
			
		||||
 * License along with this library; if not, write to the Free Software
 | 
			
		||||
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 | 
			
		||||
 * 02110-1301 USA
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * SECTION:eek-element
 | 
			
		||||
 * @short_description: Base class of a keyboard element
 | 
			
		||||
 *
 | 
			
		||||
 * The #EekElementClass class represents a keyboard element, which
 | 
			
		||||
 * shall be used to implement #EekKeyboard, #EekSection, or #EekKey.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "config.h"
 | 
			
		||||
 | 
			
		||||
#include <string.h>
 | 
			
		||||
 | 
			
		||||
#include "eek-element.h"
 | 
			
		||||
 | 
			
		||||
enum {
 | 
			
		||||
    PROP_0,
 | 
			
		||||
    PROP_BOUNDS,
 | 
			
		||||
    PROP_LAST
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
typedef struct _EekElementPrivate
 | 
			
		||||
{
 | 
			
		||||
    EekBounds bounds;
 | 
			
		||||
} EekElementPrivate;
 | 
			
		||||
 | 
			
		||||
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (EekElement, eek_element, G_TYPE_OBJECT)
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_element_finalize (GObject *object)
 | 
			
		||||
{
 | 
			
		||||
    G_OBJECT_CLASS (eek_element_parent_class)->finalize (object);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_element_set_property (GObject      *object,
 | 
			
		||||
                          guint         prop_id,
 | 
			
		||||
                          const GValue *value,
 | 
			
		||||
                          GParamSpec   *pspec)
 | 
			
		||||
{
 | 
			
		||||
    EekElement *element = EEK_ELEMENT(object);
 | 
			
		||||
 | 
			
		||||
    switch (prop_id) {
 | 
			
		||||
    case PROP_BOUNDS:
 | 
			
		||||
        eek_element_set_bounds (element, g_value_get_boxed (value));
 | 
			
		||||
        break;
 | 
			
		||||
    default:
 | 
			
		||||
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_element_get_property (GObject    *object,
 | 
			
		||||
                          guint       prop_id,
 | 
			
		||||
                          GValue     *value,
 | 
			
		||||
                          GParamSpec *pspec)
 | 
			
		||||
{
 | 
			
		||||
    EekElement *element = EEK_ELEMENT(object);
 | 
			
		||||
    EekBounds bounds;
 | 
			
		||||
 | 
			
		||||
    switch (prop_id) {
 | 
			
		||||
    case PROP_BOUNDS:
 | 
			
		||||
        eek_element_get_bounds (element, &bounds);
 | 
			
		||||
        g_value_set_boxed (value, &bounds);
 | 
			
		||||
        break;
 | 
			
		||||
    default:
 | 
			
		||||
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_element_class_init (EekElementClass *klass)
 | 
			
		||||
{
 | 
			
		||||
    GObjectClass      *gobject_class = G_OBJECT_CLASS (klass);
 | 
			
		||||
    GParamSpec        *pspec;
 | 
			
		||||
 | 
			
		||||
    /* signals */
 | 
			
		||||
    gobject_class->set_property = eek_element_set_property;
 | 
			
		||||
    gobject_class->get_property = eek_element_get_property;
 | 
			
		||||
    gobject_class->finalize     = eek_element_finalize;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * EekElement:bounds:
 | 
			
		||||
     *
 | 
			
		||||
     * The bounding box of #EekElement.
 | 
			
		||||
     */
 | 
			
		||||
    pspec = g_param_spec_boxed ("bounds",
 | 
			
		||||
                                "Bounds",
 | 
			
		||||
                                "Bounding box of the element",
 | 
			
		||||
                                EEK_TYPE_BOUNDS,
 | 
			
		||||
                                G_PARAM_READWRITE);
 | 
			
		||||
    g_object_class_install_property (gobject_class,
 | 
			
		||||
                                     PROP_BOUNDS,
 | 
			
		||||
                                     pspec);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_element_init (EekElement *self)
 | 
			
		||||
{
 | 
			
		||||
    (void)self;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * eek_element_set_bounds:
 | 
			
		||||
 * @element: an #EekElement
 | 
			
		||||
 * @bounds: bounding box of @element
 | 
			
		||||
 *
 | 
			
		||||
 * Set the bounding box of @element to @bounds.  Note that if @element
 | 
			
		||||
 * has parent, X and Y positions of @bounds are relative to the parent
 | 
			
		||||
 * position.
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
eek_element_set_bounds (EekElement  *element,
 | 
			
		||||
                        EekBounds   *bounds)
 | 
			
		||||
{
 | 
			
		||||
    g_return_if_fail (EEK_IS_ELEMENT(element));
 | 
			
		||||
 | 
			
		||||
    EekElementPrivate *priv = eek_element_get_instance_private (element);
 | 
			
		||||
 | 
			
		||||
    memcpy (&priv->bounds, bounds, sizeof(EekBounds));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * eek_element_get_bounds:
 | 
			
		||||
 * @element: an #EekElement
 | 
			
		||||
 * @bounds: (out): pointer where bounding box of @element will be stored
 | 
			
		||||
 *
 | 
			
		||||
 * Get the bounding box of @element.  Note that if @element has
 | 
			
		||||
 * parent, position of @bounds are relative to the parent.  To obtain
 | 
			
		||||
 * the absolute position, use eek_element_get_absolute_position().
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
eek_element_get_bounds (EekElement  *element,
 | 
			
		||||
                        EekBounds   *bounds)
 | 
			
		||||
{
 | 
			
		||||
    g_return_if_fail (EEK_IS_ELEMENT(element));
 | 
			
		||||
    g_return_if_fail (bounds != NULL);
 | 
			
		||||
 | 
			
		||||
    EekElementPrivate *priv = eek_element_get_instance_private (element);
 | 
			
		||||
 | 
			
		||||
    memcpy (bounds, &priv->bounds, sizeof(EekBounds));
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										53
									
								
								eek/eek-element.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								eek/eek-element.h
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,53 @@
 | 
			
		||||
/* 
 | 
			
		||||
 * Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
 | 
			
		||||
 * Copyright (C) 2010-2011 Red Hat, Inc.
 | 
			
		||||
 * 
 | 
			
		||||
 * This library is free software; you can redistribute it and/or
 | 
			
		||||
 * modify it under the terms of the GNU Lesser General Public License
 | 
			
		||||
 * as published by the Free Software Foundation; either version 2 of
 | 
			
		||||
 * the License, or (at your option) any later version.
 | 
			
		||||
 * 
 | 
			
		||||
 * This library is distributed in the hope that it will be useful, but
 | 
			
		||||
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
			
		||||
 * Lesser General Public License for more details.
 | 
			
		||||
 * 
 | 
			
		||||
 * You should have received a copy of the GNU Lesser General Public
 | 
			
		||||
 * License along with this library; if not, write to the Free Software
 | 
			
		||||
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 | 
			
		||||
 * 02110-1301 USA
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
 | 
			
		||||
#error "Only <eek/eek.h> can be included directly."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef EEK_ELEMENT_H
 | 
			
		||||
#define EEK_ELEMENT_H 1
 | 
			
		||||
 | 
			
		||||
#include <glib-object.h>
 | 
			
		||||
#include "eek-types.h"
 | 
			
		||||
 | 
			
		||||
G_BEGIN_DECLS
 | 
			
		||||
#define EEK_TYPE_ELEMENT (eek_element_get_type())
 | 
			
		||||
G_DECLARE_DERIVABLE_TYPE (EekElement, eek_element, EEK, ELEMENT, GObject)
 | 
			
		||||
 | 
			
		||||
struct _EekElementClass
 | 
			
		||||
{
 | 
			
		||||
    /*< private >*/
 | 
			
		||||
    GObjectClass parent_class;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void         eek_element_set_name              (EekElement  *element,
 | 
			
		||||
                                                const gchar *name);
 | 
			
		||||
 | 
			
		||||
const gchar *eek_element_get_name              (EekElement  *element);
 | 
			
		||||
 | 
			
		||||
void         eek_element_set_bounds            (EekElement  *element,
 | 
			
		||||
                                                EekBounds   *bounds);
 | 
			
		||||
 | 
			
		||||
void         eek_element_get_bounds            (EekElement  *element,
 | 
			
		||||
                                                EekBounds   *bounds);
 | 
			
		||||
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
#endif  /* EEK_ELEMENT_H */
 | 
			
		||||
@ -35,7 +35,6 @@
 | 
			
		||||
 | 
			
		||||
#include "eekboard/eekboard-context-service.h"
 | 
			
		||||
#include "src/layout.h"
 | 
			
		||||
#include "src/popover.h"
 | 
			
		||||
#include "src/submission.h"
 | 
			
		||||
 | 
			
		||||
#define LIBFEEDBACK_USE_UNSTABLE_API
 | 
			
		||||
@ -49,16 +48,13 @@ typedef struct _EekGtkKeyboardPrivate
 | 
			
		||||
    struct render_geometry render_geometry; // mutable
 | 
			
		||||
 | 
			
		||||
    EekboardContextService *eekboard_context; // unowned reference
 | 
			
		||||
    struct squeek_popover *popover; // shared reference
 | 
			
		||||
    struct squeek_state_manager *state_manager; // shared reference
 | 
			
		||||
    struct submission *submission; // unowned reference
 | 
			
		||||
 | 
			
		||||
    Layout *keyboard; // unowned reference; it's kept in server-context
 | 
			
		||||
    struct squeek_layout_state *layout; // unowned
 | 
			
		||||
    LevelKeyboard *keyboard; // unowned reference; it's kept in server-context
 | 
			
		||||
 | 
			
		||||
    GdkEventSequence *sequence; // unowned reference
 | 
			
		||||
    LfbEvent *event;
 | 
			
		||||
 | 
			
		||||
    gulong kb_signal;
 | 
			
		||||
} EekGtkKeyboardPrivate;
 | 
			
		||||
 | 
			
		||||
G_DEFINE_TYPE_WITH_PRIVATE (EekGtkKeyboard, eek_gtk_keyboard, GTK_TYPE_DRAWING_AREA)
 | 
			
		||||
@ -120,6 +116,15 @@ eek_gtk_keyboard_real_draw (GtkWidget *self,
 | 
			
		||||
    return FALSE;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Units of virtual pixels size
 | 
			
		||||
static enum squeek_arrangement_kind get_type(uint32_t width, uint32_t height) {
 | 
			
		||||
    (void)height;
 | 
			
		||||
    if (width < 540) {
 | 
			
		||||
        return ARRANGEMENT_KIND_BASE;
 | 
			
		||||
    }
 | 
			
		||||
    return ARRANGEMENT_KIND_WIDE;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
eek_gtk_keyboard_real_size_allocate (GtkWidget     *self,
 | 
			
		||||
                                     GtkAllocation *allocation)
 | 
			
		||||
@ -127,6 +132,15 @@ eek_gtk_keyboard_real_size_allocate (GtkWidget     *self,
 | 
			
		||||
    EekGtkKeyboard *keyboard = EEK_GTK_KEYBOARD (self);
 | 
			
		||||
    EekGtkKeyboardPrivate *priv =
 | 
			
		||||
        eek_gtk_keyboard_get_instance_private (keyboard);
 | 
			
		||||
    // check if the change would switch types
 | 
			
		||||
    enum squeek_arrangement_kind new_type = get_type(
 | 
			
		||||
                (uint32_t)(allocation->width - allocation->x),
 | 
			
		||||
                (uint32_t)(allocation->height - allocation->y));
 | 
			
		||||
    if (priv->layout->arrangement != new_type) {
 | 
			
		||||
        priv->layout->arrangement = new_type;
 | 
			
		||||
        uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
        eekboard_context_service_use_layout(priv->eekboard_context, priv->layout, time);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (priv->renderer) {
 | 
			
		||||
        set_allocation_size (keyboard, priv->keyboard->layout,
 | 
			
		||||
@ -142,7 +156,6 @@ on_event_triggered (LfbEvent      *event,
 | 
			
		||||
                    GAsyncResult  *res,
 | 
			
		||||
                    gpointer      unused)
 | 
			
		||||
{
 | 
			
		||||
    (void)unused;
 | 
			
		||||
    g_autoptr (GError) err = NULL;
 | 
			
		||||
 | 
			
		||||
    if (!lfb_event_trigger_feedback_finish (event, res, &err)) {
 | 
			
		||||
@ -173,7 +186,7 @@ static void drag(EekGtkKeyboard *self,
 | 
			
		||||
    squeek_layout_drag(eekboard_context_service_get_keyboard(priv->eekboard_context)->layout,
 | 
			
		||||
                       priv->submission,
 | 
			
		||||
                       x, y, priv->render_geometry.widget_to_layout, time,
 | 
			
		||||
                       priv->popover, priv->state_manager, self);
 | 
			
		||||
                       priv->eekboard_context, self);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void release(EekGtkKeyboard *self, guint32 time)
 | 
			
		||||
@ -184,7 +197,7 @@ static void release(EekGtkKeyboard *self, guint32 time)
 | 
			
		||||
    }
 | 
			
		||||
    squeek_layout_release(eekboard_context_service_get_keyboard(priv->eekboard_context)->layout,
 | 
			
		||||
                          priv->submission, priv->render_geometry.widget_to_layout, time,
 | 
			
		||||
                          priv->popover, priv->state_manager, self);
 | 
			
		||||
                          priv->eekboard_context, self);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static gboolean
 | 
			
		||||
@ -294,19 +307,12 @@ eek_gtk_keyboard_set_property (GObject      *object,
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// This may actually get called multiple times in a row
 | 
			
		||||
// if both a parent object and its parent get destroyed
 | 
			
		||||
static void
 | 
			
		||||
eek_gtk_keyboard_dispose (GObject *object)
 | 
			
		||||
{
 | 
			
		||||
    EekGtkKeyboard        *self = EEK_GTK_KEYBOARD (object);
 | 
			
		||||
    EekGtkKeyboardPrivate *priv = eek_gtk_keyboard_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
    if (priv->kb_signal != 0) {
 | 
			
		||||
        g_signal_handler_disconnect(priv->eekboard_context, priv->kb_signal);
 | 
			
		||||
        priv->kb_signal = 0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (priv->renderer) {
 | 
			
		||||
        eek_renderer_free(priv->renderer);
 | 
			
		||||
        priv->renderer = NULL;
 | 
			
		||||
@ -391,15 +397,13 @@ on_notify_keyboard (GObject              *object,
 | 
			
		||||
GtkWidget *
 | 
			
		||||
eek_gtk_keyboard_new (EekboardContextService *eekservice,
 | 
			
		||||
                      struct submission *submission,
 | 
			
		||||
                      struct squeek_state_manager *state_manager,
 | 
			
		||||
                      struct squeek_popover *popover)
 | 
			
		||||
                      struct squeek_layout_state *layout)
 | 
			
		||||
{
 | 
			
		||||
    EekGtkKeyboard *ret = EEK_GTK_KEYBOARD(g_object_new (EEK_TYPE_GTK_KEYBOARD, NULL));
 | 
			
		||||
    EekGtkKeyboardPrivate *priv = (EekGtkKeyboardPrivate*)eek_gtk_keyboard_get_instance_private (ret);
 | 
			
		||||
    priv->popover = popover;
 | 
			
		||||
    priv->eekboard_context = eekservice;
 | 
			
		||||
    priv->submission = submission;
 | 
			
		||||
    priv->state_manager = state_manager;
 | 
			
		||||
    priv->layout = layout;
 | 
			
		||||
    priv->renderer = NULL;
 | 
			
		||||
    // This should really be done on initialization.
 | 
			
		||||
    // Before the widget is allocated,
 | 
			
		||||
@ -414,13 +418,12 @@ eek_gtk_keyboard_new (EekboardContextService *eekservice,
 | 
			
		||||
        .widget_to_layout = {
 | 
			
		||||
            .origin_x = 0,
 | 
			
		||||
            .origin_y = 0,
 | 
			
		||||
            .scale_x = 1,
 | 
			
		||||
            .scale_y = 1,
 | 
			
		||||
            .scale = 1,
 | 
			
		||||
        },
 | 
			
		||||
    };
 | 
			
		||||
    priv->render_geometry = initial_geometry;
 | 
			
		||||
 | 
			
		||||
    priv->kb_signal = g_signal_connect (eekservice,
 | 
			
		||||
    g_signal_connect (eekservice,
 | 
			
		||||
                      "notify::keyboard",
 | 
			
		||||
                      G_CALLBACK(on_notify_keyboard),
 | 
			
		||||
                      ret);
 | 
			
		||||
 | 
			
		||||
@ -30,8 +30,6 @@
 | 
			
		||||
 | 
			
		||||
#include "eek/eek-renderer.h"
 | 
			
		||||
#include "eek/eek-types.h"
 | 
			
		||||
#include "src/main.h"
 | 
			
		||||
#include "src/popover.h"
 | 
			
		||||
 | 
			
		||||
struct submission;
 | 
			
		||||
struct squeek_layout_state;
 | 
			
		||||
@ -50,7 +48,7 @@ struct _EekGtkKeyboardClass
 | 
			
		||||
    gpointer pdummy[24];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
GtkWidget *eek_gtk_keyboard_new       (EekboardContextService *eekservice, struct submission *submission, struct squeek_state_manager *state_manager, struct squeek_popover *popover);
 | 
			
		||||
GtkWidget *eek_gtk_keyboard_new       (EekboardContextService *eekservice, struct submission *submission, struct squeek_layout_state *layout);
 | 
			
		||||
void       eek_gtk_keyboard_emit_feedback (EekGtkKeyboard *self);
 | 
			
		||||
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
 | 
			
		||||
@ -21,7 +21,6 @@
 | 
			
		||||
#include "config.h"
 | 
			
		||||
 | 
			
		||||
#define _XOPEN_SOURCE 500
 | 
			
		||||
#include <bsd/string.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
@ -75,7 +74,7 @@ struct keymap squeek_key_map_from_str(const char *keymap_str) {
 | 
			
		||||
    if ((void*)ptr == (void*)-1) {
 | 
			
		||||
        g_error("Failed to set up mmap");
 | 
			
		||||
    }
 | 
			
		||||
    strlcpy(ptr, xkb_keymap_str, keymap_len);
 | 
			
		||||
    strncpy(ptr, xkb_keymap_str, keymap_len);
 | 
			
		||||
    munmap(ptr, keymap_len);
 | 
			
		||||
    free(xkb_keymap_str);
 | 
			
		||||
    xkb_keymap_unref(keymap);
 | 
			
		||||
@ -86,19 +85,18 @@ struct keymap squeek_key_map_from_str(const char *keymap_str) {
 | 
			
		||||
    return km;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void layout_free(Layout *self) {
 | 
			
		||||
void level_keyboard_free(LevelKeyboard *self) {
 | 
			
		||||
    squeek_layout_free(self->layout);
 | 
			
		||||
    g_free(self);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Layout*
 | 
			
		||||
layout_new (char *style_name, struct squeek_layout *layout)
 | 
			
		||||
LevelKeyboard*
 | 
			
		||||
level_keyboard_new (struct squeek_layout *layout)
 | 
			
		||||
{
 | 
			
		||||
    Layout *keyboard = g_new0(Layout, 1);
 | 
			
		||||
    LevelKeyboard *keyboard = g_new0(LevelKeyboard, 1);
 | 
			
		||||
    if (!keyboard) {
 | 
			
		||||
        g_error("Failed to create a keyboard");
 | 
			
		||||
    }
 | 
			
		||||
    keyboard->layout = layout;
 | 
			
		||||
    strlcpy(keyboard->style_name, style_name, 19);
 | 
			
		||||
    return keyboard;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -38,15 +38,18 @@ struct keymap {
 | 
			
		||||
    size_t fd_len; // length of the data inside keymap_fd
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/// Keyboard info holder
 | 
			
		||||
struct _Layout {
 | 
			
		||||
    char style_name[20]; // The name of the css class on layout
 | 
			
		||||
/// Keyboard state holder
 | 
			
		||||
struct _LevelKeyboard {
 | 
			
		||||
    struct squeek_layout *layout; // owned
 | 
			
		||||
// FIXME: This no longer needs to exist, keymap was folded into layout.
 | 
			
		||||
};
 | 
			
		||||
typedef struct _LevelKeyboard LevelKeyboard;
 | 
			
		||||
 | 
			
		||||
Layout*
 | 
			
		||||
layout_new (char *style_name, struct squeek_layout *layout);
 | 
			
		||||
void layout_free(Layout *self);
 | 
			
		||||
gchar *eek_keyboard_get_keymap(LevelKeyboard *keyboard);
 | 
			
		||||
 | 
			
		||||
LevelKeyboard*
 | 
			
		||||
level_keyboard_new (struct squeek_layout *layout);
 | 
			
		||||
void level_keyboard_free(LevelKeyboard *self);
 | 
			
		||||
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
#endif  /* EEK_KEYBOARD_H */
 | 
			
		||||
 | 
			
		||||
@ -206,7 +206,7 @@ eek_renderer_render_keyboard (EekRenderer *self,
 | 
			
		||||
                              struct render_geometry geometry,
 | 
			
		||||
                              struct submission *submission,
 | 
			
		||||
                                   cairo_t     *cr,
 | 
			
		||||
                              Layout *keyboard)
 | 
			
		||||
                              LevelKeyboard *keyboard)
 | 
			
		||||
{
 | 
			
		||||
    g_return_if_fail (geometry.allocation_width > 0.0);
 | 
			
		||||
    g_return_if_fail (geometry.allocation_height > 0.0);
 | 
			
		||||
@ -219,7 +219,7 @@ eek_renderer_render_keyboard (EekRenderer *self,
 | 
			
		||||
 | 
			
		||||
    cairo_save(cr);
 | 
			
		||||
    cairo_translate (cr, geometry.widget_to_layout.origin_x, geometry.widget_to_layout.origin_y);
 | 
			
		||||
    cairo_scale (cr, geometry.widget_to_layout.scale_x, geometry.widget_to_layout.scale_y);
 | 
			
		||||
    cairo_scale (cr, geometry.widget_to_layout.scale, geometry.widget_to_layout.scale);
 | 
			
		||||
 | 
			
		||||
    squeek_draw_layout_base_view(keyboard->layout, self, cr);
 | 
			
		||||
    squeek_layout_draw_all_changed(keyboard->layout, self, cr, submission);
 | 
			
		||||
@ -316,7 +316,7 @@ renderer_init (EekRenderer *self)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
EekRenderer *
 | 
			
		||||
eek_renderer_new (Layout  *keyboard,
 | 
			
		||||
eek_renderer_new (LevelKeyboard  *keyboard,
 | 
			
		||||
                  PangoContext *pcontext)
 | 
			
		||||
{
 | 
			
		||||
    EekRenderer *renderer = calloc(1, sizeof(EekRenderer));
 | 
			
		||||
@ -335,7 +335,6 @@ eek_renderer_new (Layout  *keyboard,
 | 
			
		||||
    if (squeek_layout_get_kind(keyboard->layout) == ARRANGEMENT_KIND_WIDE) {
 | 
			
		||||
        gtk_style_context_add_class(renderer->view_context, "wide");
 | 
			
		||||
    }
 | 
			
		||||
    gtk_style_context_add_class(renderer->view_context, (char*)&keyboard->style_name);
 | 
			
		||||
    gtk_style_context_add_provider (renderer->view_context,
 | 
			
		||||
        GTK_STYLE_PROVIDER(renderer->css_provider),
 | 
			
		||||
        GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
 | 
			
		||||
 | 
			
		||||
@ -58,7 +58,7 @@ struct render_geometry {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
GType            eek_renderer_get_type         (void) G_GNUC_CONST;
 | 
			
		||||
EekRenderer     *eek_renderer_new              (Layout     *keyboard,
 | 
			
		||||
EekRenderer     *eek_renderer_new              (LevelKeyboard     *keyboard,
 | 
			
		||||
                                                PangoContext    *pcontext);
 | 
			
		||||
void             eek_renderer_set_scale_factor (EekRenderer     *renderer,
 | 
			
		||||
                                                gint             scale);
 | 
			
		||||
@ -68,7 +68,7 @@ cairo_surface_t *eek_renderer_get_icon_surface(const gchar     *icon_name,
 | 
			
		||||
                                                gint             scale);
 | 
			
		||||
 | 
			
		||||
void             eek_renderer_render_keyboard  (EekRenderer     *renderer, struct render_geometry geometry, struct submission *submission,
 | 
			
		||||
                                                cairo_t         *cr, Layout *keyboard);
 | 
			
		||||
                                                cairo_t         *cr, LevelKeyboard *keyboard);
 | 
			
		||||
void
 | 
			
		||||
eek_renderer_free (EekRenderer        *self);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -39,7 +39,7 @@ typedef struct _EekBounds EekBounds;
 | 
			
		||||
 | 
			
		||||
typedef struct _EekboardContextService EekboardContextService;
 | 
			
		||||
typedef struct _ServerContextService ServerContextService;
 | 
			
		||||
typedef struct _Layout Layout;
 | 
			
		||||
typedef struct _LevelKeyboard LevelKeyboard;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * EekPoint:
 | 
			
		||||
@ -87,8 +87,7 @@ void       eek_bounds_free     (EekBounds       *bounds);
 | 
			
		||||
struct transformation {
 | 
			
		||||
    gdouble origin_x;
 | 
			
		||||
    gdouble origin_y;
 | 
			
		||||
    gdouble scale_x;
 | 
			
		||||
    gdouble scale_y;
 | 
			
		||||
    gdouble scale;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
 | 
			
		||||
@ -1,17 +1,11 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2018-2023 Purism SPC
 | 
			
		||||
 *
 | 
			
		||||
 * SPDX-License-Identifier: GPL-3.0-or-later
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (C) 2018 Purism SPC
 | 
			
		||||
 * SPDX-License-Identifier: GPL-3.0+
 | 
			
		||||
 * Author: Guido Günther <agx@sigxcpu.org>
 | 
			
		||||
 */
 | 
			
		||||
/*
 | 
			
		||||
 | 
			
		||||
WARNING: this file is taken directly from phosh, with no modificaions apart 
 | 
			
		||||
from this message. Please update phosh instead of changing this file. Please 
 | 
			
		||||
copy the file back here afterwards, with an updated version of this notice.
 | 
			
		||||
 | 
			
		||||
Up-to-date with Phosh revision 953894a2.
 | 
			
		||||
WARNING: this file is taken directly from phosh, with no modificaions apart from this message. Please update phosh instead of changing this file. Please copy the file back here afterwards, with the same notice.
 | 
			
		||||
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
@ -22,16 +16,6 @@ Up-to-date with Phosh revision 953894a2.
 | 
			
		||||
 | 
			
		||||
#include <gdk/gdkwayland.h>
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * PhoshLayerSurface:
 | 
			
		||||
 *
 | 
			
		||||
 * A #GtkWindow rendered as a LayerSurface by the compositor
 | 
			
		||||
 *
 | 
			
		||||
 * #PhoshLayerSurface allows to use a Wayland surface backed by the
 | 
			
		||||
 * layer-shell protocol as #GtkWindow. This allows to render e.g. panels and
 | 
			
		||||
 * backgrounds using GTK.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
enum {
 | 
			
		||||
  PHOSH_LAYER_SURFACE_PROP_0,
 | 
			
		||||
  PHOSH_LAYER_SURFACE_PROP_LAYER_SHELL,
 | 
			
		||||
@ -59,6 +43,7 @@ enum {
 | 
			
		||||
};
 | 
			
		||||
static guint signals [N_SIGNALS];
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
typedef struct {
 | 
			
		||||
  struct wl_surface *wl_surface;
 | 
			
		||||
  struct zwlr_layer_surface_v1 *layer_surface;
 | 
			
		||||
@ -67,21 +52,19 @@ typedef struct {
 | 
			
		||||
  guint anchor;
 | 
			
		||||
  guint layer;
 | 
			
		||||
  gboolean kbd_interactivity;
 | 
			
		||||
  int                           exclusive_zone;
 | 
			
		||||
  int                           margin_top, margin_bottom;
 | 
			
		||||
  int                           margin_left, margin_right;
 | 
			
		||||
  int                           width, height;
 | 
			
		||||
  int                           configured_width, configured_height;
 | 
			
		||||
  char                         *namespace;
 | 
			
		||||
  gint exclusive_zone;
 | 
			
		||||
  gint margin_top, margin_bottom;
 | 
			
		||||
  gint margin_left, margin_right;
 | 
			
		||||
  gint width, height;
 | 
			
		||||
  gint configured_width, configured_height;
 | 
			
		||||
  gchar *namespace;
 | 
			
		||||
  struct zwlr_layer_shell_v1 *layer_shell;
 | 
			
		||||
  struct wl_output *wl_output;
 | 
			
		||||
} PhoshLayerSurfacePrivate;
 | 
			
		||||
 | 
			
		||||
G_DEFINE_TYPE_WITH_PRIVATE (PhoshLayerSurface, phosh_layer_surface, GTK_TYPE_WINDOW)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
layer_surface_configure (void                         *data,
 | 
			
		||||
static void layer_surface_configure(void                         *data,
 | 
			
		||||
                                    struct zwlr_layer_surface_v1 *surface,
 | 
			
		||||
                                    uint32_t                      serial,
 | 
			
		||||
                                    uint32_t                      width,
 | 
			
		||||
@ -89,53 +72,44 @@ layer_surface_configure (void                         *data,
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = data;
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  gboolean changed = FALSE;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
  gtk_window_resize (GTK_WINDOW (self), width, height);
 | 
			
		||||
  zwlr_layer_surface_v1_ack_configure (surface, serial);
 | 
			
		||||
  zwlr_layer_surface_v1_ack_configure(surface, serial);
 | 
			
		||||
 | 
			
		||||
  if (priv->configured_height != height) {
 | 
			
		||||
    priv->configured_height = height;
 | 
			
		||||
    changed = TRUE;
 | 
			
		||||
    g_object_notify_by_pspec (G_OBJECT (self), props[PHOSH_LAYER_SURFACE_PROP_CONFIGURED_HEIGHT]);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (priv->configured_width != width) {
 | 
			
		||||
    priv->configured_width = width;
 | 
			
		||||
    changed = TRUE;
 | 
			
		||||
    g_object_notify_by_pspec (G_OBJECT (self), props[PHOSH_LAYER_SURFACE_PROP_CONFIGURED_WIDTH]);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  g_debug ("Configured %s (%p) (%dx%d)", priv->namespace, self, width, height);
 | 
			
		||||
  if (changed) {
 | 
			
		||||
  g_debug("Configured %p", self);
 | 
			
		||||
  g_signal_emit (self, signals[CONFIGURED], 0);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
layer_surface_closed (void                         *data,
 | 
			
		||||
static void layer_surface_closed (void                         *data,
 | 
			
		||||
                                  struct zwlr_layer_surface_v1 *surface)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = data;
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (priv->layer_surface == surface);
 | 
			
		||||
  g_debug ("Destroying layer surface '%s'", priv->namespace);
 | 
			
		||||
  zwlr_layer_surface_v1_destroy (priv->layer_surface);
 | 
			
		||||
  zwlr_layer_surface_v1_destroy(priv->layer_surface);
 | 
			
		||||
  priv->layer_surface = NULL;
 | 
			
		||||
  gtk_widget_destroy (GTK_WIDGET (self));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static struct zwlr_layer_surface_v1_listener layer_surface_listener = {
 | 
			
		||||
    .configure = layer_surface_configure,
 | 
			
		||||
    .closed = layer_surface_closed,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
phosh_layer_surface_set_property (GObject      *object,
 | 
			
		||||
                                  guint         property_id,
 | 
			
		||||
@ -144,7 +118,7 @@ phosh_layer_surface_set_property (GObject      *object,
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (object);
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
  int width, height;
 | 
			
		||||
  gint width, height;
 | 
			
		||||
 | 
			
		||||
  switch (property_id) {
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_LAYER_SHELL:
 | 
			
		||||
@ -157,7 +131,7 @@ phosh_layer_surface_set_property (GObject      *object,
 | 
			
		||||
    priv->anchor = g_value_get_uint (value);
 | 
			
		||||
    break;
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_LAYER:
 | 
			
		||||
    phosh_layer_surface_set_layer (self, g_value_get_uint (value));
 | 
			
		||||
    priv->layer = g_value_get_uint (value);
 | 
			
		||||
    break;
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_KBD_INTERACTIVITY:
 | 
			
		||||
    phosh_layer_surface_set_kbd_interactivity (self, g_value_get_boolean (value));
 | 
			
		||||
@ -195,11 +169,11 @@ phosh_layer_surface_set_property (GObject      *object,
 | 
			
		||||
    break;
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_LAYER_WIDTH:
 | 
			
		||||
    width = g_value_get_uint (value);
 | 
			
		||||
    phosh_layer_surface_set_size (self, width, priv->height);
 | 
			
		||||
    phosh_layer_surface_set_size(self, width, priv->height);
 | 
			
		||||
    break;
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_LAYER_HEIGHT:
 | 
			
		||||
    height = g_value_get_uint (value);
 | 
			
		||||
    phosh_layer_surface_set_size (self, priv->width, height);
 | 
			
		||||
    phosh_layer_surface_set_size(self, priv->width, height);
 | 
			
		||||
    break;
 | 
			
		||||
  case PHOSH_LAYER_SURFACE_PROP_NAMESPACE:
 | 
			
		||||
    g_free (priv->namespace);
 | 
			
		||||
@ -275,16 +249,14 @@ phosh_layer_surface_get_property (GObject    *object,
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
phosh_layer_surface_realize (GtkWidget *widget)
 | 
			
		||||
on_phosh_layer_surface_realized (PhoshLayerSurface *self, gpointer unused)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (widget);
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  GdkWindow *gdk_window;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  GTK_WIDGET_CLASS (phosh_layer_surface_parent_class)->realize (widget);
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  gdk_window = gtk_widget_get_window (GTK_WIDGET (self));
 | 
			
		||||
  gdk_wayland_window_set_use_custom_surface (gdk_window);
 | 
			
		||||
@ -295,63 +267,76 @@ phosh_layer_surface_realize (GtkWidget *widget)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
phosh_layer_surface_map (GtkWidget *widget)
 | 
			
		||||
on_phosh_layer_surface_mapped (PhoshLayerSurface *self, gpointer unused)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (widget);
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  GdkWindow *gdk_window;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  GTK_WIDGET_CLASS (phosh_layer_surface_parent_class)->map (widget);
 | 
			
		||||
 | 
			
		||||
  if (!priv->wl_surface) {
 | 
			
		||||
    GdkWindow *gdk_window;
 | 
			
		||||
 | 
			
		||||
      gdk_window = gtk_widget_get_window (GTK_WIDGET (self));
 | 
			
		||||
      gdk_wayland_window_set_use_custom_surface (gdk_window);
 | 
			
		||||
      priv->wl_surface = gdk_wayland_window_get_wl_surface (gdk_window);
 | 
			
		||||
  }
 | 
			
		||||
  g_debug ("Mapped %p, namespace: %s", priv->wl_surface, priv->namespace);
 | 
			
		||||
  g_debug ("Mapped %p", priv->wl_surface);
 | 
			
		||||
 | 
			
		||||
  priv->layer_surface = zwlr_layer_shell_v1_get_layer_surface (priv->layer_shell,
 | 
			
		||||
  priv->layer_surface = zwlr_layer_shell_v1_get_layer_surface(priv->layer_shell,
 | 
			
		||||
                                                              priv->wl_surface,
 | 
			
		||||
                                                              priv->wl_output,
 | 
			
		||||
                                                              priv->layer,
 | 
			
		||||
                                                              priv->namespace);
 | 
			
		||||
  zwlr_layer_surface_v1_set_exclusive_zone (priv->layer_surface, priv->exclusive_zone);
 | 
			
		||||
  zwlr_layer_surface_v1_set_size (priv->layer_surface, priv->width, priv->height);
 | 
			
		||||
  zwlr_layer_surface_v1_set_anchor (priv->layer_surface, priv->anchor);
 | 
			
		||||
  zwlr_layer_surface_v1_set_margin (priv->layer_surface,
 | 
			
		||||
  zwlr_layer_surface_v1_set_exclusive_zone(priv->layer_surface, priv->exclusive_zone);
 | 
			
		||||
  zwlr_layer_surface_v1_set_size(priv->layer_surface, priv->width, priv->height);
 | 
			
		||||
  zwlr_layer_surface_v1_set_anchor(priv->layer_surface, priv->anchor);
 | 
			
		||||
  zwlr_layer_surface_v1_set_margin(priv->layer_surface,
 | 
			
		||||
                                   priv->margin_top,
 | 
			
		||||
                                   priv->margin_right,
 | 
			
		||||
                                   priv->margin_bottom,
 | 
			
		||||
                                   priv->margin_left);
 | 
			
		||||
  zwlr_layer_surface_v1_set_keyboard_interactivity (priv->layer_surface, priv->kbd_interactivity);
 | 
			
		||||
  zwlr_layer_surface_v1_add_listener (priv->layer_surface,
 | 
			
		||||
  zwlr_layer_surface_v1_set_keyboard_interactivity(priv->layer_surface, priv->kbd_interactivity);
 | 
			
		||||
  zwlr_layer_surface_v1_add_listener(priv->layer_surface,
 | 
			
		||||
                                     &layer_surface_listener,
 | 
			
		||||
                                     self);
 | 
			
		||||
  wl_surface_commit (priv->wl_surface);
 | 
			
		||||
  wl_surface_commit(priv->wl_surface);
 | 
			
		||||
 | 
			
		||||
  /* Process all pending events, otherwise we end up sending ack configure
 | 
			
		||||
   * to a not yet configured surface */
 | 
			
		||||
  wl_display_roundtrip (gdk_wayland_display_get_wl_display (gdk_display_get_default ()));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
phosh_layer_surface_unmap (GtkWidget *widget)
 | 
			
		||||
on_phosh_layer_surface_unmapped (PhoshLayerSurface *self, gpointer unused)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (widget);
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  g_clear_pointer (&priv->layer_surface, zwlr_layer_surface_v1_destroy);
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
    zwlr_layer_surface_v1_destroy(priv->layer_surface);
 | 
			
		||||
    priv->layer_surface = NULL;
 | 
			
		||||
  }
 | 
			
		||||
  priv->wl_surface = NULL;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
  GTK_WIDGET_CLASS (phosh_layer_surface_parent_class)->unmap (widget);
 | 
			
		||||
static void
 | 
			
		||||
phosh_layer_surface_constructed (GObject *object)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (object);
 | 
			
		||||
 | 
			
		||||
  g_signal_connect (self, "realize",
 | 
			
		||||
                    G_CALLBACK (on_phosh_layer_surface_realized),
 | 
			
		||||
                    NULL);
 | 
			
		||||
  g_signal_connect (self, "map",
 | 
			
		||||
                    G_CALLBACK (on_phosh_layer_surface_mapped),
 | 
			
		||||
                    NULL);
 | 
			
		||||
  g_signal_connect (self, "unmap",
 | 
			
		||||
                    G_CALLBACK (on_phosh_layer_surface_unmapped),
 | 
			
		||||
                    NULL);
 | 
			
		||||
 | 
			
		||||
  G_OBJECT_CLASS (phosh_layer_surface_parent_class)->constructed (object);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -361,7 +346,10 @@ phosh_layer_surface_dispose (GObject *object)
 | 
			
		||||
  PhoshLayerSurface *self = PHOSH_LAYER_SURFACE (object);
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  g_clear_pointer (&priv->layer_surface, zwlr_layer_surface_v1_destroy);
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
    zwlr_layer_surface_v1_destroy(priv->layer_surface);
 | 
			
		||||
    priv->layer_surface = NULL;
 | 
			
		||||
  }
 | 
			
		||||
  g_clear_pointer (&priv->namespace, g_free);
 | 
			
		||||
 | 
			
		||||
  G_OBJECT_CLASS (phosh_layer_surface_parent_class)->dispose (object);
 | 
			
		||||
@ -372,29 +360,26 @@ static void
 | 
			
		||||
phosh_layer_surface_class_init (PhoshLayerSurfaceClass *klass)
 | 
			
		||||
{
 | 
			
		||||
  GObjectClass *object_class = (GObjectClass *)klass;
 | 
			
		||||
  GtkWidgetClass *widget_class = (GtkWidgetClass *)klass;
 | 
			
		||||
 | 
			
		||||
  object_class->constructed = phosh_layer_surface_constructed;
 | 
			
		||||
  object_class->dispose = phosh_layer_surface_dispose;
 | 
			
		||||
 | 
			
		||||
  object_class->set_property = phosh_layer_surface_set_property;
 | 
			
		||||
  object_class->get_property = phosh_layer_surface_get_property;
 | 
			
		||||
 | 
			
		||||
  widget_class->realize = phosh_layer_surface_realize;
 | 
			
		||||
  widget_class->map = phosh_layer_surface_map;
 | 
			
		||||
  widget_class->unmap = phosh_layer_surface_unmap;
 | 
			
		||||
 | 
			
		||||
  props[PHOSH_LAYER_SURFACE_PROP_LAYER_SHELL] =
 | 
			
		||||
    g_param_spec_pointer (
 | 
			
		||||
      "layer-shell",
 | 
			
		||||
      "Wayland Layer Shell Global",
 | 
			
		||||
      "The layer shell wayland global",
 | 
			
		||||
      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
 | 
			
		||||
  props[PHOSH_LAYER_SURFACE_PROP_WL_OUTPUT] =
 | 
			
		||||
    g_param_spec_pointer (
 | 
			
		||||
      "wl-output",
 | 
			
		||||
      "Wayland Output",
 | 
			
		||||
      "The wl_output associated with this surface",
 | 
			
		||||
      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
 | 
			
		||||
  props[PHOSH_LAYER_SURFACE_PROP_ANCHOR] =
 | 
			
		||||
    g_param_spec_uint (
 | 
			
		||||
@ -404,7 +389,7 @@ phosh_layer_surface_class_init (PhoshLayerSurfaceClass *klass)
 | 
			
		||||
      0,
 | 
			
		||||
      G_MAXUINT,
 | 
			
		||||
      0,
 | 
			
		||||
      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
 | 
			
		||||
  props[PHOSH_LAYER_SURFACE_PROP_LAYER] =
 | 
			
		||||
    g_param_spec_uint (
 | 
			
		||||
@ -414,7 +399,7 @@ phosh_layer_surface_class_init (PhoshLayerSurfaceClass *klass)
 | 
			
		||||
      0,
 | 
			
		||||
      G_MAXUINT,
 | 
			
		||||
      0,
 | 
			
		||||
      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
 | 
			
		||||
      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
 | 
			
		||||
  props[PHOSH_LAYER_SURFACE_PROP_KBD_INTERACTIVITY] =
 | 
			
		||||
    g_param_spec_boolean (
 | 
			
		||||
@ -521,13 +506,13 @@ phosh_layer_surface_class_init (PhoshLayerSurfaceClass *klass)
 | 
			
		||||
      "Namespace",
 | 
			
		||||
      "Namespace of the layer surface",
 | 
			
		||||
      "",
 | 
			
		||||
      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 | 
			
		||||
 | 
			
		||||
  g_object_class_install_properties (object_class, PHOSH_LAYER_SURFACE_PROP_LAST_PROP, props);
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * PhoshLayerSurface::configured
 | 
			
		||||
   * @self: The #PhoshLayerSurface instance.
 | 
			
		||||
   * PhoshLayersurface::configured
 | 
			
		||||
   * @self: The #PhoshLayersurface instance.
 | 
			
		||||
   *
 | 
			
		||||
   * This signal is emitted once we received the configure event from the
 | 
			
		||||
   * compositor.
 | 
			
		||||
@ -554,20 +539,17 @@ phosh_layer_surface_new (gpointer layer_shell,
 | 
			
		||||
{
 | 
			
		||||
  return g_object_new (PHOSH_TYPE_LAYER_SURFACE,
 | 
			
		||||
                       "layer-shell", layer_shell,
 | 
			
		||||
                       "wl-output", wl_output,
 | 
			
		||||
                       NULL);
 | 
			
		||||
                       "wl-output", wl_output);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_get_surface:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 *
 | 
			
		||||
 * Get the layer layer surface or #NULL if the window
 | 
			
		||||
 * is not yet realized.
 | 
			
		||||
 */
 | 
			
		||||
struct zwlr_layer_surface_v1 *
 | 
			
		||||
phosh_layer_surface_get_layer_surface (PhoshLayerSurface *self)
 | 
			
		||||
phosh_layer_surface_get_layer_surface(PhoshLayerSurface *self)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
@ -579,13 +561,12 @@ phosh_layer_surface_get_layer_surface (PhoshLayerSurface *self)
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_get_wl_surface:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 *
 | 
			
		||||
 * Get the layer wayland surface or #NULL if the window
 | 
			
		||||
 * is not yet realized.
 | 
			
		||||
 */
 | 
			
		||||
struct wl_surface *
 | 
			
		||||
phosh_layer_surface_get_wl_surface (PhoshLayerSurface *self)
 | 
			
		||||
phosh_layer_surface_get_wl_surface(PhoshLayerSurface *self)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
@ -594,20 +575,16 @@ phosh_layer_surface_get_wl_surface (PhoshLayerSurface *self)
 | 
			
		||||
  return priv->wl_surface;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_set_size:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 * @width: the height in pixels
 | 
			
		||||
 * @height: the width in pixels
 | 
			
		||||
 *
 | 
			
		||||
 * Set the size of a layer surface. A value of '-1' indicates 'use old value'
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
phosh_layer_surface_set_size (PhoshLayerSurface *self, int width, int height)
 | 
			
		||||
phosh_layer_surface_set_size(PhoshLayerSurface *self, gint width, gint height)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  int old_width, old_height;
 | 
			
		||||
  gint old_width, old_height;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
@ -628,7 +605,7 @@ phosh_layer_surface_set_size (PhoshLayerSurface *self, int width, int height)
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (gtk_widget_get_mapped (GTK_WIDGET (self))) {
 | 
			
		||||
    zwlr_layer_surface_v1_set_size (priv->layer_surface, priv->width, priv->height);
 | 
			
		||||
    zwlr_layer_surface_v1_set_size(priv->layer_surface, priv->width, priv->height);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (priv->height != old_height) {
 | 
			
		||||
@ -640,22 +617,16 @@ phosh_layer_surface_set_size (PhoshLayerSurface *self, int width, int height)
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_set_margins:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 * @top: the top margin in pixels
 | 
			
		||||
 * @right: the right margin in pixels
 | 
			
		||||
 * @bottom: the bottom margin in pixels
 | 
			
		||||
 * @left: the left margin in pixels
 | 
			
		||||
 *
 | 
			
		||||
 * Set anchor margins of a layer surface.
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
phosh_layer_surface_set_margins (PhoshLayerSurface *self, int top, int right, int bottom, int left)
 | 
			
		||||
phosh_layer_surface_set_margins(PhoshLayerSurface *self, gint top, gint right, gint bottom, gint left)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  int old_top, old_bottom, old_left, old_right;
 | 
			
		||||
  gint old_top, old_bottom, old_left, old_right;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
@ -675,7 +646,7 @@ phosh_layer_surface_set_margins (PhoshLayerSurface *self, int top, int right, in
 | 
			
		||||
  priv->margin_bottom = bottom;
 | 
			
		||||
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
    zwlr_layer_surface_v1_set_margin (priv->layer_surface, top, right, bottom, left);
 | 
			
		||||
    zwlr_layer_surface_v1_set_margin(priv->layer_surface, top, right, bottom, left);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (old_top != top) {
 | 
			
		||||
@ -692,19 +663,16 @@ phosh_layer_surface_set_margins (PhoshLayerSurface *self, int top, int right, in
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_set_exclusive_zone:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 * @zone: Size of the exclusive zone.
 | 
			
		||||
 *
 | 
			
		||||
 * Set exclusive zone of a layer surface.
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
phosh_layer_surface_set_exclusive_zone (PhoshLayerSurface *self, int zone)
 | 
			
		||||
phosh_layer_surface_set_exclusive_zone(PhoshLayerSurface *self, gint zone)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
  int old_zone;
 | 
			
		||||
  gint old_zone;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
@ -718,17 +686,14 @@ phosh_layer_surface_set_exclusive_zone (PhoshLayerSurface *self, int zone)
 | 
			
		||||
  priv->exclusive_zone = zone;
 | 
			
		||||
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
    zwlr_layer_surface_v1_set_exclusive_zone (priv->layer_surface, zone);
 | 
			
		||||
    zwlr_layer_surface_v1_set_exclusive_zone(priv->layer_surface, zone);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  g_object_notify_by_pspec (G_OBJECT (self), props[PHOSH_LAYER_SURFACE_PROP_EXCLUSIVE_ZONE]);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_set_keyboard_interactivity:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 * @interactivity: %TRUE if the #PhoshLayerSurface should receive keyboard input.
 | 
			
		||||
 *
 | 
			
		||||
 * Set keyboard ineractivity a layer surface.
 | 
			
		||||
 */
 | 
			
		||||
@ -743,7 +708,6 @@ phosh_layer_surface_set_kbd_interactivity (PhoshLayerSurface *self, gboolean int
 | 
			
		||||
  if (priv->kbd_interactivity == interactivity) {
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  priv->kbd_interactivity = interactivity;
 | 
			
		||||
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
@ -753,39 +717,8 @@ phosh_layer_surface_set_kbd_interactivity (PhoshLayerSurface *self, gboolean int
 | 
			
		||||
  g_object_notify_by_pspec (G_OBJECT (self), props[PHOSH_LAYER_SURFACE_PROP_KBD_INTERACTIVITY]);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_set_layer:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 * @layer: The layer.
 | 
			
		||||
 *
 | 
			
		||||
 * Sets the layer a layer-surface belongs to `layer`.
 | 
			
		||||
 */
 | 
			
		||||
void
 | 
			
		||||
phosh_layer_surface_set_layer (PhoshLayerSurface *self, guint32 layer)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  if (priv->layer == layer) {
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  priv->layer = layer;
 | 
			
		||||
 | 
			
		||||
  if (priv->layer_surface) {
 | 
			
		||||
    zwlr_layer_surface_v1_set_layer (priv->layer_surface, layer);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  g_object_notify_by_pspec (G_OBJECT (self), props[PHOSH_LAYER_SURFACE_PROP_LAYER]);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * phosh_layer_surface_wl_surface_commit:
 | 
			
		||||
 * @self: The #PhoshLayerSurface
 | 
			
		||||
 *
 | 
			
		||||
 * Forces a commit of layer surface's state.
 | 
			
		||||
 */
 | 
			
		||||
@ -801,53 +734,3 @@ phosh_layer_surface_wl_surface_commit (PhoshLayerSurface *self)
 | 
			
		||||
    wl_surface_commit (priv->wl_surface);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
phosh_layer_surface_get_margins (PhoshLayerSurface *self, int *top, int *right, int *bottom, int *left)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
  g_return_if_fail (PHOSH_IS_LAYER_SURFACE (self));
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  if (top) {
 | 
			
		||||
    *top = priv->margin_top;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (right) {
 | 
			
		||||
    *right = priv->margin_right;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (bottom) {
 | 
			
		||||
    *bottom = priv->margin_bottom;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (left) {
 | 
			
		||||
    *left = priv->margin_left;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
phosh_layer_surface_get_configured_width (PhoshLayerSurface *self)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
  g_return_val_if_fail (PHOSH_IS_LAYER_SURFACE (self), 0);
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  return priv->configured_width;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
phosh_layer_surface_get_configured_height (PhoshLayerSurface *self)
 | 
			
		||||
{
 | 
			
		||||
  PhoshLayerSurfacePrivate *priv;
 | 
			
		||||
 | 
			
		||||
  g_return_val_if_fail (PHOSH_IS_LAYER_SURFACE (self), 0);
 | 
			
		||||
  priv = phosh_layer_surface_get_instance_private (self);
 | 
			
		||||
 | 
			
		||||
  return priv->configured_height;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,17 +1,22 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2018 Purism SPC
 | 
			
		||||
 *
 | 
			
		||||
 * SPDX-License-Identifier: GPL-3.0-or-later
 | 
			
		||||
 * SPDX-License-Identifier: GPL-3.0+
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 | 
			
		||||
WARNING: this file is taken directly from phosh, with no modificaions apart from this message. Please update phosh instead of changing this file. Please copy the file back here afterwards, with the same notice.
 | 
			
		||||
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include <gtk/gtk.h>
 | 
			
		||||
/* TODO: We use the enum constants from here, use glib-mkenums */
 | 
			
		||||
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
 | 
			
		||||
 | 
			
		||||
G_BEGIN_DECLS
 | 
			
		||||
 | 
			
		||||
#define PHOSH_TYPE_LAYER_SURFACE                 (phosh_layer_surface_get_type ())
 | 
			
		||||
 | 
			
		||||
G_DECLARE_DERIVABLE_TYPE (PhoshLayerSurface, phosh_layer_surface, PHOSH, LAYER_SURFACE, GtkWindow)
 | 
			
		||||
@ -19,7 +24,6 @@ G_DECLARE_DERIVABLE_TYPE (PhoshLayerSurface, phosh_layer_surface, PHOSH, LAYER_S
 | 
			
		||||
/**
 | 
			
		||||
 * PhoshLayerSurfaceClass
 | 
			
		||||
 * @parent_class: The parent class
 | 
			
		||||
 * @configured: invoked when layer surface is configured
 | 
			
		||||
 */
 | 
			
		||||
struct _PhoshLayerSurfaceClass
 | 
			
		||||
{
 | 
			
		||||
@ -35,26 +39,15 @@ GtkWidget *phosh_layer_surface_new (gpointer layer_shell,
 | 
			
		||||
struct     zwlr_layer_surface_v1 *phosh_layer_surface_get_layer_surface(PhoshLayerSurface *self);
 | 
			
		||||
struct     wl_surface            *phosh_layer_surface_get_wl_surface(PhoshLayerSurface *self);
 | 
			
		||||
void                              phosh_layer_surface_set_size(PhoshLayerSurface *self,
 | 
			
		||||
                                                               int width,
 | 
			
		||||
                                                               int height);
 | 
			
		||||
                                                               gint width,
 | 
			
		||||
                                                               gint height);
 | 
			
		||||
void                              phosh_layer_surface_set_margins(PhoshLayerSurface *self,
 | 
			
		||||
                                                                  int top,
 | 
			
		||||
                                                                  int right,
 | 
			
		||||
                                                                  int bottom,
 | 
			
		||||
                                                                  int left);
 | 
			
		||||
                                                                  gint top,
 | 
			
		||||
                                                                  gint right,
 | 
			
		||||
                                                                  gint bottom,
 | 
			
		||||
                                                                  gint left);
 | 
			
		||||
void                              phosh_layer_surface_set_exclusive_zone(PhoshLayerSurface *self,
 | 
			
		||||
                                                                         int zone);
 | 
			
		||||
                                                                         gint zone);
 | 
			
		||||
void                              phosh_layer_surface_set_kbd_interactivity(PhoshLayerSurface *self,
 | 
			
		||||
                                                                            gboolean interactivity);
 | 
			
		||||
void                              phosh_layer_surface_set_layer (PhoshLayerSurface *self,
 | 
			
		||||
                                                                 guint32            layer);
 | 
			
		||||
void                              phosh_layer_surface_wl_surface_commit (PhoshLayerSurface *self);
 | 
			
		||||
void                              phosh_layer_surface_get_margins       (PhoshLayerSurface *self,
 | 
			
		||||
                                                                         int               *top,
 | 
			
		||||
                                                                         int               *right,
 | 
			
		||||
                                                                         int               *bottom,
 | 
			
		||||
                                                                         int               *left);
 | 
			
		||||
int                               phosh_layer_surface_get_configured_width  (PhoshLayerSurface *self);
 | 
			
		||||
int                               phosh_layer_surface_get_configured_height (PhoshLayerSurface *self);
 | 
			
		||||
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
 | 
			
		||||
@ -55,15 +55,15 @@ static guint signals[LAST_SIGNAL] = { 0, };
 | 
			
		||||
 */
 | 
			
		||||
struct _EekboardContextService {
 | 
			
		||||
    GObject parent;
 | 
			
		||||
    struct squeek_state_manager *state_manager; // shared reference
 | 
			
		||||
    struct squeek_layout_state *layout; // Unowned
 | 
			
		||||
 | 
			
		||||
    Layout *keyboard; // currently used keyboard
 | 
			
		||||
    LevelKeyboard *keyboard; // currently used keyboard
 | 
			
		||||
    GSettings *settings; // Owned reference
 | 
			
		||||
 | 
			
		||||
    /// Needed for keymap changes after keyboard updates.
 | 
			
		||||
    // TODO: can the main loop access submission to change the key maps instead?
 | 
			
		||||
    // This should probably land together with passing buttons through state,
 | 
			
		||||
    // to avoid race conditions between setting buttons and key maps.
 | 
			
		||||
    // Maybe TODO: it's used only for fetching layout type.
 | 
			
		||||
    // Maybe let UI push the type to this structure?
 | 
			
		||||
    ServerContextService *ui; // unowned reference
 | 
			
		||||
    /// Needed for keymap changes after keyboard updates
 | 
			
		||||
    struct submission *submission; // unowned
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -126,10 +126,27 @@ settings_get_layout(GSettings *settings, char **type, char **layout)
 | 
			
		||||
    g_variant_unref(inputs);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void eekboard_context_service_set_layout(EekboardContextService *context, char *style_name, struct squeek_layout *layout, uint32_t timestamp) {
 | 
			
		||||
    Layout *keyboard = layout_new(style_name, layout);
 | 
			
		||||
void
 | 
			
		||||
eekboard_context_service_use_layout(EekboardContextService *context, struct squeek_layout_state *state, uint32_t timestamp) {
 | 
			
		||||
    gchar *layout_name = state->layout_name;
 | 
			
		||||
    gchar *overlay_name = state->overlay_name;
 | 
			
		||||
 | 
			
		||||
    // try to get the best keyboard layout
 | 
			
		||||
    if (layout_name == NULL) {
 | 
			
		||||
        layout_name = "us";
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // overlay is "Normal" for most layouts, we will only look for "terminal" in rust code.
 | 
			
		||||
    // for now just avoid passing a null pointer
 | 
			
		||||
    if (overlay_name == NULL) {
 | 
			
		||||
        overlay_name = "";    // fallback to Normal
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    // generic part follows
 | 
			
		||||
    struct squeek_layout *layout = squeek_load_layout(layout_name, state->arrangement, state->purpose, overlay_name);
 | 
			
		||||
    LevelKeyboard *keyboard = level_keyboard_new(layout);
 | 
			
		||||
    // set as current
 | 
			
		||||
    Layout *previous_keyboard = context->keyboard;
 | 
			
		||||
    LevelKeyboard *previous_keyboard = context->keyboard;
 | 
			
		||||
    context->keyboard = keyboard;
 | 
			
		||||
    // Update the keymap if necessary.
 | 
			
		||||
    // TODO: Update submission on change event
 | 
			
		||||
@ -142,7 +159,7 @@ void eekboard_context_service_set_layout(EekboardContextService *context, char *
 | 
			
		||||
 | 
			
		||||
    // replacing the keyboard above will cause the previous keyboard to get destroyed from the UI side (eek_gtk_keyboard_dispose)
 | 
			
		||||
    if (previous_keyboard) {
 | 
			
		||||
        layout_free(previous_keyboard);
 | 
			
		||||
        level_keyboard_free(previous_keyboard);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -152,7 +169,17 @@ static void eekboard_context_service_update_settings_layout(EekboardContextServi
 | 
			
		||||
    settings_get_layout(context->settings,
 | 
			
		||||
                        &keyboard_type, &keyboard_layout);
 | 
			
		||||
 | 
			
		||||
    squeek_state_send_layout_set(context->state_manager, keyboard_layout, keyboard_type, gdk_event_get_time(NULL));
 | 
			
		||||
    if (g_strcmp0(context->layout->layout_name, keyboard_layout) != 0 || context->layout->overlay_name) {
 | 
			
		||||
        g_free(context->layout->overlay_name);
 | 
			
		||||
        context->layout->overlay_name = NULL;
 | 
			
		||||
        if (keyboard_layout) {
 | 
			
		||||
            g_free(context->layout->layout_name);
 | 
			
		||||
            context->layout->layout_name = g_strdup(keyboard_layout);
 | 
			
		||||
        }
 | 
			
		||||
        // This must actually update the UI.
 | 
			
		||||
        uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
        eekboard_context_service_use_layout(context, context->layout, time);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static gboolean
 | 
			
		||||
@ -264,24 +291,56 @@ eekboard_context_service_destroy (EekboardContextService *context)
 | 
			
		||||
 * Get keyboard currently active in @context.
 | 
			
		||||
 * Returns: (transfer none): an #EekKeyboard
 | 
			
		||||
 */
 | 
			
		||||
Layout *
 | 
			
		||||
LevelKeyboard *
 | 
			
		||||
eekboard_context_service_get_keyboard (EekboardContextService *context)
 | 
			
		||||
{
 | 
			
		||||
    return context->keyboard;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
EekboardContextService *eekboard_context_service_new(struct squeek_state_manager *state_manager)
 | 
			
		||||
void eekboard_context_service_set_hint_purpose(EekboardContextService *context,
 | 
			
		||||
                                               uint32_t hint, uint32_t purpose)
 | 
			
		||||
{
 | 
			
		||||
    if (context->layout->hint != hint || context->layout->purpose != purpose) {
 | 
			
		||||
        context->layout->hint = hint;
 | 
			
		||||
        context->layout->purpose = purpose;
 | 
			
		||||
        uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
        eekboard_context_service_use_layout(context, context->layout, time);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
eekboard_context_service_set_overlay(EekboardContextService *context, const char* name) {
 | 
			
		||||
    if (g_strcmp0(context->layout->overlay_name, name)) {
 | 
			
		||||
        g_free(context->layout->overlay_name);
 | 
			
		||||
        context->layout->overlay_name = g_strdup(name);
 | 
			
		||||
        uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
        eekboard_context_service_use_layout(context, context->layout, time);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const char*
 | 
			
		||||
eekboard_context_service_get_overlay(EekboardContextService *context) {
 | 
			
		||||
    return context->layout->overlay_name;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
EekboardContextService *eekboard_context_service_new(struct squeek_layout_state *state)
 | 
			
		||||
{
 | 
			
		||||
    EekboardContextService *context = g_object_new (EEKBOARD_TYPE_CONTEXT_SERVICE, NULL);
 | 
			
		||||
    context->state_manager = state_manager;
 | 
			
		||||
    context->layout = state;
 | 
			
		||||
    eekboard_context_service_update_settings_layout(context);
 | 
			
		||||
    uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
    eekboard_context_service_use_layout(context, context->layout, time);
 | 
			
		||||
    return context;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void eekboard_context_service_set_submission(EekboardContextService *context, struct submission *submission) {
 | 
			
		||||
    context->submission = submission;
 | 
			
		||||
    if (context->submission && context->keyboard) {
 | 
			
		||||
    if (context->submission) {
 | 
			
		||||
        uint32_t time = gdk_event_get_time(NULL);
 | 
			
		||||
        submission_use_layout(context->submission, context->keyboard->layout, time);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void eekboard_context_service_set_ui(EekboardContextService *context, ServerContextService *ui) {
 | 
			
		||||
    context->ui = ui;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -24,7 +24,6 @@
 | 
			
		||||
 | 
			
		||||
#include "src/submission.h"
 | 
			
		||||
#include "src/layout.h"
 | 
			
		||||
#include "src/main.h"
 | 
			
		||||
 | 
			
		||||
#include "virtual-keyboard-unstable-v1-client-protocol.h"
 | 
			
		||||
#include "text-input-unstable-v3-client-protocol.h"
 | 
			
		||||
@ -38,13 +37,19 @@ G_BEGIN_DECLS
 | 
			
		||||
 | 
			
		||||
G_DECLARE_FINAL_TYPE(EekboardContextService, eekboard_context_service, EEKBOARD, CONTEXT_SERVICE, GObject)
 | 
			
		||||
 | 
			
		||||
EekboardContextService *eekboard_context_service_new(struct squeek_state_manager *state_manager);
 | 
			
		||||
EekboardContextService *eekboard_context_service_new(struct squeek_layout_state *state);
 | 
			
		||||
void eekboard_context_service_set_submission(EekboardContextService *context, struct submission *submission);
 | 
			
		||||
void eekboard_context_service_set_ui(EekboardContextService *context, ServerContextService *ui);
 | 
			
		||||
void          eekboard_context_service_destroy (EekboardContextService *context);
 | 
			
		||||
Layout *eekboard_context_service_get_keyboard(EekboardContextService *context);
 | 
			
		||||
LevelKeyboard *eekboard_context_service_get_keyboard(EekboardContextService *context);
 | 
			
		||||
 | 
			
		||||
void eekboard_context_service_set_keymap(EekboardContextService *context,
 | 
			
		||||
                                         const Layout *keyboard);
 | 
			
		||||
                                         const LevelKeyboard *keyboard);
 | 
			
		||||
 | 
			
		||||
void eekboard_context_service_set_hint_purpose(EekboardContextService *context,
 | 
			
		||||
                                               uint32_t hint,
 | 
			
		||||
                                               uint32_t purpose);
 | 
			
		||||
void
 | 
			
		||||
eekboard_context_service_use_layout(EekboardContextService *context, struct squeek_layout_state *layout, uint32_t timestamp);
 | 
			
		||||
G_END_DECLS
 | 
			
		||||
#endif  /* EEKBOARD_CONTEXT_SERVICE_H */
 | 
			
		||||
 | 
			
		||||
@ -1,53 +0,0 @@
 | 
			
		||||
/*! Tests if any layout files are not in use */
 | 
			
		||||
 | 
			
		||||
extern crate rs;
 | 
			
		||||
 | 
			
		||||
use rs::resources;
 | 
			
		||||
use std::env;
 | 
			
		||||
use std::error::Error;
 | 
			
		||||
use std::ffi::OsStr;
 | 
			
		||||
use std::fs;
 | 
			
		||||
use std::path::{Path, PathBuf};
 | 
			
		||||
 | 
			
		||||
enum Orphans {
 | 
			
		||||
    None,
 | 
			
		||||
    Present,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn check(base: &Path, dir: &Path) -> Result<Orphans, Box<dyn Error>> {
 | 
			
		||||
    let mut orphans = Orphans::None;
 | 
			
		||||
    for entry in fs::read_dir(dir)? {
 | 
			
		||||
        let entry = entry?;
 | 
			
		||||
        let path = entry.path();
 | 
			
		||||
 | 
			
		||||
        if entry.file_type()?.is_dir() {
 | 
			
		||||
            check(base, &path)?;
 | 
			
		||||
        } else {
 | 
			
		||||
            if Some(OsStr::new("yaml")) == path.extension() {
 | 
			
		||||
                let resource_path = path
 | 
			
		||||
                    .strip_prefix(base).unwrap()
 | 
			
		||||
                    .with_extension("");
 | 
			
		||||
                let resource_path = resource_path
 | 
			
		||||
                    .to_str().unwrap();
 | 
			
		||||
                let resource_path = resource_path
 | 
			
		||||
                    .strip_prefix('/').unwrap_or(resource_path);
 | 
			
		||||
                if let None = resources::get_keyboard(resource_path) {
 | 
			
		||||
                    println!("Data not registered in the resources file: {:?}", path);
 | 
			
		||||
                    orphans = Orphans::Present;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    Ok(orphans)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn main() -> () {
 | 
			
		||||
    let path = env::args().nth(1).expect("Provide a path");
 | 
			
		||||
    let path = PathBuf::from(path);
 | 
			
		||||
 | 
			
		||||
    match check(&path, &path) {
 | 
			
		||||
        Err(e) => panic!("{:?}", e),
 | 
			
		||||
        Ok(Orphans::Present) => panic!("Unregistered files present. Check the tutorial in doc/tutorial.md"),
 | 
			
		||||
        _ => {},
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										20
									
								
								meson.build
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								meson.build
									
									
									
									
									
								
							@ -1,7 +1,7 @@
 | 
			
		||||
project(
 | 
			
		||||
    'squeekboard',
 | 
			
		||||
    'c', 'rust',
 | 
			
		||||
    version: '1.23.0',
 | 
			
		||||
    version: '1.17.1',
 | 
			
		||||
    license: 'GPLv3',
 | 
			
		||||
    meson_version: '>=0.51.0',
 | 
			
		||||
    default_options: [
 | 
			
		||||
@ -99,17 +99,12 @@ cargo_toml_base = configure_file(
 | 
			
		||||
cargo_patch = []
 | 
			
		||||
 | 
			
		||||
if get_option('newer') == true
 | 
			
		||||
    cargo_build_flags += ['--features', 'glib_v0_14,zbus_v1_5,clap_v4']
 | 
			
		||||
    cargo_build_flags += ['--features', 'glib_v0_14']
 | 
			
		||||
    cargo_deps = files('Cargo.deps.newer')
 | 
			
		||||
    cargo_lock = files('Cargo.lock.newer')
 | 
			
		||||
else
 | 
			
		||||
    cargo_deps = files('Cargo.deps')
 | 
			
		||||
    cargo_lock = []
 | 
			
		||||
    if get_option('online') == true
 | 
			
		||||
        cargo_patch = [files('Cargo.deps.online')]
 | 
			
		||||
        if get_option('reset_lock') == true
 | 
			
		||||
            cargo_lock = files('Cargo.lock')
 | 
			
		||||
        endif
 | 
			
		||||
    endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
@ -121,17 +116,6 @@ cargo_toml = custom_target(
 | 
			
		||||
    capture: true,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
cargo_deps = [cargo_toml]
 | 
			
		||||
if get_option('online') == true and get_option('reset_lock') == true
 | 
			
		||||
    cargo_lock = custom_target(
 | 
			
		||||
        'Cargo.lock',
 | 
			
		||||
        output: 'Cargo.lock',
 | 
			
		||||
        command: [cat, cargo_lock],
 | 
			
		||||
        capture: true,
 | 
			
		||||
    )
 | 
			
		||||
    cargo_deps += [cargo_lock]
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
dep_cargo = find_program('cargo')
 | 
			
		||||
cargo_script = find_program('cargo.sh')
 | 
			
		||||
cargo_build = find_program('cargo_build.py')
 | 
			
		||||
 | 
			
		||||
@ -7,10 +7,6 @@ option('tests',
 | 
			
		||||
       type: 'boolean', value: true,
 | 
			
		||||
       description: 'Whether to compile unit tests')
 | 
			
		||||
 | 
			
		||||
option('find_orphans',
 | 
			
		||||
       type: 'boolean', value: false,
 | 
			
		||||
       description: 'Check if all present layout files are included in resources.')
 | 
			
		||||
 | 
			
		||||
option('newer',
 | 
			
		||||
       type: 'boolean', value: false,
 | 
			
		||||
       description: 'Build with dependencies newer than those of Byzantium')
 | 
			
		||||
@ -19,10 +15,6 @@ option('online',
 | 
			
		||||
       type: 'boolean', value: true,
 | 
			
		||||
       description: 'Pull packages from the internet while building, as opposed to a local regstry.')
 | 
			
		||||
       
 | 
			
		||||
option('reset_lock',
 | 
			
		||||
       type: 'boolean', value: false,
 | 
			
		||||
       description: 'Resets Cargo.lock to the one found in the source repo. Does not affect builds with online == false.')
 | 
			
		||||
 | 
			
		||||
option('strict',
 | 
			
		||||
       type: 'boolean', value: true,
 | 
			
		||||
       description: 'Turn more warnings into errors')
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										20
									
								
								po/LINGUAS
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								po/LINGUAS
									
									
									
									
									
								
							@ -1,33 +1,13 @@
 | 
			
		||||
be
 | 
			
		||||
ca
 | 
			
		||||
cs
 | 
			
		||||
de
 | 
			
		||||
el
 | 
			
		||||
es
 | 
			
		||||
eu
 | 
			
		||||
fa
 | 
			
		||||
fi
 | 
			
		||||
fr
 | 
			
		||||
fur
 | 
			
		||||
gl
 | 
			
		||||
he
 | 
			
		||||
hi
 | 
			
		||||
hr
 | 
			
		||||
ht
 | 
			
		||||
hu
 | 
			
		||||
it
 | 
			
		||||
ka
 | 
			
		||||
ko
 | 
			
		||||
nl
 | 
			
		||||
oc
 | 
			
		||||
pl
 | 
			
		||||
pt
 | 
			
		||||
pt_BR
 | 
			
		||||
ro
 | 
			
		||||
ru
 | 
			
		||||
sl
 | 
			
		||||
sr
 | 
			
		||||
tr
 | 
			
		||||
uk
 | 
			
		||||
sv
 | 
			
		||||
zh_CN
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										47
									
								
								po/be.po
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								po/be.po
									
									
									
									
									
								
							@ -1,47 +0,0 @@
 | 
			
		||||
# Belarusian translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2023 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Yuras Shumovich <shumovichy@gmail.com>, 2023.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2023-04-02 17:10+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2023-09-14 14:44+0300\n"
 | 
			
		||||
"Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n"
 | 
			
		||||
"Language-Team: Belarusian <i18n-bel-gnome@googlegroups.com>\n"
 | 
			
		||||
"Language: be\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 "
 | 
			
		||||
"&& n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 | 
			
		||||
"X-Generator: Poedit 3.3.2\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Эмодзі"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Тэрмінал"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Налады клавіятуры"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Экранная клавіятура"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Віртуальная экранная клавіятура"
 | 
			
		||||
							
								
								
									
										46
									
								
								po/cs.po
									
									
									
									
									
								
							
							
						
						
									
										46
									
								
								po/cs.po
									
									
									
									
									
								
							@ -1,46 +0,0 @@
 | 
			
		||||
# Czech translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2022 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Daniel Rusek <mail@asciiwolf.com>, 2022.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-10-16 12:08+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2022-10-18 23:36+0200\n"
 | 
			
		||||
"Last-Translator: Daniel Rusek <mail@asciiwolf.com>\n"
 | 
			
		||||
"Language-Team: Czech <gnome-cs-list@gnome.org>\n"
 | 
			
		||||
"Language: cs\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 | 
			
		||||
"X-Generator: Poedit 3.1.1\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emodži"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminál"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Nastavení klávesnice"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Klávesnice na obrazovce"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Přidat virtuální klávesnici na obrazovce"
 | 
			
		||||
							
								
								
									
										39
									
								
								po/de.po
									
									
									
									
									
								
							
							
						
						
									
										39
									
								
								po/de.po
									
									
									
									
									
								
							@ -2,46 +2,21 @@
 | 
			
		||||
# Copyright (C) 2021 THE squeekboard'S COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Automatically generated, 2021.
 | 
			
		||||
# Jürgen Benvenuti <gastornis@posteo.org>, 2023.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-10-16 12:08+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2023-01-14 11:45+0100\n"
 | 
			
		||||
"Last-Translator: Jürgen Benvenuti <gastornis@posteo.org>\n"
 | 
			
		||||
"Language-Team: German <gnome-de@gnome-org>\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: \n"
 | 
			
		||||
"POT-Creation-Date: 2021-12-03 18:41+0100\n"
 | 
			
		||||
"PO-Revision-Date: 2021-12-03 18:41+0100\n"
 | 
			
		||||
"Last-Translator: Automatically generated\n"
 | 
			
		||||
"Language-Team: none\n"
 | 
			
		||||
"Language: de\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Type: text/plain; charset=ASCII\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 | 
			
		||||
"X-Generator: Poedit 3.1.1\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emoji"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminal"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
#: data/popup.ui:15
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Tastatureinstellungen"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Bildschirmtastatur"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Eine virtuelle Bildschirmtastatur"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										46
									
								
								po/el.po
									
									
									
									
									
								
							
							
						
						
									
										46
									
								
								po/el.po
									
									
									
									
									
								
							@ -1,46 +0,0 @@
 | 
			
		||||
# Greek translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2022 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Efstathios Iosifidis <eiosifidis@gnome.org>, 2022.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-07-11 06:54+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2022-07-11 23:11+0300\n"
 | 
			
		||||
"Last-Translator: Efstathios Iosifidis <eiosifidis@gnome.org>\n"
 | 
			
		||||
"Language-Team: Greek <gnome-el-list@gnome.org>\n"
 | 
			
		||||
"Language: el\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 | 
			
		||||
"X-Generator: Poedit 3.1\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emoji"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Τερματικό"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Ρυθμίσεις πληκτρολογίου"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Πληκτρολόγιο οθόνης"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Εικονικό πληκτρολόγιο οθόνης"
 | 
			
		||||
							
								
								
									
										47
									
								
								po/es.po
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								po/es.po
									
									
									
									
									
								
							@ -1,47 +0,0 @@
 | 
			
		||||
# Spanish translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2022 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 | 
			
		||||
# Pablo Correa Gómez <ablocorrea@hotmail.com>, 2022.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-03-20 13:14+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2022-03-22 21:33+0100\n"
 | 
			
		||||
"Last-Translator: Pablo Correa Gómez <ablocorrea@hotmail.com>\n"
 | 
			
		||||
"Language-Team: Spanish; Castilian <gnome-es-list@gnome.org>\n"
 | 
			
		||||
"Language: es\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 | 
			
		||||
"X-Generator: Gtranslator 3.36.0\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emoji"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminal"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Ajustes de teclado"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Teclado en pantala"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Un teclado virtual en pantalla"
 | 
			
		||||
							
								
								
									
										42
									
								
								po/eu.po
									
									
									
									
									
								
							
							
						
						
									
										42
									
								
								po/eu.po
									
									
									
									
									
								
							@ -1,42 +0,0 @@
 | 
			
		||||
# Basque translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2023 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Asier Sarasua Garmendia <asiersarasua@ni.eus>, 2023.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr "Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/issues\n"
 | 
			
		||||
"POT-Creation-Date: 2023-02-26 09:13+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2023-03-06 09:13+0000\n"
 | 
			
		||||
"Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n"
 | 
			
		||||
"Language-Team: Basque <librezale@librezale.eus>\n"
 | 
			
		||||
"Language: eu\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emojia"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminala"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Teklatuaren ezarpenak"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Pantailako teklatua"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Gehitu pantailako teklatu birtuala"
 | 
			
		||||
							
								
								
									
										47
									
								
								po/fr.po
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								po/fr.po
									
									
									
									
									
								
							@ -1,47 +0,0 @@
 | 
			
		||||
# French translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2022 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# FULL NAME <EMAIL@ADDRESS>, 2022.
 | 
			
		||||
# Éloi Rivard <eloi.rivard@nubla.fr>, 2022.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-04-28 15:05+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2022-05-25 16:34+0200\n"
 | 
			
		||||
"Last-Translator: Éloi Rivard <eloi.rivard@nubla.fr>\n"
 | 
			
		||||
"Language-Team: French <gnomefr@traduc.org>\n"
 | 
			
		||||
"Language: fr\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 | 
			
		||||
"X-Generator: Gtranslator 40.0\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emoji"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminal"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Paramètres du clavier"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Clavier virtuel"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Un clavier virtuel affiché à l’écran"
 | 
			
		||||
							
								
								
									
										52
									
								
								po/hi.po
									
									
									
									
									
								
							
							
						
						
									
										52
									
								
								po/hi.po
									
									
									
									
									
								
							@ -1,52 +0,0 @@
 | 
			
		||||
# Hindi translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2023 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# # Translators:
 | 
			
		||||
# Hemish <hemish04082005@gmail.com>, 2023.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2023-01-31 11:38+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2023-02-02 23:11+0530\n"
 | 
			
		||||
"Last-Translator: Hemish <hemish04082005@gmail.com>\n"
 | 
			
		||||
"Language-Team: Hindi <indlinux-hindi@lists.sourceforge.net https://indlinux."
 | 
			
		||||
"org/hindi>\n"
 | 
			
		||||
"Language: hi\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 | 
			
		||||
"X-Generator: Gtranslator 42.0\n"
 | 
			
		||||
"X-DL-Team: \n"
 | 
			
		||||
"X-DL-Module: \n"
 | 
			
		||||
"X-DL-Branch: \n"
 | 
			
		||||
"X-DL-Domain: \n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "इमोजी"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "टर्मिनल"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "कुंजीपट सेंटिग्स"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "स्क्वीकबोर्ड"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "ऑनस्क्रीन कुंजीपट"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "एक ऑनस्क्रीन वर्चुअल कुंजीपट"
 | 
			
		||||
							
								
								
									
										47
									
								
								po/hr.po
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								po/hr.po
									
									
									
									
									
								
							@ -1,47 +0,0 @@
 | 
			
		||||
# Croatian translation for squeekboard.
 | 
			
		||||
# Copyright (C) 2022 squeekboard's COPYRIGHT HOLDER
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: squeekboard master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2022-07-11 20:12+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2022-08-31 09:49+0200\n"
 | 
			
		||||
"Last-Translator: \n"
 | 
			
		||||
"Language-Team: Croatian <hr@li.org>\n"
 | 
			
		||||
"Language: hr\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 "
 | 
			
		||||
"&& n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 | 
			
		||||
"X-Generator: Poedit 3.1.1\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Smajli"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Terminal"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Postavke tipkovnice"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Zaslonska tipkovnica"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Zaslonska virtualna tipkovnica"
 | 
			
		||||
							
								
								
									
										45
									
								
								po/ht.po
									
									
									
									
									
								
							
							
						
						
									
										45
									
								
								po/ht.po
									
									
									
									
									
								
							@ -1,45 +0,0 @@
 | 
			
		||||
# Squeekboard Haitian Creole Translation
 | 
			
		||||
# Copyright (C) 2024 Purism
 | 
			
		||||
# This file is distributed under the same license as the squeekboard package.
 | 
			
		||||
# Pierre Michel Augustin <pierremichelaugustin@gnuhealth.org>, 2024.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: \n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/World/Phosh/squeekboard/"
 | 
			
		||||
"issues\n"
 | 
			
		||||
"POT-Creation-Date: 2024-01-11 05:05+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2024-01-11 10:40-0500\n"
 | 
			
		||||
"Last-Translator: \n"
 | 
			
		||||
"Language-Team: \n"
 | 
			
		||||
"Language: ht\n"
 | 
			
		||||
"MIME-Version: 1.0\n"
 | 
			
		||||
"Content-Type: text/plain; charset=UTF-8\n"
 | 
			
		||||
"Content-Transfer-Encoding: 8bit\n"
 | 
			
		||||
"X-Generator: Poedit 3.0.1\n"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a emmoji keyboard layout
 | 
			
		||||
#: data/popover.ui:6
 | 
			
		||||
msgid "Emoji"
 | 
			
		||||
msgstr "Emoji"
 | 
			
		||||
 | 
			
		||||
#. translators: This is a terminal keyboard layout
 | 
			
		||||
#: data/popover.ui:12
 | 
			
		||||
msgid "Terminal"
 | 
			
		||||
msgstr "Tèminal"
 | 
			
		||||
 | 
			
		||||
#: data/popover.ui:18
 | 
			
		||||
msgid "Keyboard Settings"
 | 
			
		||||
msgstr "Paramèt Klavye yo"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:3
 | 
			
		||||
msgid "Squeekboard"
 | 
			
		||||
msgstr "Squeekboard"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:4
 | 
			
		||||
msgid "On Screen Keyboard"
 | 
			
		||||
msgstr "Sou Ekran Klavye"
 | 
			
		||||
 | 
			
		||||
#: data/sm.puri.Squeekboard.desktop.in.in:5
 | 
			
		||||
msgid "An on screen virtual keyboard"
 | 
			
		||||
msgstr "Sou yon ekran klavye vityèl"
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user