swayfx/sway
Ryan Dwyer 3b0c26d149 Overhaul criteria implementation
The criteria struct now uses properties for each token type rather than
the list_t list of tokens. The reason for this is that different token
types have different data types: pcre, string and number to name a few.
This solution should be more flexible moving forward. A bonus of this is
that criteria is now easier to understand when looking at the struct
definition.

The criteria parser has been rewritten because the previous one didn't
support valueless pairs (eg. [class="foo" floating]).

Criteria now has types. Types at the moment are CT_COMMAND,
CT_ASSIGN_WORKSPACE and CT_ASSIGN_OUTPUT. i3 uses types as well.
Previously the assign command was creating a criteria with 'move to
workspace <name>' as its command, but this caused the window to appear
briefly on the focused workspace before being moved to the assigned
workspace. It now creates the view directly in the assigned workspace.

Each view will only execute a given criteria once. This is achieved by
storing a list of executed criteria in the view. This is the same
strategy used by i3.

Escaping now works properly. Previously you could do things like
[class="Fire\"fox"] and the stored value would be 'Fire\"fox', but it
should be (and now is) 'Fire"fox'.

The public functions in criteria.c are now all prefixed with criteria_.

Xwayland views now listen to the set_title, set_class and
set_window_type events and criteria will be run when these happen. XDG
shell has none of these events so it continues to update the title in
handle_commit.

Each view type's get_prop function has been split into get_string_prop
and get_int_prop because some properties like the X11 window ID and
window type are numeric.

The following new criteria tokens are now supported:

* id (X11 window ID)
* instance
* tiling
* workspace
2018-05-11 09:38:53 +10:00
..
commands Overhaul criteria implementation 2018-05-11 09:38:53 +10:00
config Fix layer surface crash on output destroy 2018-05-01 19:05:32 +02:00
desktop Overhaul criteria implementation 2018-05-11 09:38:53 +10:00
input Highlight all child borders when using focus parent 2018-05-11 09:20:46 +10:00
tree Overhaul criteria implementation 2018-05-11 09:38:53 +10:00
base64.c Rework get_clipboard implementation 2017-07-07 21:51:34 +02:00
commands.c Overhaul criteria implementation 2018-05-11 09:38:53 +10:00
config.c Use reasonable default for font height 2018-05-10 21:24:00 +10:00
criteria.c Overhaul criteria implementation 2018-05-11 09:38:53 +10:00
debug-tree.c Container coordiantes/sizes are floating point 2018-04-06 16:19:06 -04:00
ipc-json.c Remove sway_container.workspace_layout 2018-04-26 10:14:18 +10:00
ipc-server.c Fix gcc string truncation warnings 2018-04-13 22:47:27 +09:00
main.c Add debug tree view 2018-04-06 11:49:27 -04:00
meson.build Implement title_format 2018-05-05 22:29:37 +10:00
security.c Add minimal config subsystem 2017-12-05 10:40:55 +01:00
server.c Fix null deref in server_init 2018-05-09 16:32:55 +00:00
sway-bar.5.txt Various manpage edits 2017-10-14 21:41:49 +02:00
sway-input.5.txt Add map_from_region command 2018-04-26 10:53:47 +01:00
sway-security.7.txt Various manpage edits 2017-10-14 21:41:49 +02:00
sway.1.txt input and seat command docs 2017-12-16 08:19:33 -05:00
sway.5.txt Add documentation for seat cursor command. 2018-04-10 15:44:02 -04:00