-
Notifications
You must be signed in to change notification settings - Fork 320
/
cmd_getwindowfocus.c
65 lines (56 loc) · 1.56 KB
/
cmd_getwindowfocus.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
#include "xdo_cmd.h"
/* Added 2007-07-28 - Lee Pumphret */
int cmd_getwindowfocus(context_t *context) {
int ret = 0;
int get_toplevel_focus = 1;
Window window = 0;
char *cmd = context->argv[0];
int c;
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ NULL, no_argument, NULL, 'f' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [-f]\n"
"-f - Report the window with focus even if we don't think it is a \n"
" top-level window. The default is to find the top-level window\n"
" that has focus.\n";
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+fh",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
case 'f':
get_toplevel_focus = 0;
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
//if (context->argc > 0) {
//fprintf(stderr, usage, cmd);
//return 1;
//}
if (get_toplevel_focus) {
ret = xdo_get_focused_window_sane(context->xdo, &window);
} else {
ret = xdo_get_focused_window(context->xdo, &window);
}
if (ret) {
fprintf(stderr, "xdo_focus_window reported an error\n");
} else {
/* only print if we're the last command */
if (context->argc == 0) {
window_print(window);
}
window_save(context, window);
}
return ret;
}