-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx11.nelua
7118 lines (7118 loc) · 336 KB
/
x11.nelua
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
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
global Mask: type = @culong
global Atom: type = @culong
global VisualID: type = @culong
global Time: type = @culong
global Window: type = @culong
global Drawable: type = @culong
global Font: type = @culong
global Pixmap: type = @culong
global Cursor: type = @culong
global Colormap: type = @culong
global GContext: type = @culong
global KeySym: type = @culong
global KeyCode: type = @cuchar
global XPointer: type = @cstring
global XExtData: type <cimport,nodecl> = @record{
number: cint,
next: *XExtData,
free_private: function(*XExtData): cint,
private_data: XPointer
}
global XExtCodes: type <cimport,nodecl> = @record{
extension: cint,
major_opcode: cint,
first_event: cint,
first_error: cint
}
global XPixmapFormatValues: type <cimport,nodecl> = @record{
depth: cint,
bits_per_pixel: cint,
scanline_pad: cint
}
global XGCValues: type <cimport,nodecl> = @record{
Function: cint,
plane_mask: culong,
foreground: culong,
background: culong,
line_width: cint,
line_style: cint,
cap_style: cint,
join_style: cint,
fill_style: cint,
fill_rule: cint,
arc_mode: cint,
tile: Pixmap,
stipple: Pixmap,
ts_x_origin: cint,
ts_y_origin: cint,
font: Font,
subwindow_mode: cint,
graphics_exposures: cint,
clip_x_origin: cint,
clip_y_origin: cint,
clip_mask: Pixmap,
dash_offset: cint,
dashes: cchar
}
global GC: type = @pointer
global Visual: type <cimport,nodecl> = @record{
ext_data: *XExtData,
visualid: VisualID,
class: cint,
red_mask: culong,
green_mask: culong,
blue_mask: culong,
bits_per_rgb: cint,
map_entries: cint
}
global Depth: type <cimport,nodecl> = @record{
depth: cint,
nvisuals: cint,
visuals: *Visual
}
global Screen: type <cimport,nodecl> = @record{
ext_data: *XExtData,
display: pointer,
root: Window,
width: cint,
height: cint,
mwidth: cint,
mheight: cint,
ndepths: cint,
depths: *Depth,
root_depth: cint,
root_visual: *Visual,
default_gc: GC,
cmap: Colormap,
white_pixel: culong,
black_pixel: culong,
max_maps: cint,
min_maps: cint,
backing_store: cint,
save_unders: cint,
root_input_mask: clong
}
global ScreenFormat: type <cimport,nodecl> = @record{
ext_data: *XExtData,
depth: cint,
bits_per_pixel: cint,
scanline_pad: cint
}
global XSetWindowAttributes: type <cimport,nodecl> = @record{
background_pixmap: Pixmap,
background_pixel: culong,
border_pixmap: Pixmap,
border_pixel: culong,
bit_gravity: cint,
win_gravity: cint,
backing_store: cint,
backing_planes: culong,
backing_pixel: culong,
save_under: cint,
event_mask: clong,
do_not_propagate_mask: clong,
override_redirect: cint,
colormap: Colormap,
cursor: Cursor
}
global XWindowAttributes: type <cimport,nodecl> = @record{
x: cint,
y: cint,
width: cint,
height: cint,
border_width: cint,
depth: cint,
visual: *Visual,
root: Window,
class: cint,
bit_gravity: cint,
win_gravity: cint,
backing_store: cint,
backing_planes: culong,
backing_pixel: culong,
save_under: cint,
colormap: Colormap,
map_installed: cint,
map_state: cint,
all_event_masks: clong,
your_event_mask: clong,
do_not_propagate_mask: clong,
override_redirect: cint,
screen: *Screen
}
global XHostAddress: type <cimport,nodecl> = @record{
family: cint,
length: cint,
address: cstring
}
global XServerInterpretedAddress: type <cimport,nodecl> = @record{
typelength: cint,
valuelength: cint,
type: cstring,
value: cstring
}
global XImage: type <cimport,nodecl,cincomplete> = @record{
width: cint,
height: cint,
xoffset: cint,
format: cint,
data: cstring,
byte_order: cint,
bitmap_unit: cint,
bitmap_bit_order: cint,
bitmap_pad: cint,
depth: cint,
bytes_per_line: cint,
bits_per_pixel: cint,
red_mask: culong,
green_mask: culong,
blue_mask: culong,
obdata: XPointer,
}
global XWindowChanges: type <cimport,nodecl> = @record{
x: cint,
y: cint,
width: cint,
height: cint,
border_width: cint,
sibling: Window,
stack_mode: cint
}
global XColor: type <cimport,nodecl> = @record{
pixel: culong,
red: cushort,
green: cushort,
blue: cushort,
flags: cchar,
pad: cchar
}
global XSegment: type <cimport,nodecl> = @record{
x1: cshort,
y1: cshort,
x2: cshort,
y2: cshort
}
global XPoint: type <cimport,nodecl> = @record{
x: cshort,
y: cshort
}
global XRectangle: type <cimport,nodecl> = @record{
x: cshort,
y: cshort,
width: cushort,
height: cushort
}
global XArc: type <cimport,nodecl> = @record{
x: cshort,
y: cshort,
width: cushort,
height: cushort,
angle1: cshort,
angle2: cshort
}
global XKeyboardControl: type <cimport,nodecl> = @record{
key_click_percent: cint,
bell_percent: cint,
bell_pitch: cint,
bell_duration: cint,
led: cint,
led_mode: cint,
key: cint,
auto_repeat_mode: cint
}
global XKeyboardState: type <cimport,nodecl> = @record{
key_click_percent: cint,
bell_percent: cint,
bell_pitch: cuint,
bell_duration: cuint,
led_mask: culong,
global_auto_repeat: cint,
auto_repeats: [32]cchar
}
global XTimeCoord: type <cimport,nodecl> = @record{
time: Time,
x: cshort,
y: cshort
}
global XModifierKeymap: type <cimport,nodecl> = @record{
max_keypermod: cint,
modifiermap: *KeyCode
}
global Display: type <cimport,nodecl,forwarddecl> = @record{}
global XKeyEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
root: Window,
subwindow: Window,
time: Time,
x: cint,
y: cint,
x_root: cint,
y_root: cint,
state: cuint,
keycode: cuint,
same_screen: cint
}
global XKeyPressedEvent: type = @XKeyEvent
global XKeyReleasedEvent: type = @XKeyEvent
global XButtonEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
root: Window,
subwindow: Window,
time: Time,
x: cint,
y: cint,
x_root: cint,
y_root: cint,
state: cuint,
button: cuint,
same_screen: cint
}
global XButtonPressedEvent: type = @XButtonEvent
global XButtonReleasedEvent: type = @XButtonEvent
global XMotionEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
root: Window,
subwindow: Window,
time: Time,
x: cint,
y: cint,
x_root: cint,
y_root: cint,
state: cuint,
is_hint: cchar,
same_screen: cint
}
global XPointerMovedEvent: type = @XMotionEvent
global XCrossingEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
root: Window,
subwindow: Window,
time: Time,
x: cint,
y: cint,
x_root: cint,
y_root: cint,
mode: cint,
detail: cint,
same_screen: cint,
focus: cint,
state: cuint
}
global XEnterWindowEvent: type = @XCrossingEvent
global XLeaveWindowEvent: type = @XCrossingEvent
global XFocusChangeEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
mode: cint,
detail: cint
}
global XFocusInEvent: type = @XFocusChangeEvent
global XFocusOutEvent: type = @XFocusChangeEvent
global XKeymapEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
key_vector: [32]cchar
}
global XExposeEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
x: cint,
y: cint,
width: cint,
height: cint,
count: cint
}
global XGraphicsExposeEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
drawable: Drawable,
x: cint,
y: cint,
width: cint,
height: cint,
count: cint,
major_code: cint,
minor_code: cint
}
global XNoExposeEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
drawable: Drawable,
major_code: cint,
minor_code: cint
}
global XVisibilityEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
state: cint
}
global XCreateWindowEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
parent: Window,
window: Window,
x: cint,
y: cint,
width: cint,
height: cint,
border_width: cint,
override_redirect: cint
}
global XDestroyWindowEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window
}
global XUnmapEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
from_configure: cint
}
global XMapEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
override_redirect: cint
}
global XMapRequestEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
parent: Window,
window: Window
}
global XReparentEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
parent: Window,
x: cint,
y: cint,
override_redirect: cint
}
global XConfigureEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
x: cint,
y: cint,
width: cint,
height: cint,
border_width: cint,
above: Window,
override_redirect: cint
}
global XGravityEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
x: cint,
y: cint
}
global XResizeRequestEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
width: cint,
height: cint
}
global XConfigureRequestEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
parent: Window,
window: Window,
x: cint,
y: cint,
width: cint,
height: cint,
border_width: cint,
above: Window,
detail: cint,
value_mask: culong
}
global XCirculateEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
event: Window,
window: Window,
place: cint
}
global XCirculateRequestEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
parent: Window,
window: Window,
place: cint
}
global XPropertyEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
atom: Atom,
time: Time,
state: cint
}
global XSelectionClearEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
selection: Atom,
time: Time
}
global XSelectionRequestEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
owner: Window,
requestor: Window,
selection: Atom,
target: Atom,
property: Atom,
time: Time
}
global XSelectionEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
requestor: Window,
selection: Atom,
target: Atom,
property: Atom,
time: Time
}
global XColormapEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
colormap: Colormap,
new: cint,
state: cint
}
global XClientMessageEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
message_type: Atom,
format: cint,
data: union{
b: [20]cchar,
s: [10]cshort,
l: [5]clong
}
}
global XMappingEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window,
request: cint,
first_keycode: cint,
count: cint
}
global XErrorEvent: type <cimport,nodecl> = @record{
type: cint,
display: *Display,
resourceid: culong,
serial: culong,
error_code: cuchar,
request_code: cuchar,
minor_code: cuchar
}
global XAnyEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
window: Window
}
global XGenericEvent: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
extension: cint,
evtype: cint
}
global XGenericEventCookie: type <cimport,nodecl> = @record{
type: cint,
serial: culong,
send_event: cint,
display: *Display,
extension: cint,
evtype: cint,
cookie: cuint,
data: pointer
}
global XEvent: type <cimport,nodecl> = @union{
type: cint,
xany: XAnyEvent,
xkey: XKeyEvent,
xbutton: XButtonEvent,
xmotion: XMotionEvent,
xcrossing: XCrossingEvent,
xfocus: XFocusChangeEvent,
xexpose: XExposeEvent,
xgraphicsexpose: XGraphicsExposeEvent,
xnoexpose: XNoExposeEvent,
xvisibility: XVisibilityEvent,
xcreatewindow: XCreateWindowEvent,
xdestroywindow: XDestroyWindowEvent,
xunmap: XUnmapEvent,
xmap: XMapEvent,
xmaprequest: XMapRequestEvent,
xreparent: XReparentEvent,
xconfigure: XConfigureEvent,
xgravity: XGravityEvent,
xresizerequest: XResizeRequestEvent,
xconfigurerequest: XConfigureRequestEvent,
xcirculate: XCirculateEvent,
xcirculaterequest: XCirculateRequestEvent,
xproperty: XPropertyEvent,
xselectionclear: XSelectionClearEvent,
xselectionrequest: XSelectionRequestEvent,
xselection: XSelectionEvent,
xcolormap: XColormapEvent,
xclient: XClientMessageEvent,
xmapping: XMappingEvent,
xerror: XErrorEvent,
xkeymap: XKeymapEvent,
xgeneric: XGenericEvent,
xcookie: XGenericEventCookie,
pad: [24]clong
}
global XCharStruct: type <cimport,nodecl> = @record{
lbearing: cshort,
rbearing: cshort,
width: cshort,
ascent: cshort,
descent: cshort,
attributes: cushort
}
global XFontProp: type <cimport,nodecl> = @record{
name: Atom,
card32: culong
}
global XFontStruct: type <cimport,nodecl> = @record{
ext_data: *XExtData,
fid: Font,
direction: cuint,
min_char_or_byte2: cuint,
max_char_or_byte2: cuint,
min_byte1: cuint,
max_byte1: cuint,
all_chars_exist: cint,
default_char: cuint,
n_properties: cint,
properties: *XFontProp,
min_bounds: XCharStruct,
max_bounds: XCharStruct,
per_char: *XCharStruct,
ascent: cint,
descent: cint
}
global XTextItem: type <cimport,nodecl> = @record{
chars: cstring,
nchars: cint,
delta: cint,
font: Font
}
global XChar2b: type <cimport,nodecl> = @record{
byte1: cuchar,
byte2: cuchar
}
global XTextItem16: type <cimport,nodecl> = @record{
chars: *XChar2b,
nchars: cint,
delta: cint,
font: Font
}
global XEDataObject: type <cimport,nodecl> = @union{
display: *Display,
gc: GC,
visual: *Visual,
screen: *Screen,
pixmap_format: *ScreenFormat,
font: *XFontStruct
}
global XFontSetExtents: type <cimport,nodecl> = @record{
max_ink_extent: XRectangle,
max_logical_extent: XRectangle
}
global XOM: type = @pointer
global XOC: type = @pointer
global XFontSet: type = @pointer
global XmbTextItem: type <cimport,nodecl> = @record{
chars: cstring,
nchars: cint,
delta: cint,
font_set: XFontSet
}
global XwcTextItem: type <cimport,nodecl> = @record{
chars: *cwchar_t,
nchars: cint,
delta: cint,
font_set: XFontSet
}
global XOMCharSetList: type <cimport,nodecl> = @record{
charset_count: cint,
charset_list: *cstring
}
global XOrientation: type <cimport,nodecl,using> = @enum(cint){
XOMOrientation_LTR_TTB = 0,
XOMOrientation_RTL_TTB = 1,
XOMOrientation_TTB_LTR = 2,
XOMOrientation_TTB_RTL = 3,
XOMOrientation_Context = 4
}
global XOMOrientation: type <cimport,nodecl> = @record{
num_orientation: cint,
orientation: *XOrientation
}
global XOMFontInfo: type <cimport,nodecl> = @record{
num_font: cint,
font_struct_list: **XFontStruct,
font_name_list: *cstring
}
global XIM: type = @pointer
global XIC: type = @pointer
global XIMProc: type <cimport,nodecl> = @function(XIM, XPointer, XPointer): void
global XICProc: type <cimport,nodecl> = @function(XIC, XPointer, XPointer): cint
global XIDProc: type <cimport,nodecl> = @function(*Display, XPointer, XPointer): void
global XIMStyles: type <cimport,nodecl> = @record{
count_styles: cushort,
supported_styles: *culong
}
global XVaNestedList: type = @pointer
global XIMCallback: type <cimport,nodecl> = @record{
client_data: XPointer,
callback: XIMProc
}
global XICCallback: type <cimport,nodecl> = @record{
client_data: XPointer,
callback: XICProc
}
global XIMText: type <cimport,nodecl> = @record{
length: cushort,
feedback: *culong,
encoding_is_wchar: cint,
string: union{
multi_byte: cstring,
wide_char: *cwchar_t
}
}
global XIMPreeditStateNotifyCallbackStruct: type <cimport,nodecl> = @record{
state: culong
}
global XIMStringConversionText: type <cimport,nodecl> = @record{
length: cushort,
feedback: *culong,
encoding_is_wchar: cint,
string: union{
mbs: cstring,
wcs: *cwchar_t
}
}
global XIMCaretDirection: type <cimport,nodecl,using> = @enum(cint){
XIMForwardChar = 0,
XIMBackwardChar = 1,
XIMForwardWord = 2,
XIMBackwardWord = 3,
XIMCaretUp = 4,
XIMCaretDown = 5,
XIMNextLine = 6,
XIMPreviousLine = 7,
XIMLineStart = 8,
XIMLineEnd = 9,
XIMAbsolutePosition = 10,
XIMDontChange = 11
}
global XIMStringConversionCallbackStruct: type <cimport,nodecl> = @record{
position: cushort,
direction: XIMCaretDirection,
operation: cushort,
factor: cushort,
text: *XIMStringConversionText
}
global XIMPreeditDrawCallbackStruct: type <cimport,nodecl> = @record{
caret: cint,
chg_first: cint,
chg_length: cint,
text: *XIMText
}
global XIMCaretStyle: type <cimport,nodecl,using> = @enum(cint){
XIMIsInvisible = 0,
XIMIsPrimary = 1,
XIMIsSecondary = 2
}
global XIMPreeditCaretCallbackStruct: type <cimport,nodecl> = @record{
position: cint,
direction: XIMCaretDirection,
style: XIMCaretStyle
}
global XIMStatusDataType: type <cimport,nodecl,using> = @enum(cint){
XIMTextType = 0,
XIMBitmapType = 1
}
global XIMStatusDrawCallbackStruct: type <cimport,nodecl> = @record{
type: XIMStatusDataType,
data: union{
text: *XIMText,
bitmap: Pixmap
}
}
global XIMHotKeyTrigger: type <cimport,nodecl> = @record{
keysym: KeySym,
modifier: cint,
modifier_mask: cint
}
global XIMHotKeyTriggers: type <cimport,nodecl> = @record{
num_hot_key: cint,
key: *XIMHotKeyTrigger
}
global XIMValuesList: type <cimport,nodecl> = @record{
count_values: cushort,
supported_values: *cstring
}
global function XLoadQueryFont(a1: *Display, a2: cstring): *XFontStruct <cimport,nodecl> end
global function XQueryFont(a1: *Display, a2: culong): *XFontStruct <cimport,nodecl> end
global function XGetMotionEvents(a1: *Display, a2: Window, a3: Time, a4: Time, a5: *cint): *XTimeCoord <cimport,nodecl> end
global function XDeleteModifiermapEntry(a1: *XModifierKeymap, a2: KeyCode, a3: cint): *XModifierKeymap <cimport,nodecl> end
global function XGetModifierMapping(a1: *Display): *XModifierKeymap <cimport,nodecl> end
global function XInsertModifiermapEntry(a1: *XModifierKeymap, a2: KeyCode, a3: cint): *XModifierKeymap <cimport,nodecl> end
global function XNewModifiermap(a1: cint): *XModifierKeymap <cimport,nodecl> end
global function XCreateImage(a1: *Display, a2: *Visual, a3: cuint, a4: cint, a5: cint, a6: cstring, a7: cuint, a8: cuint, a9: cint, a10: cint): *XImage <cimport,nodecl> end
global function XInitImage(a1: *XImage): cint <cimport,nodecl> end
global function XGetImage(a1: *Display, a2: Drawable, a3: cint, a4: cint, a5: cuint, a6: cuint, a7: culong, a8: cint): *XImage <cimport,nodecl> end
global function XGetSubImage(a1: *Display, a2: Drawable, a3: cint, a4: cint, a5: cuint, a6: cuint, a7: culong, a8: cint, a9: *XImage, a10: cint, a11: cint): *XImage <cimport,nodecl> end
global function XOpenDisplay(a1: cstring): *Display <cimport,nodecl> end
global function XrmInitialize(): void <cimport,nodecl> end
global function XFetchBytes(a1: *Display, a2: *cint): cstring <cimport,nodecl> end
global function XFetchBuffer(a1: *Display, a2: *cint, a3: cint): cstring <cimport,nodecl> end
global function XGetAtomName(a1: *Display, a2: Atom): cstring <cimport,nodecl> end
global function XGetAtomNames(a1: *Display, a2: *Atom, a3: cint, a4: *cstring): cint <cimport,nodecl> end
global function XGetDefault(a1: *Display, a2: cstring, a3: cstring): cstring <cimport,nodecl> end
global function XDisplayName(a1: cstring): cstring <cimport,nodecl> end
global function XKeysymToString(a1: KeySym): cstring <cimport,nodecl> end
global function XSynchronize(a1: *Display, a2: cint): function(*Display): cint <cimport,nodecl> end
global function XSetAfterFunction(a1: *Display, a2: function(*Display): cint): function(*Display): cint <cimport,nodecl> end
global function XInternAtom(a1: *Display, a2: cstring, a3: cint): Atom <cimport,nodecl> end
global function XInternAtoms(a1: *Display, a2: *cstring, a3: cint, a4: cint, a5: *Atom): cint <cimport,nodecl> end
global function XCopyColormapAndFree(a1: *Display, a2: Colormap): Colormap <cimport,nodecl> end
global function XCreateColormap(a1: *Display, a2: Window, a3: *Visual, a4: cint): Colormap <cimport,nodecl> end
global function XCreatePixmapCursor(a1: *Display, a2: Pixmap, a3: Pixmap, a4: *XColor, a5: *XColor, a6: cuint, a7: cuint): Cursor <cimport,nodecl> end
global function XCreateGlyphCursor(a1: *Display, a2: Font, a3: Font, a4: cuint, a5: cuint, a6: *XColor, a7: *XColor): Cursor <cimport,nodecl> end
global function XCreateFontCursor(a1: *Display, a2: cuint): Cursor <cimport,nodecl> end
global function XLoadFont(a1: *Display, a2: cstring): Font <cimport,nodecl> end
global function XCreateGC(a1: *Display, a2: Drawable, a3: culong, a4: *XGCValues): GC <cimport,nodecl> end
global function XGContextFromGC(a1: GC): GContext <cimport,nodecl> end
global function XFlushGC(a1: *Display, a2: GC): void <cimport,nodecl> end
global function XCreatePixmap(a1: *Display, a2: Drawable, a3: cuint, a4: cuint, a5: cuint): Pixmap <cimport,nodecl> end
global function XCreateBitmapFromData(a1: *Display, a2: Drawable, a3: cstring, a4: cuint, a5: cuint): Pixmap <cimport,nodecl> end
global function XCreatePixmapFromBitmapData(a1: *Display, a2: Drawable, a3: cstring, a4: cuint, a5: cuint, a6: culong, a7: culong, a8: cuint): Pixmap <cimport,nodecl> end
global function XCreateSimpleWindow(a1: *Display, a2: Window, a3: cint, a4: cint, a5: cuint, a6: cuint, a7: cuint, a8: culong, a9: culong): Window <cimport,nodecl> end
global function XGetSelectionOwner(a1: *Display, a2: Atom): Window <cimport,nodecl> end
global function XCreateWindow(a1: *Display, a2: Window, a3: cint, a4: cint, a5: cuint, a6: cuint, a7: cuint, a8: cint, a9: cuint, a10: *Visual, a11: culong, a12: *XSetWindowAttributes): Window <cimport,nodecl> end
global function XListInstalledColormaps(a1: *Display, a2: Window, a3: *cint): *Colormap <cimport,nodecl> end
global function XListFonts(a1: *Display, a2: cstring, a3: cint, a4: *cint): *cstring <cimport,nodecl> end
global function XListFontsWithInfo(a1: *Display, a2: cstring, a3: cint, a4: *cint, a5: **XFontStruct): *cstring <cimport,nodecl> end
global function XGetFontPath(a1: *Display, a2: *cint): *cstring <cimport,nodecl> end
global function XListExtensions(a1: *Display, a2: *cint): *cstring <cimport,nodecl> end
global function XListProperties(a1: *Display, a2: Window, a3: *cint): *Atom <cimport,nodecl> end
global function XListHosts(a1: *Display, a2: *cint, a3: *cint): *XHostAddress <cimport,nodecl> end
global function XKeycodeToKeysym(a1: *Display, a2: KeyCode, a3: cint): KeySym <cimport,nodecl> end
global function XLookupKeysym(a1: *XKeyEvent, a2: cint): KeySym <cimport,nodecl> end
global function XGetKeyboardMapping(a1: *Display, a2: KeyCode, a3: cint, a4: *cint): *KeySym <cimport,nodecl> end
global function XStringToKeysym(a1: cstring): KeySym <cimport,nodecl> end
global function XMaxRequestSize(a1: *Display): clong <cimport,nodecl> end
global function XExtendedMaxRequestSize(a1: *Display): clong <cimport,nodecl> end
global function XResourceManagerString(a1: *Display): cstring <cimport,nodecl> end
global function XScreenResourceString(a1: *Screen): cstring <cimport,nodecl> end
global function XDisplayMotionBufferSize(a1: *Display): culong <cimport,nodecl> end
global function XVisualIDFromVisual(a1: *Visual): VisualID <cimport,nodecl> end
global function XInitThreads(): cint <cimport,nodecl> end
global function XFreeThreads(): cint <cimport,nodecl> end
global function XLockDisplay(a1: *Display): void <cimport,nodecl> end
global function XUnlockDisplay(a1: *Display): void <cimport,nodecl> end
global function XInitExtension(a1: *Display, a2: cstring): *XExtCodes <cimport,nodecl> end
global function XAddExtension(a1: *Display): *XExtCodes <cimport,nodecl> end
global function XFindOnExtensionList(a1: **XExtData, a2: cint): *XExtData <cimport,nodecl> end
global function XEHeadOfExtensionList(a1: XEDataObject): **XExtData <cimport,nodecl> end
global function XRootWindow(a1: *Display, a2: cint): Window <cimport,nodecl> end
global function XDefaultRootWindow(a1: *Display): Window <cimport,nodecl> end
global function XRootWindowOfScreen(a1: *Screen): Window <cimport,nodecl> end
global function XDefaultVisual(a1: *Display, a2: cint): *Visual <cimport,nodecl> end
global function XDefaultVisualOfScreen(a1: *Screen): *Visual <cimport,nodecl> end
global function XDefaultGC(a1: *Display, a2: cint): GC <cimport,nodecl> end
global function XDefaultGCOfScreen(a1: *Screen): GC <cimport,nodecl> end
global function XBlackPixel(a1: *Display, a2: cint): culong <cimport,nodecl> end
global function XWhitePixel(a1: *Display, a2: cint): culong <cimport,nodecl> end
global function XAllPlanes(): culong <cimport,nodecl> end
global function XBlackPixelOfScreen(a1: *Screen): culong <cimport,nodecl> end
global function XWhitePixelOfScreen(a1: *Screen): culong <cimport,nodecl> end
global function XNextRequest(a1: *Display): culong <cimport,nodecl> end
global function XLastKnownRequestProcessed(a1: *Display): culong <cimport,nodecl> end
global function XServerVendor(a1: *Display): cstring <cimport,nodecl> end
global function XDisplayString(a1: *Display): cstring <cimport,nodecl> end
global function XDefaultColormap(a1: *Display, a2: cint): Colormap <cimport,nodecl> end
global function XDefaultColormapOfScreen(a1: *Screen): Colormap <cimport,nodecl> end
global function XDisplayOfScreen(a1: *Screen): *Display <cimport,nodecl> end
global function XScreenOfDisplay(a1: *Display, a2: cint): *Screen <cimport,nodecl> end
global function XDefaultScreenOfDisplay(a1: *Display): *Screen <cimport,nodecl> end
global function XEventMaskOfScreen(a1: *Screen): clong <cimport,nodecl> end
global function XScreenNumberOfScreen(a1: *Screen): cint <cimport,nodecl> end
global XErrorHandler: type <cimport,nodecl> = @function(*Display, *XErrorEvent): cint
global function XSetErrorHandler(a1: XErrorHandler): XErrorHandler <cimport,nodecl> end
global XIOErrorHandler: type <cimport,nodecl> = @function(*Display): cint
global function XSetIOErrorHandler(a1: XIOErrorHandler): XIOErrorHandler <cimport,nodecl> end
global XIOErrorExitHandler: type <cimport,nodecl> = @function(*Display, pointer): void
global function XSetIOErrorExitHandler(a1: *Display, a2: XIOErrorExitHandler, a3: pointer): void <cimport,nodecl> end
global function XListPixmapFormats(a1: *Display, a2: *cint): *XPixmapFormatValues <cimport,nodecl> end
global function XListDepths(a1: *Display, a2: cint, a3: *cint): *cint <cimport,nodecl> end
global function XReconfigureWMWindow(a1: *Display, a2: Window, a3: cint, a4: cuint, a5: *XWindowChanges): cint <cimport,nodecl> end
global function XGetWMProtocols(a1: *Display, a2: Window, a3: **Atom, a4: *cint): cint <cimport,nodecl> end
global function XSetWMProtocols(a1: *Display, a2: Window, a3: *Atom, a4: cint): cint <cimport,nodecl> end
global function XIconifyWindow(a1: *Display, a2: Window, a3: cint): cint <cimport,nodecl> end
global function XWithdrawWindow(a1: *Display, a2: Window, a3: cint): cint <cimport,nodecl> end
global function XGetCommand(a1: *Display, a2: Window, a3: **cstring, a4: *cint): cint <cimport,nodecl> end
global function XGetWMColormapWindows(a1: *Display, a2: Window, a3: **Window, a4: *cint): cint <cimport,nodecl> end
global function XSetWMColormapWindows(a1: *Display, a2: Window, a3: *Window, a4: cint): cint <cimport,nodecl> end
global function XFreeStringList(a1: *cstring): void <cimport,nodecl> end
global function XSetTransientForHint(a1: *Display, a2: Window, a3: Window): cint <cimport,nodecl> end
global function XActivateScreenSaver(a1: *Display): cint <cimport,nodecl> end
global function XAddHost(a1: *Display, a2: *XHostAddress): cint <cimport,nodecl> end
global function XAddHosts(a1: *Display, a2: *XHostAddress, a3: cint): cint <cimport,nodecl> end
global function XAddToExtensionList(a1: **XExtData, a2: *XExtData): cint <cimport,nodecl> end
global function XAddToSaveSet(a1: *Display, a2: Window): cint <cimport,nodecl> end
global function XAllocColor(a1: *Display, a2: Colormap, a3: *XColor): cint <cimport,nodecl> end
global function XAllocColorCells(a1: *Display, a2: Colormap, a3: cint, a4: *culong, a5: cuint, a6: *culong, a7: cuint): cint <cimport,nodecl> end
global function XAllocColorPlanes(a1: *Display, a2: Colormap, a3: cint, a4: *culong, a5: cint, a6: cint, a7: cint, a8: cint, a9: *culong, a10: *culong, a11: *culong): cint <cimport,nodecl> end
global function XAllocNamedColor(a1: *Display, a2: Colormap, a3: cstring, a4: *XColor, a5: *XColor): cint <cimport,nodecl> end
global function XAllowEvents(a1: *Display, a2: cint, a3: Time): cint <cimport,nodecl> end
global function XAutoRepeatOff(a1: *Display): cint <cimport,nodecl> end
global function XAutoRepeatOn(a1: *Display): cint <cimport,nodecl> end
global function XBell(a1: *Display, a2: cint): cint <cimport,nodecl> end
global function XBitmapBitOrder(a1: *Display): cint <cimport,nodecl> end
global function XBitmapPad(a1: *Display): cint <cimport,nodecl> end
global function XBitmapUnit(a1: *Display): cint <cimport,nodecl> end
global function XCellsOfScreen(a1: *Screen): cint <cimport,nodecl> end
global function XChangeActivePointerGrab(a1: *Display, a2: cuint, a3: Cursor, a4: Time): cint <cimport,nodecl> end
global function XChangeGC(a1: *Display, a2: GC, a3: culong, a4: *XGCValues): cint <cimport,nodecl> end
global function XChangeKeyboardControl(a1: *Display, a2: culong, a3: *XKeyboardControl): cint <cimport,nodecl> end
global function XChangeKeyboardMapping(a1: *Display, a2: cint, a3: cint, a4: *KeySym, a5: cint): cint <cimport,nodecl> end
global function XChangePointerControl(a1: *Display, a2: cint, a3: cint, a4: cint, a5: cint, a6: cint): cint <cimport,nodecl> end
global function XChangeProperty(a1: *Display, a2: Window, a3: Atom, a4: Atom, a5: cint, a6: cint, a7: *cuchar, a8: cint): cint <cimport,nodecl> end
global function XChangeSaveSet(a1: *Display, a2: Window, a3: cint): cint <cimport,nodecl> end
global function XChangeWindowAttributes(a1: *Display, a2: Window, a3: culong, a4: *XSetWindowAttributes): cint <cimport,nodecl> end
global function XCheckIfEvent(a1: *Display, a2: *XEvent, a3: function(*Display, *XEvent, XPointer): cint, a4: XPointer): cint <cimport,nodecl> end
global function XCheckMaskEvent(a1: *Display, a2: clong, a3: *XEvent): cint <cimport,nodecl> end
global function XCheckTypedEvent(a1: *Display, a2: cint, a3: *XEvent): cint <cimport,nodecl> end
global function XCheckTypedWindowEvent(a1: *Display, a2: Window, a3: cint, a4: *XEvent): cint <cimport,nodecl> end
global function XCheckWindowEvent(a1: *Display, a2: Window, a3: clong, a4: *XEvent): cint <cimport,nodecl> end
global function XCirculateSubwindows(a1: *Display, a2: Window, a3: cint): cint <cimport,nodecl> end
global function XCirculateSubwindowsDown(a1: *Display, a2: Window): cint <cimport,nodecl> end
global function XCirculateSubwindowsUp(a1: *Display, a2: Window): cint <cimport,nodecl> end
global function XClearArea(a1: *Display, a2: Window, a3: cint, a4: cint, a5: cuint, a6: cuint, a7: cint): cint <cimport,nodecl> end
global function XClearWindow(a1: *Display, a2: Window): cint <cimport,nodecl> end
global function XCloseDisplay(a1: *Display): cint <cimport,nodecl> end
global function XConfigureWindow(a1: *Display, a2: Window, a3: cuint, a4: *XWindowChanges): cint <cimport,nodecl> end
global function XConnectionNumber(a1: *Display): cint <cimport,nodecl> end
global function XConvertSelection(a1: *Display, a2: Atom, a3: Atom, a4: Atom, a5: Window, a6: Time): cint <cimport,nodecl> end
global function XCopyArea(a1: *Display, a2: Drawable, a3: Drawable, a4: GC, a5: cint, a6: cint, a7: cuint, a8: cuint, a9: cint, a10: cint): cint <cimport,nodecl> end
global function XCopyGC(a1: *Display, a2: GC, a3: culong, a4: GC): cint <cimport,nodecl> end
global function XCopyPlane(a1: *Display, a2: Drawable, a3: Drawable, a4: GC, a5: cint, a6: cint, a7: cuint, a8: cuint, a9: cint, a10: cint, a11: culong): cint <cimport,nodecl> end
global function XDefaultDepth(a1: *Display, a2: cint): cint <cimport,nodecl> end
global function XDefaultDepthOfScreen(a1: *Screen): cint <cimport,nodecl> end
global function XDefaultScreen(a1: *Display): cint <cimport,nodecl> end
global function XDefineCursor(a1: *Display, a2: Window, a3: Cursor): cint <cimport,nodecl> end
global function XDeleteProperty(a1: *Display, a2: Window, a3: Atom): cint <cimport,nodecl> end