all repos — ryudo @ de0bc0397ac6302cb4e11c53097c77abcfb30eb5

the floatiling window manager that flows; fork of rio from plan9port

showevent/sample.c (raw)

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
#include <X11/Intrinsic.h>

/*
 * Disclaimer: No I don't actually code like this but this is a simple,
 * "Quick-n-Dirty", plain, vanilla, "No ups, No extras" piece of code.
 */

main(argc, argv) int argc;
char** argv;
{
  Display* dpy;
  int screen;
  Window window;
  XEvent event;
  extern Boolean use_separate_lines;

  if (!(dpy = XOpenDisplay(""))) {
    printf("Failed to open display...\n");
    exit(1);
  }
  screen = DefaultScreen(dpy);

  window = XCreateSimpleWindow(
    dpy,
    RootWindow(dpy, screen),
    100,
    100,
    300,
    200,
    2,
    BlackPixel(dpy, screen),
    WhitePixel(dpy, screen));

  XSelectInput(
    dpy,
    window,
    KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
      EnterWindowMask | LeaveWindowMask | PointerMotionMask |
      PointerMotionHintMask | Button1MotionMask | Button2MotionMask |
      Button3MotionMask | Button4MotionMask | Button5MotionMask |
      ButtonMotionMask | KeymapStateMask | ExposureMask | VisibilityChangeMask |
      StructureNotifyMask | SubstructureNotifyMask | SubstructureRedirectMask |
      FocusChangeMask | PropertyChangeMask | ColormapChangeMask |
      OwnerGrabButtonMask);

  XMapWindow(dpy, window);

  /* set this to false to make ShowEvent take up less vertival space */
  use_separate_lines = True;

  while (1) {
    XNextEvent(dpy, &event);
    printf("Detail of %s event:\n", GetType(&event));
    ShowEvent(&event);
    printf("\n\n");
  }
}