summaryrefslogtreecommitdiffstats
path: root/sway/commands/input/tap.c
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-01 21:39:08 -0500
committerLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-01 21:39:08 -0500
commitb374c35758777f98e5ddbe4b0dc43bd7c80f36d7 (patch)
tree04bb4cfc3da7d2e0de7fbc38db42f65c66d2df4c /sway/commands/input/tap.c
parentMerge pull request #874 from yohanesu75/ipc-client-fix (diff)
downloadsway-b374c35758777f98e5ddbe4b0dc43bd7c80f36d7.tar.gz
sway-b374c35758777f98e5ddbe4b0dc43bd7c80f36d7.tar.zst
sway-b374c35758777f98e5ddbe4b0dc43bd7c80f36d7.zip
refactor commands.c
Diffstat (limited to 'sway/commands/input/tap.c')
-rw-r--r--sway/commands/input/tap.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/sway/commands/input/tap.c b/sway/commands/input/tap.c
new file mode 100644
index 00000000..8180dcea
--- /dev/null
+++ b/sway/commands/input/tap.c
@@ -0,0 +1,28 @@
1#include <string.h>
2#include "commands.h"
3#include "input.h"
4#include "log.h"
5
6struct cmd_results *input_cmd_tap(int argc, char **argv) {
7 sway_log(L_DEBUG, "tap for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "tap", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "tap", "No input device defined.");
14 }
15 struct input_config *new_config = new_input_config(current_input_config->identifier);
16
17 if (strcasecmp(argv[0], "enabled") == 0) {
18 new_config->tap = LIBINPUT_CONFIG_TAP_ENABLED;
19 } else if (strcasecmp(argv[0], "disabled") == 0) {
20 new_config->tap = LIBINPUT_CONFIG_TAP_DISABLED;
21 } else {
22 return cmd_results_new(CMD_INVALID, "tap", "Expected 'tap <enabled|disabled>'");
23 }
24
25 sway_log(L_DEBUG, "apply-tap for device: %s", current_input_config->identifier);
26 input_cmd_apply(new_config);
27 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
28}