aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/scroll_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/scroll_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/scroll_method.c')
-rw-r--r--sway/commands/input/scroll_method.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/sway/commands/input/scroll_method.c b/sway/commands/input/scroll_method.c
new file mode 100644
index 00000000..8e900a26
--- /dev/null
+++ b/sway/commands/input/scroll_method.c
@@ -0,0 +1,29 @@
1#include <string.h>
2#include "commands.h"
3#include "input.h"
4
5struct cmd_results *input_cmd_scroll_method(int argc, char **argv) {
6 struct cmd_results *error = NULL;
7 if ((error = checkarg(argc, "scroll_method", EXPECTED_AT_LEAST, 1))) {
8 return error;
9 }
10 if (!current_input_config) {
11 return cmd_results_new(CMD_FAILURE, "scroll_method", "No input device defined.");
12 }
13 struct input_config *new_config = new_input_config(current_input_config->identifier);
14
15 if (strcasecmp(argv[0], "none") == 0) {
16 new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
17 } else if (strcasecmp(argv[0], "two_finger") == 0) {
18 new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_2FG;
19 } else if (strcasecmp(argv[0], "edge") == 0) {
20 new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_EDGE;
21 } else if (strcasecmp(argv[0], "on_button_down") == 0) {
22 new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
23 } else {
24 return cmd_results_new(CMD_INVALID, "scroll_method", "Expected 'scroll_method <none|two_finger|edge|on_button_down>'");
25 }
26
27 input_cmd_apply(new_config);
28 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
29}