aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/switch.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-05-30 03:30:08 -0400
committerLibravatar Simon Ser <contact@emersion.fr>2019-05-30 10:47:42 +0300
commit6afb392823d27ec69bedc8fd74263c3d072cca29 (patch)
treea1a72a233a2ef8e89240b7702d7c9eabb3444bf0 /sway/input/switch.c
parentProvide current DPMS state in GET_OUTPUTS (diff)
downloadsway-6afb392823d27ec69bedc8fd74263c3d072cca29.tar.gz
sway-6afb392823d27ec69bedc8fd74263c3d072cca29.tar.zst
sway-6afb392823d27ec69bedc8fd74263c3d072cca29.zip
bindings: allow unlocked and locked bindings
This changes the behavior of bindings to make the `BINDING_LOCKED` flag conflicting, which will allow for both unlocked and locked bindings. If there are two matching bindings and one has `--locked` and the other does not, the one with `--locked` will be preferred when locked and the one without will be preferred when unlocked. If there are two matching bindings and one has both a matching `--input-device=<input>` and `--locked` and the other has neither, the former will be preferred for both unlocked and locked. This also refactors `get_active_binding` in `sway/input/keyboard.c` to make it easier to read.
Diffstat (limited to 'sway/input/switch.c')
-rw-r--r--sway/input/switch.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/sway/input/switch.c b/sway/input/switch.c
index a8769713..d825c5c3 100644
--- a/sway/input/switch.c
+++ b/sway/input/switch.c
@@ -38,6 +38,7 @@ static void handle_switch_toggle(struct wl_listener *listener, void *data) {
38 sway_log(SWAY_DEBUG, "%s: type %d state %d", device_identifier, type, state); 38 sway_log(SWAY_DEBUG, "%s: type %d state %d", device_identifier, type, state);
39 39
40 list_t *bindings = config->current_mode->switch_bindings; 40 list_t *bindings = config->current_mode->switch_bindings;
41 struct sway_switch_binding *matched_binding = NULL;
41 for (int i = 0; i < bindings->length; ++i) { 42 for (int i = 0; i < bindings->length; ++i) {
42 struct sway_switch_binding *binding = bindings->items[i]; 43 struct sway_switch_binding *binding = bindings->items[i];
43 if (binding->type != type) { 44 if (binding->type != type) {
@@ -52,10 +53,19 @@ static void handle_switch_toggle(struct wl_listener *listener, void *data) {
52 continue; 53 continue;
53 } 54 }
54 55
55 struct sway_binding *dummy_binding = calloc(1, sizeof(struct sway_binding)); 56 matched_binding = binding;
57
58 if (binding_locked == input_inhibited) {
59 break;
60 }
61 }
62
63 if (matched_binding) {
64 struct sway_binding *dummy_binding =
65 calloc(1, sizeof(struct sway_binding));
56 dummy_binding->type = BINDING_SWITCH; 66 dummy_binding->type = BINDING_SWITCH;
57 dummy_binding->flags = binding->flags; 67 dummy_binding->flags = matched_binding->flags;
58 dummy_binding->command = binding->command; 68 dummy_binding->command = matched_binding->command;
59 69
60 seat_execute_command(seat, dummy_binding); 70 seat_execute_command(seat, dummy_binding);
61 free(dummy_binding); 71 free(dummy_binding);