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 Settings.
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”.
Using custom layouts¶
Custom layouts will be loaded from ~/.local/share/squeekboard/keyboards/
.
In addition to loading customised layouts for languages (for example: from ~/.local/share/squeekboard/keyboards/de.yaml
, for a custom layout for the German language), Squeekboard will also load layouts for “A user-defined custom layout” from custom.yaml
, which can be added as a keyboard-layout in the keyboard-settings of GNOME Settings.
The included (and replaceable) layouts are in: data/keyboards/
.
Layout-size¶
Aspect-ratios¶
Basic/compact shape: 12:7
Wide shape: 16:5
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.change-view
has its own color scheme and a border at the bottom, it should be used for buttons which switch to a different view.altline
,wide
andspecial
have their own color scheme, to be used for buttons with functionality other than entering text (for example:Return
andBackspace
).subtle-highlight
has a slightly different colour than thedefault
-buttons, to make commonly used buttons easier to find in views that are otherwise full of generally rarely used buttons (for exampleä
,ö
,ü
, andß
, in theeschars
-view of the German layout).
Read style.css
, style-Adwaita:dark.css
and common.css
, which are in the data
-folder, for a complete list of outline-names with special styling.
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 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.
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.