-
Notifications
You must be signed in to change notification settings - Fork 318
/
cmd_mouseup.c
79 lines (67 loc) · 2.06 KB
/
cmd_mouseup.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "xdo_cmd.h"
#include <string.h>
int cmd_mouseup(context_t *context) {
int ret = 0;
int button;
char *cmd = *context->argv;
char *window_arg = NULL;
charcodemap_t *active_mods = NULL;
int active_mods_n;
int clear_modifiers = 0;
int c;
static struct option longopts[] = {
{ "clearmodifiers", no_argument, NULL, 'c' },
{ "help", no_argument, NULL, 'h' },
{ "window", required_argument, NULL, 'w' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [--clearmodifiers] [--window WINDOW] <button>\n"
"--window <windowid> - specify a window to send keys to\n"
"--clearmodifiers - reset active modifiers (alt, etc) while typing\n";
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+cw:h",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
case 'c':
clear_modifiers = 1;
break;
case 'w':
window_arg = strdup(optarg);
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
if (context->argc < 1) {
fprintf(stderr, usage, cmd);
fprintf(stderr, "You specified the wrong number of args.\n");
return 1;
}
button = atoi(context->argv[0]);
window_each(context, window_arg, {
if (clear_modifiers) {
xdo_get_active_modifiers(context->xdo, &active_mods, &active_mods_n);
xdo_clear_active_modifiers(context->xdo, window, active_mods, active_mods_n);
}
ret = xdo_mouse_up(context->xdo, window, button);
if (clear_modifiers) {
xdo_set_active_modifiers(context->xdo, window, active_mods, active_mods_n);
free(active_mods);
}
if (ret) {
fprintf(stderr, "xdo_mouse_up reported an error on window %ld\n", window);
return ret;
}
}); /* window_each(...) */
free(window_arg);
consume_args(context, 1);
return ret;
}