File: cmd_getmouselocation.c

package info (click to toggle)
xdotool 1%3A3.20140805.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 784 kB
  • ctags: 521
  • sloc: ansic: 5,392; ruby: 1,050; sh: 309; makefile: 264
file content (52 lines) | stat: -rw-r--r-- 1,346 bytes parent folder | download
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
#include "xdo_cmd.h"

int cmd_getmouselocation(context_t *context) {
  int x, y, screen_num;
  Window window;
  int ret;
  char *cmd = context->argv[0];

  int c;
  static struct option longopts[] = {
    { "help", no_argument, NULL, 'h' },
    { "shell", no_argument, NULL, 's' },
    { 0, 0, 0, 0 },
  };
  static const char *usage = 
    "Usage: %s [--shell]\n"
    "--shell     - output shell variables for use with eval\n";
  int option_index;
  int output_shell = 0;

  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':
        output_shell = 1;
        break;
      default:
        fprintf(stderr, usage, cmd);
        return EXIT_FAILURE;
    }
  }

  consume_args(context, optind);

  ret = xdo_get_mouse_location2(context->xdo, &x, &y, &screen_num, &window);

  if (output_shell) {
    xdotool_output(context, "X=%d", x);
    xdotool_output(context, "Y=%d", y);
    xdotool_output(context, "SCREEN=%d", screen_num);
    xdotool_output(context, "WINDOW=%d", window);
  } else {
    xdotool_output(context, "x:%d y:%d screen:%d window:%ld", x, y, screen_num, window);
  }
  return ret;
}