summaryrefslogtreecommitdiffstats
path: root/sway/commands/input/click_method.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/click_method.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/click_method.c')
-rw-r--r--sway/commands/input/click_method.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c
new file mode 100644
index 00000000..2001acf2
--- /dev/null
+++ b/sway/commands/input/click_method.c
@@ -0,0 +1,29 @@
1#include <string.h>
2#include "commands.h"
3#include "input.h"
4#include "log.h"
5
6struct cmd_results *input_cmd_click_method(int argc, char **argv) {
7 sway_log(L_DEBUG, "click_method for device: %d %s", current_input_config==NULL, current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "click_method", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "click_method", "No input device defined.");
14 }
15 struct input_config *new_config = new_input_config(current_input_config->identifier);
16
17 if (strcasecmp(argv[0], "none") == 0) {
18 new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_NONE;
19 } else if (strcasecmp(argv[0], "button_areas") == 0) {
20 new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_BUTTON_AREAS;
21 } else if (strcasecmp(argv[0], "clickfinger") == 0) {
22 new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER;
23 } else {
24 return cmd_results_new(CMD_INVALID, "click_method", "Expected 'click_method <none|button_areas|clickfinger'");
25 }
26
27 input_cmd_apply(new_config);
28 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
29}