forked from jordansissel/xdotool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_getwindowgeometry.c
83 lines (73 loc) · 2.57 KB
/
cmd_getwindowgeometry.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
79
80
81
82
#include "xdo_cmd.h"
int cmd_getwindowgeometry(context_t *context) {
char *cmd = context->argv[0];
int x, y;
Screen *screen;
unsigned int width, height;
int shell_output = False;
char out_prefix[17] = {'\0'};
int c;
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ "shell", no_argument, NULL, 's' },
{ "prefix", required_argument, NULL, 'p' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [window=%1] [--shell] [--prefix <STR>]\n"
"--shell - output shell variables for use with eval\n"
"--prefix STR - use prefix for shell variables names (max 16 chars) \n"
HELP_SEE_WINDOW_STACK;
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+h",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
case 's':
shell_output = True;
break;
case 'p':
strncpy(out_prefix, optarg, sizeof(out_prefix)-1);
out_prefix[ sizeof(out_prefix)-1 ] = '\0'; //just in case
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
const char *window_arg = "%1";
if (!window_get_arg(context, 0, 0, &window_arg)) {
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
window_each(context, window_arg, {
int ret = 0;
ret = xdo_get_window_size(context->xdo, window, &width, &height);
if (ret != XDO_SUCCESS) {
fprintf(stderr, "window %ld - failed to get height/width?\n", window);
}
ret = xdo_get_window_location(context->xdo, window, &x, &y, &screen);
if (ret != XDO_SUCCESS) {
fprintf(stderr, "window %ld - failed to get location?\n", window);
}
if (shell_output) {
xdotool_output(context, "%sWINDOW=%ld", out_prefix, window);
xdotool_output(context, "%sX=%d", out_prefix, x);
xdotool_output(context, "%sY=%d", out_prefix, y);
xdotool_output(context, "%sWIDTH=%u", out_prefix, width);
xdotool_output(context, "%sHEIGHT=%u", out_prefix, height);
xdotool_output(context, "%sSCREEN=%d", out_prefix, XScreenNumberOfScreen(screen));
} else {
xdotool_output(context, "Window %ld", window);
xdotool_output(context, " Position: %d,%d (screen: %d)", x, y,
XScreenNumberOfScreen(screen));
xdotool_output(context, " Geometry: %ux%u", width, height);
}
}); /* window_each(...) */
return EXIT_SUCCESS;
}