all repos — ryudo @ de0bc0397ac6302cb4e11c53097c77abcfb30eb5

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

printevent.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
/*
 * Original code posted to comp.sources.x
 * Modifications by Russ Cox <rsc@swtch.com>.
 */

/*
Path: uunet!wyse!mikew
From: mikew@wyse.wyse.com (Mike Wexler)
Newsgroups: comp.sources.x
Subject: v02i056:  subroutine to print events in human readable form, Part01/01
Message-ID: <1935@wyse.wyse.com>
Date: 22 Dec 88 19:28:25 GMT
Organization: Wyse Technology, San Jose
Lines: 1093
Approved: mikew@wyse.com

Submitted-by: richsun!darkstar!ken
Posting-number: Volume 2, Issue 56
Archive-name: showevent/part01


There are times during debugging when it would be real useful to be able to
print the fields of an event in a human readable form.  Too many times I found
myself scrounging around in section 8 of the Xlib manual looking for the valid
fields for the events I wanted to see, then adding printf's to display the
numeric values of the fields, and then scanning through X.h trying to decode
the cryptic detail and state fields.  After playing with xev, I decided to
write a couple of standard functions that I could keep in a library and call
on whenever I needed a little debugging verbosity.  The first function,
GetType(), is useful for returning the string representation of the type of
an event.  The second function, ShowEvent(), is used to display all the fields
of an event in a readable format.  The functions are not complicated, in fact,
they are mind-numbingly boring - but that's just the point nobody wants to
spend the time writing functions like this, they just want to have them when
they need them.

A simple, sample program is included which does little else but to demonstrate
the use of these two functions.  These functions have saved me many an hour
during debugging and I hope you find some benefit to these.  If you have any
comments, suggestions, improvements, or if you find any blithering errors you
can get it touch with me at the following location:

      ken@richsun.UUCP
*/

#include <stdio.h>
#include <X11/Intrinsic.h>
#include <X11/Xproto.h>
#include "printevent.h"

static char* sep = " ";

/******************************************************************************/
/**** Miscellaneous routines to convert values to their string equivalents ****/
/******************************************************************************/

/* Returns the string equivalent of a boolean parameter */
static char* TorF(int bool) {
  switch (bool) {
    case True:
      return ("True");

    case False:
      return ("False");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a property notify state */
static char* PropertyState(int state) {
  switch (state) {
    case PropertyNewValue:
      return ("PropertyNewValue");

    case PropertyDelete:
      return ("PropertyDelete");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a visibility notify state */
static char* VisibilityState(int state) {
  switch (state) {
    case VisibilityUnobscured:
      return ("VisibilityUnobscured");

    case VisibilityPartiallyObscured:
      return ("VisibilityPartiallyObscured");

    case VisibilityFullyObscured:
      return ("VisibilityFullyObscured");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a timestamp */
static char* ServerTime(Time time) {
  unsigned long msec;
  unsigned long sec;
  unsigned long min;
  unsigned long hr;
  unsigned long day;
  static char buffer[32];

  msec = time % 1000;
  time /= 1000;
  sec = time % 60;
  time /= 60;
  min = time % 60;
  time /= 60;
  hr = time % 24;
  time /= 24;
  day = time;

  if (0)
    sprintf(
      buffer,
      "%lu day%s %02lu:%02lu:%02lu.%03lu",
      day,
      day == 1 ? "" : "(s)",
      hr,
      min,
      sec,
      msec);

  sprintf(buffer, "%lud%luh%lum%lu.%03lds", day, hr, min, sec, msec);
  return (buffer);
}

/* Simple structure to ease the interpretation of masks */
typedef struct MaskType MaskType;
struct MaskType {
  unsigned int value;
  char* string;
};

/* Returns the string equivalent of a mask of buttons and/or modifier keys */
static char* ButtonAndOrModifierState(unsigned int state) {
  static char buffer[256];
  static MaskType masks[] = {
    {Button1Mask, "Button1Mask"},
    {Button2Mask, "Button2Mask"},
    {Button3Mask, "Button3Mask"},
    {Button4Mask, "Button4Mask"},
    {Button5Mask, "Button5Mask"},
    {ShiftMask, "ShiftMask"},
    {LockMask, "LockMask"},
    {ControlMask, "ControlMask"},
    {Mod1Mask, "Mod1Mask"},
    {Mod2Mask, "Mod2Mask"},
    {Mod3Mask, "Mod3Mask"},
    {Mod4Mask, "Mod4Mask"},
    {Mod5Mask, "Mod5Mask"},
  };
  int num_masks = sizeof(masks) / sizeof(MaskType);
  int i;
  Boolean first = True;

  buffer[0] = 0;

  for (i = 0; i < num_masks; i++)
    if (state & masks[i].value)
      if (first) {
        first = False;
        strcpy(buffer, masks[i].string);
      } else {
        strcat(buffer, " | ");
        strcat(buffer, masks[i].string);
      }
  return (buffer);
}

/* Returns the string equivalent of a mask of configure window values */
static char* ConfigureValueMask(unsigned int valuemask) {
  static char buffer[256];
  static MaskType masks[] = {
    {CWX, "CWX"},
    {CWY, "CWY"},
    {CWWidth, "CWWidth"},
    {CWHeight, "CWHeight"},
    {CWBorderWidth, "CWBorderWidth"},
    {CWSibling, "CWSibling"},
    {CWStackMode, "CWStackMode"},
  };
  int num_masks = sizeof(masks) / sizeof(MaskType);
  int i;
  Boolean first = True;

  buffer[0] = 0;

  for (i = 0; i < num_masks; i++)
    if (valuemask & masks[i].value)
      if (first) {
        first = False;
        strcpy(buffer, masks[i].string);
      } else {
        strcat(buffer, " | ");
        strcat(buffer, masks[i].string);
      }

  return (buffer);
}

/* Returns the string equivalent of a motion hint */
static char* IsHint(char is_hint) {
  switch (is_hint) {
    case NotifyNormal:
      return ("NotifyNormal");

    case NotifyHint:
      return ("NotifyHint");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of an id or the value "None" */
static char* MaybeNone(int value) {
  static char buffer[16];

  if (value == None)
    return ("None");
  else {
    sprintf(buffer, "0x%x", value);
    return (buffer);
  }
}

/* Returns the string equivalent of a colormap state */
static char* ColormapState(int state) {
  switch (state) {
    case ColormapInstalled:
      return ("ColormapInstalled");

    case ColormapUninstalled:
      return ("ColormapUninstalled");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a crossing detail */
static char* CrossingDetail(int detail) {
  switch (detail) {
    case NotifyAncestor:
      return ("NotifyAncestor");

    case NotifyInferior:
      return ("NotifyInferior");

    case NotifyVirtual:
      return ("NotifyVirtual");

    case NotifyNonlinear:
      return ("NotifyNonlinear");

    case NotifyNonlinearVirtual:
      return ("NotifyNonlinearVirtual");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a focus change detail */
static char* FocusChangeDetail(int detail) {
  switch (detail) {
    case NotifyAncestor:
      return ("NotifyAncestor");

    case NotifyInferior:
      return ("NotifyInferior");

    case NotifyVirtual:
      return ("NotifyVirtual");

    case NotifyNonlinear:
      return ("NotifyNonlinear");

    case NotifyNonlinearVirtual:
      return ("NotifyNonlinearVirtual");

    case NotifyPointer:
      return ("NotifyPointer");

    case NotifyPointerRoot:
      return ("NotifyPointerRoot");

    case NotifyDetailNone:
      return ("NotifyDetailNone");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a configure detail */
static char* ConfigureDetail(int detail) {
  switch (detail) {
    case Above:
      return ("Above");

    case Below:
      return ("Below");

    case TopIf:
      return ("TopIf");

    case BottomIf:
      return ("BottomIf");

    case Opposite:
      return ("Opposite");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a grab mode */
static char* GrabMode(int mode) {
  switch (mode) {
    case NotifyNormal:
      return ("NotifyNormal");

    case NotifyGrab:
      return ("NotifyGrab");

    case NotifyUngrab:
      return ("NotifyUngrab");

    case NotifyWhileGrabbed:
      return ("NotifyWhileGrabbed");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a mapping request */
static char* MappingRequest(int request) {
  switch (request) {
    case MappingModifier:
      return ("MappingModifier");

    case MappingKeyboard:
      return ("MappingKeyboard");

    case MappingPointer:
      return ("MappingPointer");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a stacking order place */
static char* Place(int place) {
  switch (place) {
    case PlaceOnTop:
      return ("PlaceOnTop");

    case PlaceOnBottom:
      return ("PlaceOnBottom");

    default:
      return ("?");
  }
}

/* Returns the string equivalent of a major code */
static char* MajorCode(int code) {
  static char buffer[32];

  switch (code) {
    case X_CopyArea:
      return ("X_CopyArea");

    case X_CopyPlane:
      return ("X_CopyPlane");

    default:
      sprintf(buffer, "0x%x", code);
      return (buffer);
  }
}

/* Returns the string equivalent the keycode contained in the key event */
static char* Keycode(XKeyEvent* ev) {
  static char buffer[256];
  KeySym keysym_str;
  char* keysym_name;
  char string[256];

  XLookupString(ev, string, 64, &keysym_str, NULL);

  if (keysym_str == NoSymbol)
    keysym_name = "NoSymbol";
  else if (!(keysym_name = XKeysymToString(keysym_str)))
    keysym_name = "(no name)";
  sprintf(
    buffer,
    "%u (keysym 0x%x \"%s\")",
    (int)ev->keycode,
    (int)keysym_str,
    keysym_name);
  return (buffer);
}

/* Returns the string equivalent of an atom or "None"*/
static char* AtomName(Display* dpy, Atom atom) {
  static char buffer[256];
  char* atom_name;

  if (atom == None)
    return ("None");

  atom_name = XGetAtomName(dpy, atom);
  strncpy(buffer, atom_name, 256);
  XFree(atom_name);
  return (buffer);
}

/******************************************************************************/
/**** Routines to print out readable values for the field of various events ***/
/******************************************************************************/

static void VerbMotion(XMotionEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("root=0x%x%s", (int)ev->root, sep);
  printf("subwindow=0x%x%s", (int)ev->subwindow, sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("x_root=%d y_root=%d%s", ev->x_root, ev->y_root, sep);
  printf("state=%s%s", ButtonAndOrModifierState(ev->state), sep);
  printf("is_hint=%s%s", IsHint(ev->is_hint), sep);
  printf("same_screen=%s\n", TorF(ev->same_screen));
}

static void VerbButton(XButtonEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("root=0x%x%s", (int)ev->root, sep);
  printf("subwindow=0x%x%s", (int)ev->subwindow, sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("x_root=%d y_root=%d%s", ev->x_root, ev->y_root, sep);
  printf("state=%s%s", ButtonAndOrModifierState(ev->state), sep);
  printf("button=%s%s", ButtonAndOrModifierState(ev->button), sep);
  printf("same_screen=%s\n", TorF(ev->same_screen));
}

static void VerbColormap(XColormapEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("colormap=%s%s", MaybeNone(ev->colormap), sep);
  printf("new=%s%s", TorF(ev->new), sep);
  printf("state=%s\n", ColormapState(ev->state));
}

static void VerbCrossing(XCrossingEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("root=0x%x%s", (int)ev->root, sep);
  printf("subwindow=0x%x%s", (int)ev->subwindow, sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("x_root=%d y_root=%d%s", ev->x_root, ev->y_root, sep);
  printf("mode=%s%s", GrabMode(ev->mode), sep);
  printf("detail=%s%s", CrossingDetail(ev->detail), sep);
  printf("same_screen=%s%s", TorF(ev->same_screen), sep);
  printf("focus=%s%s", TorF(ev->focus), sep);
  printf("state=%s\n", ButtonAndOrModifierState(ev->state));
}

static void VerbExpose(XExposeEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("width=%d height=%d%s", ev->width, ev->height, sep);
  printf("count=%d\n", ev->count);
}

static void VerbGraphicsExpose(XGraphicsExposeEvent* ev) {
  printf("drawable=0x%x%s", (int)ev->drawable, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("width=%d height=%d%s", ev->width, ev->height, sep);
  printf("major_code=%s%s", MajorCode(ev->major_code), sep);
  printf("minor_code=%d\n", ev->minor_code);
}

static void VerbNoExpose(XNoExposeEvent* ev) {
  printf("drawable=0x%x%s", (int)ev->drawable, sep);
  printf("major_code=%s%s", MajorCode(ev->major_code), sep);
  printf("minor_code=%d\n", ev->minor_code);
}

static void VerbFocus(XFocusChangeEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("mode=%s%s", GrabMode(ev->mode), sep);
  printf("detail=%s\n", FocusChangeDetail(ev->detail));
}

static void VerbKeymap(XKeymapEvent* ev) {
  int i;

  printf("window=0x%x%s", (int)ev->window, sep);
  printf("key_vector=");
  for (i = 0; i < 32; i++)
    printf("%02x", ev->key_vector[i]);
  printf("\n");
}

static void VerbKey(XKeyEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("root=0x%x%s", (int)ev->root, sep);
  if (ev->subwindow)
    printf("subwindow=0x%x%s", (int)ev->subwindow, sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("[%d,%d]%s", ev->x, ev->y, sep);
  printf("root=[%d,%d]%s", ev->x_root, ev->y_root, sep);
  if (ev->state)
    printf("state=%s%s", ButtonAndOrModifierState(ev->state), sep);
  printf("keycode=%s%s", Keycode(ev), sep);
  if (!ev->same_screen)
    printf("!same_screen", TorF(ev->same_screen));
  printf("\n");
  return;

  printf("window=0x%x%s", (int)ev->window, sep);
  printf("root=0x%x%s", (int)ev->root, sep);
  printf("subwindow=0x%x%s", (int)ev->subwindow, sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("x_root=%d y_root=%d%s", ev->x_root, ev->y_root, sep);
  printf("state=%s%s", ButtonAndOrModifierState(ev->state), sep);
  printf("keycode=%s%s", Keycode(ev), sep);
  printf("same_screen=%s\n", TorF(ev->same_screen));
}

static void VerbProperty(XPropertyEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("atom=%s%s", AtomName(ev->display, ev->atom), sep);
  printf("time=%s%s", ServerTime(ev->time), sep);
  printf("state=%s\n", PropertyState(ev->state));
}

static void VerbResizeRequest(XResizeRequestEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("width=%d height=%d\n", ev->width, ev->height);
}

static void VerbCirculate(XCirculateEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("place=%s\n", Place(ev->place));
}

static void VerbConfigure(XConfigureEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("width=%d height=%d%s", ev->width, ev->height, sep);
  printf("border_width=%d%s", ev->border_width, sep);
  printf("above=%s%s", MaybeNone(ev->above), sep);
  printf("override_redirect=%s\n", TorF(ev->override_redirect));
}

static void VerbCreateWindow(XCreateWindowEvent* ev) {
  printf("parent=0x%x%s", (int)ev->parent, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("width=%d height=%d%s", ev->width, ev->height, sep);
  printf("border_width=%d%s", ev->border_width, sep);
  printf("override_redirect=%s\n", TorF(ev->override_redirect));
}

static void VerbDestroyWindow(XDestroyWindowEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x\n", (int)ev->window);
}

static void VerbGravity(XGravityEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("x=%d y=%d\n", ev->x, ev->y);
}

static void VerbMap(XMapEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("override_redirect=%s\n", TorF(ev->override_redirect));
}

static void VerbReparent(XReparentEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("parent=0x%x%s", (int)ev->parent, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("override_redirect=%s\n", TorF(ev->override_redirect));
}

static void VerbUnmap(XUnmapEvent* ev) {
  printf("event=0x%x%s", (int)ev->event, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("from_configure=%s\n", TorF(ev->from_configure));
}

static void VerbCirculateRequest(XCirculateRequestEvent* ev) {
  printf("parent=0x%x%s", (int)ev->parent, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("place=%s\n", Place(ev->place));
}

static void VerbConfigureRequest(XConfigureRequestEvent* ev) {
  printf("parent=0x%x%s", (int)ev->parent, sep);
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("x=%d y=%d%s", ev->x, ev->y, sep);
  printf("width=%d height=%d%s", ev->width, ev->height, sep);
  printf("border_width=%d%s", ev->border_width, sep);
  printf("above=%s%s", MaybeNone(ev->above), sep);
  printf("detail=%s%s", ConfigureDetail(ev->detail), sep);
  printf("value_mask=%s\n", ConfigureValueMask(ev->value_mask));
}

static void VerbMapRequest(XMapRequestEvent* ev) {
  printf("parent=0x%x%s", (int)ev->parent, sep);
  printf("window=0x%x\n", (int)ev->window);
}

static void VerbClient(XClientMessageEvent* ev) {
  int i;

  printf("window=0x%x%s", (int)ev->window, sep);
  printf("message_type=%s%s", AtomName(ev->display, ev->message_type), sep);
  printf("format=%d\n", ev->format);
  printf("data (shown as longs)=");
  for (i = 0; i < 5; i++)
    printf(" 0x%08lx", ev->data.l[i]);
  printf("\n");
}

static void VerbMapping(XMappingEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("request=%s%s", MappingRequest(ev->request), sep);
  printf("first_keycode=0x%x%s", ev->first_keycode, sep);
  printf("count=0x%x\n", ev->count);
}

static void VerbSelectionClear(XSelectionClearEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("selection=%s%s", AtomName(ev->display, ev->selection), sep);
  printf("time=%s\n", ServerTime(ev->time));
}

static void VerbSelection(XSelectionEvent* ev) {
  printf("requestor=0x%x%s", (int)ev->requestor, sep);
  printf("selection=%s%s", AtomName(ev->display, ev->selection), sep);
  printf("target=%s%s", AtomName(ev->display, ev->target), sep);
  printf("property=%s%s", AtomName(ev->display, ev->property), sep);
  printf("time=%s\n", ServerTime(ev->time));
}

static void VerbSelectionRequest(XSelectionRequestEvent* ev) {
  printf("owner=0x%x%s", (int)ev->owner, sep);
  printf("requestor=0x%x%s", (int)ev->requestor, sep);
  printf("selection=%s%s", AtomName(ev->display, ev->selection), sep);
  printf("target=%s%s", AtomName(ev->display, ev->target), sep);
  printf("property=%s%s", AtomName(ev->display, ev->property), sep);
  printf("time=%s\n", ServerTime(ev->time));
}

static void VerbVisibility(XVisibilityEvent* ev) {
  printf("window=0x%x%s", (int)ev->window, sep);
  printf("state=%s\n", VisibilityState(ev->state));
}

/******************************************************************************/
/************ Return the string representation for type of an event ***********/
/******************************************************************************/

char* eventtype(XEvent* ev) {
  static char buffer[20];

  switch (ev->type) {
    case KeyPress:
      return ("KeyPress");
    case KeyRelease:
      return ("KeyRelease");
    case ButtonPress:
      return ("ButtonPress");
    case ButtonRelease:
      return ("ButtonRelease");
    case MotionNotify:
      return ("MotionNotify");
    case EnterNotify:
      return ("EnterNotify");
    case LeaveNotify:
      return ("LeaveNotify");
    case FocusIn:
      return ("FocusIn");
    case FocusOut:
      return ("FocusOut");
    case KeymapNotify:
      return ("KeymapNotify");
    case Expose:
      return ("Expose");
    case GraphicsExpose:
      return ("GraphicsExpose");
    case NoExpose:
      return ("NoExpose");
    case VisibilityNotify:
      return ("VisibilityNotify");
    case CreateNotify:
      return ("CreateNotify");
    case DestroyNotify:
      return ("DestroyNotify");
    case UnmapNotify:
      return ("UnmapNotify");
    case MapNotify:
      return ("MapNotify");
    case MapRequest:
      return ("MapRequest");
    case ReparentNotify:
      return ("ReparentNotify");
    case ConfigureNotify:
      return ("ConfigureNotify");
    case ConfigureRequest:
      return ("ConfigureRequest");
    case GravityNotify:
      return ("GravityNotify");
    case ResizeRequest:
      return ("ResizeRequest");
    case CirculateNotify:
      return ("CirculateNotify");
    case CirculateRequest:
      return ("CirculateRequest");
    case PropertyNotify:
      return ("PropertyNotify");
    case SelectionClear:
      return ("SelectionClear");
    case SelectionRequest:
      return ("SelectionRequest");
    case SelectionNotify:
      return ("SelectionNotify");
    case ColormapNotify:
      return ("ColormapNotify");
    case ClientMessage:
      return ("ClientMessage");
    case MappingNotify:
      return ("MappingNotify");
  }
  sprintf(buffer, "%d", ev->type);
  return buffer;
}

/******************************************************************************/
/**************** Print the values of all fields for any event ****************/
/******************************************************************************/

void printevent(XEvent* e) {
  XAnyEvent* ev = (void*)e;

  printf("%3ld %-20s ", ev->serial, eventtype(e));
  if (ev->send_event)
    printf("(sendevent) ");
  if (0) {
    printf("type=%s%s", eventtype(e), sep);
    printf("serial=%lu%s", ev->serial, sep);
    printf("send_event=%s%s", TorF(ev->send_event), sep);
    printf("display=0x%p%s", ev->display, sep);
  }

  switch (ev->type) {
    case MotionNotify:
      VerbMotion((void*)ev);
      break;

    case ButtonPress:
    case ButtonRelease:
      VerbButton((void*)ev);
      break;

    case ColormapNotify:
      VerbColormap((void*)ev);
      break;

    case EnterNotify:
    case LeaveNotify:
      VerbCrossing((void*)ev);
      break;

    case Expose:
      VerbExpose((void*)ev);
      break;

    case GraphicsExpose:
      VerbGraphicsExpose((void*)ev);
      break;

    case NoExpose:
      VerbNoExpose((void*)ev);
      break;

    case FocusIn:
    case FocusOut:
      VerbFocus((void*)ev);
      break;

    case KeymapNotify:
      VerbKeymap((void*)ev);
      break;

    case KeyPress:
    case KeyRelease:
      VerbKey((void*)ev);
      break;

    case PropertyNotify:
      VerbProperty((void*)ev);
      break;

    case ResizeRequest:
      VerbResizeRequest((void*)ev);
      break;

    case CirculateNotify:
      VerbCirculate((void*)ev);
      break;

    case ConfigureNotify:
      VerbConfigure((void*)ev);
      break;

    case CreateNotify:
      VerbCreateWindow((void*)ev);
      break;

    case DestroyNotify:
      VerbDestroyWindow((void*)ev);
      break;

    case GravityNotify:
      VerbGravity((void*)ev);
      break;

    case MapNotify:
      VerbMap((void*)ev);
      break;

    case ReparentNotify:
      VerbReparent((void*)ev);
      break;

    case UnmapNotify:
      VerbUnmap((void*)ev);
      break;

    case CirculateRequest:
      VerbCirculateRequest((void*)ev);
      break;

    case ConfigureRequest:
      VerbConfigureRequest((void*)ev);
      break;

    case MapRequest:
      VerbMapRequest((void*)ev);
      break;

    case ClientMessage:
      VerbClient((void*)ev);
      break;

    case MappingNotify:
      VerbMapping((void*)ev);
      break;

    case SelectionClear:
      VerbSelectionClear((void*)ev);
      break;

    case SelectionNotify:
      VerbSelection((void*)ev);
      break;

    case SelectionRequest:
      VerbSelectionRequest((void*)ev);
      break;

    case VisibilityNotify:
      VerbVisibility((void*)ev);
      break;
  }
}