-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnuklear.nelua
1956 lines (1956 loc) · 98 KB
/
nuklear.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
##[[
cdefine 'NK_INCLUDE_FIXED_TYPES'
cdefine 'NK_INCLUDE_STANDARD_IO'
cdefine 'NK_INCLUDE_DEFAULT_ALLOCATOR'
cdefine 'NK_INCLUDE_VERTEX_BUFFER_OUTPUT'
cdefine 'NK_INCLUDE_FONT_BAKING'
cdefine 'NK_INCLUDE_DEFAULT_FONT'
cdefine 'NK_INCLUDE_SOFTWARE_FONT'
cdefine 'NK_INCLUDE_STANDARD_VARARGS'
if not NUKLEAR_NO_IMPL then
cdefine 'NK_IMPLEMENTATION'
end
cinclude 'nuklear.h'
if ccinfo.is_linux then
linklib 'm'
end
]]
global NK_buffer: type <cimport,nodecl,forwarddecl,ctypedef'nk_buffer'> = @record{}
global NK_allocator: type <cimport,nodecl,forwarddecl,ctypedef'nk_allocator'> = @record{}
global NK_command_buffer: type <cimport,nodecl,forwarddecl,ctypedef'nk_command_buffer'> = @record{}
global NK_draw_command: type <cimport,nodecl,forwarddecl,ctypedef'nk_draw_command'> = @record{}
global NK_convert_config: type <cimport,nodecl,forwarddecl,ctypedef'nk_convert_config'> = @record{}
global NK_style_item: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_item'> = @record{}
global NK_text_edit: type <cimport,nodecl,forwarddecl,ctypedef'nk_text_edit'> = @record{}
global NK_draw_list: type <cimport,nodecl,forwarddecl,ctypedef'nk_draw_list'> = @record{}
global NK_user_font: type <cimport,nodecl,forwarddecl,ctypedef'nk_user_font'> = @record{}
global NK_panel: type <cimport,nodecl,forwarddecl,ctypedef'nk_panel'> = @record{}
global NK_context: type <cimport,nodecl,forwarddecl,ctypedef'nk_context'> = @record{}
global NK_draw_vertex_layout_element: type <cimport,nodecl,forwarddecl,ctypedef'nk_draw_vertex_layout_element'> = @record{}
global NK_style_button: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_button'> = @record{}
global NK_style_toggle: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_toggle'> = @record{}
global NK_style_selectable: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_selectable'> = @record{}
global NK_style_slide: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_slide'> = @record{}
global NK_style_progress: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_progress'> = @record{}
global NK_style_scrollbar: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_scrollbar'> = @record{}
global NK_style_edit: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_edit'> = @record{}
global NK_style_property: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_property'> = @record{}
global NK_style_chart: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_chart'> = @record{}
global NK_style_combo: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_combo'> = @record{}
global NK_style_tab: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_tab'> = @record{}
global NK_style_window_header: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_window_header'> = @record{}
global NK_style_window: type <cimport,nodecl,forwarddecl,ctypedef'nk_style_window'> = @record{}
global nk_false: cint <comptime> = 0
global nk_true: cint <comptime> = 1
global NK_color: type <cimport,nodecl,ctypedef'nk_color'> = @record{
r: cuchar,
g: cuchar,
b: cuchar,
a: cuchar
}
global NK_colorf: type <cimport,nodecl,ctypedef'nk_colorf'> = @record{
r: float32,
g: float32,
b: float32,
a: float32
}
global NK_vec2: type <cimport,nodecl,ctypedef'nk_vec2'> = @record{
x: float32,
y: float32
}
global NK_vec2i: type <cimport,nodecl,ctypedef'nk_vec2i'> = @record{
x: cshort,
y: cshort
}
global NK_rect: type <cimport,nodecl,ctypedef'nk_rect'> = @record{
x: float32,
y: float32,
w: float32,
h: float32
}
global NK_recti: type <cimport,nodecl,ctypedef'nk_recti'> = @record{
x: cshort,
y: cshort,
w: cshort,
h: cshort
}
global NK_handle: type <cimport,nodecl> = @union{
ptr: pointer,
id: cint
}
global NK_image: type <cimport,nodecl,ctypedef'nk_image'> = @record{
handle: NK_handle,
w: cushort,
h: cushort,
region: [4]cushort
}
global NK_nine_slice: type <cimport,nodecl,ctypedef'nk_nine_slice'> = @record{
img: NK_image,
l: cushort,
t: cushort,
r: cushort,
b: cushort
}
global NK_cursor: type <cimport,nodecl,ctypedef'nk_cursor'> = @record{
img: NK_image,
size: NK_vec2,
offset: NK_vec2
}
global NK_scroll: type <cimport,nodecl,ctypedef'nk_scroll'> = @record{
x: cuint,
y: cuint
}
global NK_heading: type <cimport,nodecl,using,ctypedef'nk_heading'> = @enum(cint){
NK_UP = 0,
NK_RIGHT = 1,
NK_DOWN = 2,
NK_LEFT = 3
}
global NK_button_behavior: type <cimport,nodecl,using,ctypedef'nk_button_behavior'> = @enum(cint){
NK_BUTTON_DEFAULT = 0,
NK_BUTTON_REPEATER = 1
}
global NK_modify: type <cimport,nodecl,using,ctypedef'nk_modify'> = @enum(cint){
NK_FIXED = 0,
NK_MODIFIABLE = 1
}
global NK_orientation: type <cimport,nodecl,using,ctypedef'nk_orientation'> = @enum(cint){
NK_VERTICAL = 0,
NK_HORIZONTAL = 1
}
global NK_collapse_states: type <cimport,nodecl,using,ctypedef'nk_collapse_states'> = @enum(cint){
NK_MINIMIZED = 0,
NK_MAXIMIZED = 1
}
global NK_show_states: type <cimport,nodecl,using,ctypedef'nk_show_states'> = @enum(cint){
NK_HIDDEN = 0,
NK_SHOWN = 1
}
global NK_chart_type: type <cimport,nodecl,using,ctypedef'nk_chart_type'> = @enum(cint){
NK_CHART_LINES = 0,
NK_CHART_COLUMN = 1,
NK_CHART_MAX = 2
}
global NK_chart_event: type <cimport,nodecl,using,ctypedef'nk_chart_event'> = @enum(cint){
NK_CHART_HOVERING = 1,
NK_CHART_CLICKED = 2
}
global NK_color_format: type <cimport,nodecl,using,ctypedef'nk_color_format'> = @enum(cint){
NK_RGB = 0,
NK_RGBA = 1
}
global NK_popup_type: type <cimport,nodecl,using,ctypedef'nk_popup_type'> = @enum(cint){
NK_POPUP_STATIC = 0,
NK_POPUP_DYNAMIC = 1
}
global NK_layout_format: type <cimport,nodecl,using,ctypedef'nk_layout_format'> = @enum(cint){
NK_DYNAMIC = 0,
NK_STATIC = 1
}
global NK_tree_type: type <cimport,nodecl,using,ctypedef'nk_tree_type'> = @enum(cint){
NK_TREE_NODE = 0,
NK_TREE_TAB = 1
}
global nk_plugin_alloc: type <cimport,nodecl> = @function(NK_handle, pointer, culong): pointer
global nk_plugin_free: type <cimport,nodecl> = @function(NK_handle, pointer): void
global nk_plugin_filter: type <cimport,nodecl> = @function(*NK_text_edit, cuint): cint
global nk_plugin_paste: type <cimport,nodecl> = @function(NK_handle, *NK_text_edit): void
global nk_plugin_copy: type <cimport,nodecl> = @function(NK_handle, cstring, cint): void
NK_allocator = @record{
userdata: NK_handle,
alloc: nk_plugin_alloc,
free: nk_plugin_free
}
global NK_symbol_type: type <cimport,nodecl,using,ctypedef'nk_symbol_type'> = @enum(cint){
NK_SYMBOL_NONE = 0,
NK_SYMBOL_X = 1,
NK_SYMBOL_UNDERSCORE = 2,
NK_SYMBOL_CIRCLE_SOLID = 3,
NK_SYMBOL_CIRCLE_OUTLINE = 4,
NK_SYMBOL_RECT_SOLID = 5,
NK_SYMBOL_RECT_OUTLINE = 6,
NK_SYMBOL_TRIANGLE_UP = 7,
NK_SYMBOL_TRIANGLE_DOWN = 8,
NK_SYMBOL_TRIANGLE_LEFT = 9,
NK_SYMBOL_TRIANGLE_RIGHT = 10,
NK_SYMBOL_PLUS = 11,
NK_SYMBOL_MINUS = 12,
NK_SYMBOL_MAX = 13
}
global function nk_init_default(a1: *NK_context, a2: *NK_user_font): cint <cimport,nodecl> end
global function nk_init_fixed(a1: *NK_context, memory: pointer, size: culong, a4: *NK_user_font): cint <cimport,nodecl> end
global function nk_init(a1: *NK_context, a2: *NK_allocator, a3: *NK_user_font): cint <cimport,nodecl> end
global function nk_init_custom(a1: *NK_context, cmds: *NK_buffer, pool: *NK_buffer, a4: *NK_user_font): cint <cimport,nodecl> end
global function nk_clear(a1: *NK_context): void <cimport,nodecl> end
global function nk_free(a1: *NK_context): void <cimport,nodecl> end
global NK_keys: type <cimport,nodecl,using,ctypedef'nk_keys'> = @enum(cint){
NK_KEY_NONE = 0,
NK_KEY_SHIFT = 1,
NK_KEY_CTRL = 2,
NK_KEY_DEL = 3,
NK_KEY_ENTER = 4,
NK_KEY_TAB = 5,
NK_KEY_BACKSPACE = 6,
NK_KEY_COPY = 7,
NK_KEY_CUT = 8,
NK_KEY_PASTE = 9,
NK_KEY_UP = 10,
NK_KEY_DOWN = 11,
NK_KEY_LEFT = 12,
NK_KEY_RIGHT = 13,
NK_KEY_TEXT_INSERT_MODE = 14,
NK_KEY_TEXT_REPLACE_MODE = 15,
NK_KEY_TEXT_RESET_MODE = 16,
NK_KEY_TEXT_LINE_START = 17,
NK_KEY_TEXT_LINE_END = 18,
NK_KEY_TEXT_START = 19,
NK_KEY_TEXT_END = 20,
NK_KEY_TEXT_UNDO = 21,
NK_KEY_TEXT_REDO = 22,
NK_KEY_TEXT_SELECT_ALL = 23,
NK_KEY_TEXT_WORD_LEFT = 24,
NK_KEY_TEXT_WORD_RIGHT = 25,
NK_KEY_SCROLL_START = 26,
NK_KEY_SCROLL_END = 27,
NK_KEY_SCROLL_DOWN = 28,
NK_KEY_SCROLL_UP = 29,
NK_KEY_MAX = 30
}
global NK_buttons: type <cimport,nodecl,using,ctypedef'nk_buttons'> = @enum(cint){
NK_BUTTON_LEFT = 0,
NK_BUTTON_MIDDLE = 1,
NK_BUTTON_RIGHT = 2,
NK_BUTTON_DOUBLE = 3,
NK_BUTTON_MAX = 4
}
global function nk_input_begin(a1: *NK_context): void <cimport,nodecl> end
global function nk_input_motion(a1: *NK_context, x: cint, y: cint): void <cimport,nodecl> end
global function nk_input_key(a1: *NK_context, a2: NK_keys, down: cint): void <cimport,nodecl> end
global function nk_input_button(a1: *NK_context, a2: NK_buttons, x: cint, y: cint, down: cint): void <cimport,nodecl> end
global function nk_input_scroll(a1: *NK_context, val: NK_vec2): void <cimport,nodecl> end
global function nk_input_char(a1: *NK_context, a2: cchar): void <cimport,nodecl> end
global function nk_input_glyph(a1: *NK_context, a2: cstring): void <cimport,nodecl> end
global function nk_input_unicode(a1: *NK_context, a2: cuint): void <cimport,nodecl> end
global function nk_input_end(a1: *NK_context): void <cimport,nodecl> end
global NK_anti_aliasing: type <cimport,nodecl,using,ctypedef'nk_anti_aliasing'> = @enum(cint){
NK_ANTI_ALIASING_OFF = 0,
NK_ANTI_ALIASING_ON = 1
}
global NK_convert_result: type <cimport,nodecl,using,ctypedef'nk_convert_result'> = @enum(cint){
NK_CONVERT_SUCCESS = 0,
NK_CONVERT_INVALID_PARAM = 1,
NK_CONVERT_COMMAND_BUFFER_FULL = 2,
NK_CONVERT_VERTEX_BUFFER_FULL = 4,
NK_CONVERT_ELEMENT_BUFFER_FULL = 8
}
global NK_draw_null_texture: type <cimport,nodecl,ctypedef'nk_draw_null_texture'> = @record{
texture: NK_handle,
uv: NK_vec2
}
NK_convert_config = @record{
global_alpha: float32,
line_AA: NK_anti_aliasing,
shape_AA: NK_anti_aliasing,
circle_segment_count: cuint,
arc_segment_count: cuint,
curve_segment_count: cuint,
tex_null: NK_draw_null_texture,
vertex_layout: *NK_draw_vertex_layout_element,
vertex_size: culong,
vertex_alignment: culong
}
global NK_command: type <cimport,nodecl,forwarddecl,ctypedef'nk_command'> = @record{}
global function nk__begin(a1: *NK_context): *NK_command <cimport,nodecl> end
global function nk__next(a1: *NK_context, a2: *NK_command): *NK_command <cimport,nodecl> end
global function nk_convert(a1: *NK_context, cmds: *NK_buffer, vertices: *NK_buffer, elements: *NK_buffer, a5: *NK_convert_config): cuint <cimport,nodecl> end
global function nk__draw_begin(a1: *NK_context, a2: *NK_buffer): *NK_draw_command <cimport,nodecl> end
global function nk__draw_end(a1: *NK_context, a2: *NK_buffer): *NK_draw_command <cimport,nodecl> end
global function nk__draw_next(a1: *NK_draw_command, a2: *NK_buffer, a3: *NK_context): *NK_draw_command <cimport,nodecl> end
global NK_panel_flags: type <cimport,nodecl,using,ctypedef'nk_panel_flags'> = @enum(cint){
NK_WINDOW_BORDER = 1,
NK_WINDOW_MOVABLE = 2,
NK_WINDOW_SCALABLE = 4,
NK_WINDOW_CLOSABLE = 8,
NK_WINDOW_MINIMIZABLE = 16,
NK_WINDOW_NO_SCROLLBAR = 32,
NK_WINDOW_TITLE = 64,
NK_WINDOW_SCROLL_AUTO_HIDE = 128,
NK_WINDOW_BACKGROUND = 256,
NK_WINDOW_SCALE_LEFT = 512,
NK_WINDOW_NO_INPUT = 1024
}
global function nk_begin(ctx: *NK_context, title: cstring, bounds: NK_rect, flags: cuint): cint <cimport,nodecl> end
global function nk_begin_titled(ctx: *NK_context, name: cstring, title: cstring, bounds: NK_rect, flags: cuint): cint <cimport,nodecl> end
global function nk_end(ctx: *NK_context): void <cimport,nodecl> end
global NK_window: type <cimport,nodecl,forwarddecl,ctypedef'nk_window'> = @record{}
global function nk_window_find(ctx: *NK_context, name: cstring): *NK_window <cimport,nodecl> end
global function nk_window_get_bounds(ctx: *NK_context): NK_rect <cimport,nodecl> end
global function nk_window_get_position(ctx: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_window_get_size(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_window_get_width(a1: *NK_context): float32 <cimport,nodecl> end
global function nk_window_get_height(a1: *NK_context): float32 <cimport,nodecl> end
global function nk_window_get_panel(a1: *NK_context): *NK_panel <cimport,nodecl> end
global function nk_window_get_content_region(a1: *NK_context): NK_rect <cimport,nodecl> end
global function nk_window_get_content_region_min(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_window_get_content_region_max(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_window_get_content_region_size(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_window_get_canvas(a1: *NK_context): *NK_command_buffer <cimport,nodecl> end
global function nk_window_get_scroll(a1: *NK_context, offset_x: *cuint, offset_y: *cuint): void <cimport,nodecl> end
global function nk_window_has_focus(a1: *NK_context): cint <cimport,nodecl> end
global function nk_window_is_hovered(a1: *NK_context): cint <cimport,nodecl> end
global function nk_window_is_collapsed(ctx: *NK_context, name: cstring): cint <cimport,nodecl> end
global function nk_window_is_closed(a1: *NK_context, a2: cstring): cint <cimport,nodecl> end
global function nk_window_is_hidden(a1: *NK_context, a2: cstring): cint <cimport,nodecl> end
global function nk_window_is_active(a1: *NK_context, a2: cstring): cint <cimport,nodecl> end
global function nk_window_is_any_hovered(a1: *NK_context): cint <cimport,nodecl> end
global function nk_item_is_any_active(a1: *NK_context): cint <cimport,nodecl> end
global function nk_window_set_bounds(a1: *NK_context, name: cstring, bounds: NK_rect): void <cimport,nodecl> end
global function nk_window_set_position(a1: *NK_context, name: cstring, pos: NK_vec2): void <cimport,nodecl> end
global function nk_window_set_size(a1: *NK_context, name: cstring, a3: NK_vec2): void <cimport,nodecl> end
global function nk_window_set_focus(a1: *NK_context, name: cstring): void <cimport,nodecl> end
global function nk_window_set_scroll(a1: *NK_context, offset_x: cuint, offset_y: cuint): void <cimport,nodecl> end
global function nk_window_close(ctx: *NK_context, name: cstring): void <cimport,nodecl> end
global function nk_window_collapse(a1: *NK_context, name: cstring, state: NK_collapse_states): void <cimport,nodecl> end
global function nk_window_collapse_if(a1: *NK_context, name: cstring, a3: NK_collapse_states, cond: cint): void <cimport,nodecl> end
global function nk_window_show(a1: *NK_context, name: cstring, a3: NK_show_states): void <cimport,nodecl> end
global function nk_window_show_if(a1: *NK_context, name: cstring, a3: NK_show_states, cond: cint): void <cimport,nodecl> end
global function nk_layout_set_min_row_height(a1: *NK_context, height: float32): void <cimport,nodecl> end
global function nk_layout_reset_min_row_height(a1: *NK_context): void <cimport,nodecl> end
global function nk_layout_widget_bounds(a1: *NK_context): NK_rect <cimport,nodecl> end
global function nk_layout_ratio_from_pixel(a1: *NK_context, pixel_width: float32): float32 <cimport,nodecl> end
global function nk_layout_row_dynamic(ctx: *NK_context, height: float32, cols: cint): void <cimport,nodecl> end
global function nk_layout_row_static(ctx: *NK_context, height: float32, item_width: cint, cols: cint): void <cimport,nodecl> end
global function nk_layout_row_begin(ctx: *NK_context, fmt: NK_layout_format, row_height: float32, cols: cint): void <cimport,nodecl> end
global function nk_layout_row_push(a1: *NK_context, value: float32): void <cimport,nodecl> end
global function nk_layout_row_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_layout_row(a1: *NK_context, a2: NK_layout_format, height: float32, cols: cint, ratio: *float32): void <cimport,nodecl> end
global function nk_layout_row_template_begin(a1: *NK_context, row_height: float32): void <cimport,nodecl> end
global function nk_layout_row_template_push_dynamic(a1: *NK_context): void <cimport,nodecl> end
global function nk_layout_row_template_push_variable(a1: *NK_context, min_width: float32): void <cimport,nodecl> end
global function nk_layout_row_template_push_static(a1: *NK_context, width: float32): void <cimport,nodecl> end
global function nk_layout_row_template_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_layout_space_begin(a1: *NK_context, a2: NK_layout_format, height: float32, widget_count: cint): void <cimport,nodecl> end
global function nk_layout_space_push(a1: *NK_context, bounds: NK_rect): void <cimport,nodecl> end
global function nk_layout_space_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_layout_space_bounds(a1: *NK_context): NK_rect <cimport,nodecl> end
global function nk_layout_space_to_screen(a1: *NK_context, a2: NK_vec2): NK_vec2 <cimport,nodecl> end
global function nk_layout_space_to_local(a1: *NK_context, a2: NK_vec2): NK_vec2 <cimport,nodecl> end
global function nk_layout_space_rect_to_screen(a1: *NK_context, a2: NK_rect): NK_rect <cimport,nodecl> end
global function nk_layout_space_rect_to_local(a1: *NK_context, a2: NK_rect): NK_rect <cimport,nodecl> end
global function nk_spacer(a1: *NK_context): void <cimport,nodecl> end
global function nk_group_begin(a1: *NK_context, title: cstring, a3: cuint): cint <cimport,nodecl> end
global function nk_group_begin_titled(a1: *NK_context, name: cstring, title: cstring, a4: cuint): cint <cimport,nodecl> end
global function nk_group_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_group_scrolled_offset_begin(a1: *NK_context, x_offset: *cuint, y_offset: *cuint, title: cstring, flags: cuint): cint <cimport,nodecl> end
global function nk_group_scrolled_begin(a1: *NK_context, off: *NK_scroll, title: cstring, a4: cuint): cint <cimport,nodecl> end
global function nk_group_scrolled_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_group_get_scroll(a1: *NK_context, id: cstring, x_offset: *cuint, y_offset: *cuint): void <cimport,nodecl> end
global function nk_group_set_scroll(a1: *NK_context, id: cstring, x_offset: cuint, y_offset: cuint): void <cimport,nodecl> end
global function nk_tree_push_hashed(a1: *NK_context, a2: NK_tree_type, title: cstring, initial_state: NK_collapse_states, hash: cstring, len: cint, seed: cint): cint <cimport,nodecl> end
global function nk_tree_image_push_hashed(a1: *NK_context, a2: NK_tree_type, a3: NK_image, title: cstring, initial_state: NK_collapse_states, hash: cstring, len: cint, seed: cint): cint <cimport,nodecl> end
global function nk_tree_pop(a1: *NK_context): void <cimport,nodecl> end
global function nk_tree_state_push(a1: *NK_context, a2: NK_tree_type, title: cstring, state: *NK_collapse_states): cint <cimport,nodecl> end
global function nk_tree_state_image_push(a1: *NK_context, a2: NK_tree_type, a3: NK_image, title: cstring, state: *NK_collapse_states): cint <cimport,nodecl> end
global function nk_tree_state_pop(a1: *NK_context): void <cimport,nodecl> end
global function nk_tree_element_push_hashed(a1: *NK_context, a2: NK_tree_type, title: cstring, initial_state: NK_collapse_states, selected: *cint, hash: cstring, len: cint, seed: cint): cint <cimport,nodecl> end
global function nk_tree_element_image_push_hashed(a1: *NK_context, a2: NK_tree_type, a3: NK_image, title: cstring, initial_state: NK_collapse_states, selected: *cint, hash: cstring, len: cint, seed: cint): cint <cimport,nodecl> end
global function nk_tree_element_pop(a1: *NK_context): void <cimport,nodecl> end
global NK_list_view: type <cimport,nodecl,ctypedef'nk_list_view'> = @record{
begin: cint,
End: cint,
count: cint,
total_height: cint,
ctx: *NK_context,
scroll_pointer: *cuint,
scroll_value: cuint
}
global function nk_list_view_begin(a1: *NK_context, out: *NK_list_view, id: cstring, a4: cuint, row_height: cint, row_count: cint): cint <cimport,nodecl> end
global function nk_list_view_end(a1: *NK_list_view): void <cimport,nodecl> end
global NK_widget_layout_states: type <cimport,nodecl,using,ctypedef'nk_widget_layout_states'> = @enum(cint){
NK_WIDGET_INVALID = 0,
NK_WIDGET_VALID = 1,
NK_WIDGET_ROM = 2
}
global NK_widget_states: type <cimport,nodecl,using,ctypedef'nk_widget_states'> = @enum(cint){
NK_WIDGET_STATE_MODIFIED = 2,
NK_WIDGET_STATE_INACTIVE = 4,
NK_WIDGET_STATE_ENTERED = 8,
NK_WIDGET_STATE_HOVER = 16,
NK_WIDGET_STATE_ACTIVED = 32,
NK_WIDGET_STATE_LEFT = 64,
NK_WIDGET_STATE_HOVERED = 18,
NK_WIDGET_STATE_ACTIVE = 34
}
global function nk_widget(a1: *NK_rect, a2: *NK_context): NK_widget_layout_states <cimport,nodecl> end
global function nk_widget_fitting(a1: *NK_rect, a2: *NK_context, a3: NK_vec2): NK_widget_layout_states <cimport,nodecl> end
global function nk_widget_bounds(a1: *NK_context): NK_rect <cimport,nodecl> end
global function nk_widget_position(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_widget_size(a1: *NK_context): NK_vec2 <cimport,nodecl> end
global function nk_widget_width(a1: *NK_context): float32 <cimport,nodecl> end
global function nk_widget_height(a1: *NK_context): float32 <cimport,nodecl> end
global function nk_widget_is_hovered(a1: *NK_context): cint <cimport,nodecl> end
global function nk_widget_is_mouse_clicked(a1: *NK_context, a2: NK_buttons): cint <cimport,nodecl> end
global function nk_widget_has_mouse_click_down(a1: *NK_context, a2: NK_buttons, down: cint): cint <cimport,nodecl> end
global function nk_spacing(a1: *NK_context, cols: cint): void <cimport,nodecl> end
global NK_text_align: type <cimport,nodecl,using,ctypedef'nk_text_align'> = @enum(cint){
NK_TEXT_ALIGN_LEFT = 1,
NK_TEXT_ALIGN_CENTERED = 2,
NK_TEXT_ALIGN_RIGHT = 4,
NK_TEXT_ALIGN_TOP = 8,
NK_TEXT_ALIGN_MIDDLE = 16,
NK_TEXT_ALIGN_BOTTOM = 32
}
global NK_text_alignment: type <cimport,nodecl,using,ctypedef'nk_text_alignment'> = @enum(cint){
NK_TEXT_LEFT = 17,
NK_TEXT_CENTERED = 18,
NK_TEXT_RIGHT = 20
}
global function nk_text(a1: *NK_context, a2: cstring, a3: cint, a4: cuint): void <cimport,nodecl> end
global function nk_text_colored(a1: *NK_context, a2: cstring, a3: cint, a4: cuint, a5: NK_color): void <cimport,nodecl> end
global function nk_text_wrap(a1: *NK_context, a2: cstring, a3: cint): void <cimport,nodecl> end
global function nk_text_wrap_colored(a1: *NK_context, a2: cstring, a3: cint, a4: NK_color): void <cimport,nodecl> end
global function nk_label(a1: *NK_context, a2: cstring, align: cuint): void <cimport,nodecl> end
global function nk_label_colored(a1: *NK_context, a2: cstring, align: cuint, a4: NK_color): void <cimport,nodecl> end
global function nk_label_wrap(a1: *NK_context, a2: cstring): void <cimport,nodecl> end
global function nk_label_colored_wrap(a1: *NK_context, a2: cstring, a3: NK_color): void <cimport,nodecl> end
global function nk_image(a1: *NK_context, a2: NK_image): void <cimport,nodecl> end
global function nk_image_color(a1: *NK_context, a2: NK_image, a3: NK_color): void <cimport,nodecl> end
global function nk_labelf(a1: *NK_context, a2: cuint, a3: cstring, ...: cvarargs): void <cimport,nodecl> end
global function nk_labelf_colored(a1: *NK_context, a2: cuint, a3: NK_color, a4: cstring, ...: cvarargs): void <cimport,nodecl> end
global function nk_labelf_wrap(a1: *NK_context, a2: cstring, ...: cvarargs): void <cimport,nodecl> end
global function nk_labelf_colored_wrap(a1: *NK_context, a2: NK_color, a3: cstring, ...: cvarargs): void <cimport,nodecl> end
global function nk_labelfv(a1: *NK_context, a2: cuint, a3: cstring, a4: cvalist): void <cimport,nodecl> end
global function nk_labelfv_colored(a1: *NK_context, a2: cuint, a3: NK_color, a4: cstring, a5: cvalist): void <cimport,nodecl> end
global function nk_labelfv_wrap(a1: *NK_context, a2: cstring, a3: cvalist): void <cimport,nodecl> end
global function nk_labelfv_colored_wrap(a1: *NK_context, a2: NK_color, a3: cstring, a4: cvalist): void <cimport,nodecl> end
global function nk_value_bool(a1: *NK_context, prefix: cstring, a3: cint): void <cimport,nodecl> end
global function nk_value_int(a1: *NK_context, prefix: cstring, a3: cint): void <cimport,nodecl> end
global function nk_value_uint(a1: *NK_context, prefix: cstring, a3: cuint): void <cimport,nodecl> end
global function nk_value_float(a1: *NK_context, prefix: cstring, a3: float32): void <cimport,nodecl> end
global function nk_value_color_byte(a1: *NK_context, prefix: cstring, a3: NK_color): void <cimport,nodecl> end
global function nk_value_color_float(a1: *NK_context, prefix: cstring, a3: NK_color): void <cimport,nodecl> end
global function nk_value_color_hex(a1: *NK_context, prefix: cstring, a3: NK_color): void <cimport,nodecl> end
global function nk_button_text(a1: *NK_context, title: cstring, len: cint): cint <cimport,nodecl> end
global function nk_button_label(a1: *NK_context, title: cstring): cint <cimport,nodecl> end
global function nk_button_color(a1: *NK_context, a2: NK_color): cint <cimport,nodecl> end
global function nk_button_symbol(a1: *NK_context, a2: NK_symbol_type): cint <cimport,nodecl> end
global function nk_button_image(a1: *NK_context, img: NK_image): cint <cimport,nodecl> end
global function nk_button_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, text_alignment: cuint): cint <cimport,nodecl> end
global function nk_button_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_button_image_label(a1: *NK_context, img: NK_image, a3: cstring, text_alignment: cuint): cint <cimport,nodecl> end
global function nk_button_image_text(a1: *NK_context, img: NK_image, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_button_text_styled(a1: *NK_context, a2: *NK_style_button, title: cstring, len: cint): cint <cimport,nodecl> end
global function nk_button_label_styled(a1: *NK_context, a2: *NK_style_button, title: cstring): cint <cimport,nodecl> end
global function nk_button_symbol_styled(a1: *NK_context, a2: *NK_style_button, a3: NK_symbol_type): cint <cimport,nodecl> end
global function nk_button_image_styled(a1: *NK_context, a2: *NK_style_button, img: NK_image): cint <cimport,nodecl> end
global function nk_button_symbol_text_styled(a1: *NK_context, a2: *NK_style_button, a3: NK_symbol_type, a4: cstring, a5: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_button_symbol_label_styled(ctx: *NK_context, style: *NK_style_button, symbol: NK_symbol_type, title: cstring, align: cuint): cint <cimport,nodecl> end
global function nk_button_image_label_styled(a1: *NK_context, a2: *NK_style_button, img: NK_image, a4: cstring, text_alignment: cuint): cint <cimport,nodecl> end
global function nk_button_image_text_styled(a1: *NK_context, a2: *NK_style_button, img: NK_image, a4: cstring, a5: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_button_set_behavior(a1: *NK_context, a2: NK_button_behavior): void <cimport,nodecl> end
global function nk_button_push_behavior(a1: *NK_context, a2: NK_button_behavior): cint <cimport,nodecl> end
global function nk_button_pop_behavior(a1: *NK_context): cint <cimport,nodecl> end
global function nk_check_label(a1: *NK_context, a2: cstring, active: cint): cint <cimport,nodecl> end
global function nk_check_text(a1: *NK_context, a2: cstring, a3: cint, active: cint): cint <cimport,nodecl> end
global function nk_check_flags_label(a1: *NK_context, a2: cstring, flags: cuint, value: cuint): cuint <cimport,nodecl> end
global function nk_check_flags_text(a1: *NK_context, a2: cstring, a3: cint, flags: cuint, value: cuint): cuint <cimport,nodecl> end
global function nk_checkbox_label(a1: *NK_context, a2: cstring, active: *cint): cint <cimport,nodecl> end
global function nk_checkbox_text(a1: *NK_context, a2: cstring, a3: cint, active: *cint): cint <cimport,nodecl> end
global function nk_checkbox_flags_label(a1: *NK_context, a2: cstring, flags: *cuint, value: cuint): cint <cimport,nodecl> end
global function nk_checkbox_flags_text(a1: *NK_context, a2: cstring, a3: cint, flags: *cuint, value: cuint): cint <cimport,nodecl> end
global function nk_radio_label(a1: *NK_context, a2: cstring, active: *cint): cint <cimport,nodecl> end
global function nk_radio_text(a1: *NK_context, a2: cstring, a3: cint, active: *cint): cint <cimport,nodecl> end
global function nk_option_label(a1: *NK_context, a2: cstring, active: cint): cint <cimport,nodecl> end
global function nk_option_text(a1: *NK_context, a2: cstring, a3: cint, active: cint): cint <cimport,nodecl> end
global function nk_selectable_label(a1: *NK_context, a2: cstring, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_selectable_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_selectable_image_label(a1: *NK_context, a2: NK_image, a3: cstring, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_selectable_image_text(a1: *NK_context, a2: NK_image, a3: cstring, a4: cint, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_selectable_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_selectable_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, align: cuint, value: *cint): cint <cimport,nodecl> end
global function nk_select_label(a1: *NK_context, a2: cstring, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_select_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_select_image_label(a1: *NK_context, a2: NK_image, a3: cstring, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_select_image_text(a1: *NK_context, a2: NK_image, a3: cstring, a4: cint, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_select_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_select_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, align: cuint, value: cint): cint <cimport,nodecl> end
global function nk_slide_float(a1: *NK_context, min: float32, val: float32, max: float32, step: float32): float32 <cimport,nodecl> end
global function nk_slide_int(a1: *NK_context, min: cint, val: cint, max: cint, step: cint): cint <cimport,nodecl> end
global function nk_slider_float(a1: *NK_context, min: float32, val: *float32, max: float32, step: float32): cint <cimport,nodecl> end
global function nk_slider_int(a1: *NK_context, min: cint, val: *cint, max: cint, step: cint): cint <cimport,nodecl> end
global function nk_progress(a1: *NK_context, cur: *culong, max: culong, modifyable: cint): cint <cimport,nodecl> end
global function nk_prog(a1: *NK_context, cur: culong, max: culong, modifyable: cint): culong <cimport,nodecl> end
global function nk_color_picker(a1: *NK_context, a2: NK_colorf, a3: NK_color_format): NK_colorf <cimport,nodecl> end
global function nk_color_pick(a1: *NK_context, a2: *NK_colorf, a3: NK_color_format): cint <cimport,nodecl> end
global function nk_property_int(a1: *NK_context, name: cstring, min: cint, val: *cint, max: cint, step: cint, inc_per_pixel: float32): void <cimport,nodecl> end
global function nk_property_float(a1: *NK_context, name: cstring, min: float32, val: *float32, max: float32, step: float32, inc_per_pixel: float32): void <cimport,nodecl> end
global function nk_property_double(a1: *NK_context, name: cstring, min: float64, val: *float64, max: float64, step: float64, inc_per_pixel: float32): void <cimport,nodecl> end
global function nk_propertyi(a1: *NK_context, name: cstring, min: cint, val: cint, max: cint, step: cint, inc_per_pixel: float32): cint <cimport,nodecl> end
global function nk_propertyf(a1: *NK_context, name: cstring, min: float32, val: float32, max: float32, step: float32, inc_per_pixel: float32): float32 <cimport,nodecl> end
global function nk_propertyd(a1: *NK_context, name: cstring, min: float64, val: float64, max: float64, step: float64, inc_per_pixel: float32): float64 <cimport,nodecl> end
global NK_edit_flags: type <cimport,nodecl,using,ctypedef'nk_edit_flags'> = @enum(cint){
NK_EDIT_DEFAULT = 0,
NK_EDIT_READ_ONLY = 1,
NK_EDIT_AUTO_SELECT = 2,
NK_EDIT_SIG_ENTER = 4,
NK_EDIT_ALLOW_TAB = 8,
NK_EDIT_NO_CURSOR = 16,
NK_EDIT_SELECTABLE = 32,
NK_EDIT_CLIPBOARD = 64,
NK_EDIT_CTRL_ENTER_NEWLINE = 128,
NK_EDIT_NO_HORIZONTAL_SCROLL = 256,
NK_EDIT_ALWAYS_INSERT_MODE = 512,
NK_EDIT_MULTILINE = 1024,
NK_EDIT_GOTO_END_ON_ACTIVATE = 2048
}
global NK_edit_types: type <cimport,nodecl,using,ctypedef'nk_edit_types'> = @enum(cint){
NK_EDIT_SIMPLE = 512,
NK_EDIT_FIELD = 608,
NK_EDIT_BOX = 1640,
NK_EDIT_EDITOR = 1128
}
global NK_edit_events: type <cimport,nodecl,using,ctypedef'nk_edit_events'> = @enum(cint){
NK_EDIT_ACTIVE = 1,
NK_EDIT_INACTIVE = 2,
NK_EDIT_ACTIVATED = 4,
NK_EDIT_DEACTIVATED = 8,
NK_EDIT_COMMITED = 16
}
global function nk_edit_string(a1: *NK_context, a2: cuint, buffer: cstring, len: *cint, max: cint, a6: nk_plugin_filter): cuint <cimport,nodecl> end
global function nk_edit_string_zero_terminated(a1: *NK_context, a2: cuint, buffer: cstring, max: cint, a5: nk_plugin_filter): cuint <cimport,nodecl> end
global function nk_edit_buffer(a1: *NK_context, a2: cuint, a3: *NK_text_edit, a4: nk_plugin_filter): cuint <cimport,nodecl> end
global function nk_edit_focus(a1: *NK_context, flags: cuint): void <cimport,nodecl> end
global function nk_edit_unfocus(a1: *NK_context): void <cimport,nodecl> end
global function nk_chart_begin(a1: *NK_context, a2: NK_chart_type, num: cint, min: float32, max: float32): cint <cimport,nodecl> end
global function nk_chart_begin_colored(a1: *NK_context, a2: NK_chart_type, a3: NK_color, active: NK_color, num: cint, min: float32, max: float32): cint <cimport,nodecl> end
global function nk_chart_add_slot(ctx: *NK_context, a2: NK_chart_type, count: cint, min_value: float32, max_value: float32): void <cimport,nodecl> end
global function nk_chart_add_slot_colored(ctx: *NK_context, a2: NK_chart_type, a3: NK_color, active: NK_color, count: cint, min_value: float32, max_value: float32): void <cimport,nodecl> end
global function nk_chart_push(a1: *NK_context, a2: float32): cuint <cimport,nodecl> end
global function nk_chart_push_slot(a1: *NK_context, a2: float32, a3: cint): cuint <cimport,nodecl> end
global function nk_chart_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_plot(a1: *NK_context, a2: NK_chart_type, values: *float32, count: cint, offset: cint): void <cimport,nodecl> end
global function nk_plot_function(a1: *NK_context, a2: NK_chart_type, userdata: pointer, value_getter: function(pointer, cint): float32, count: cint, offset: cint): void <cimport,nodecl> end
global function nk_popup_begin(a1: *NK_context, a2: NK_popup_type, a3: cstring, a4: cuint, bounds: NK_rect): cint <cimport,nodecl> end
global function nk_popup_close(a1: *NK_context): void <cimport,nodecl> end
global function nk_popup_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_popup_get_scroll(a1: *NK_context, offset_x: *cuint, offset_y: *cuint): void <cimport,nodecl> end
global function nk_popup_set_scroll(a1: *NK_context, offset_x: cuint, offset_y: cuint): void <cimport,nodecl> end
global function nk_combo(a1: *NK_context, items: *cstring, count: cint, selected: cint, item_height: cint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_separator(a1: *NK_context, items_separated_by_separator: cstring, separator: cint, selected: cint, count: cint, item_height: cint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_string(a1: *NK_context, items_separated_by_zeros: cstring, selected: cint, count: cint, item_height: cint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_callback(a1: *NK_context, item_getter: function(pointer, cint, *cstring): void, userdata: pointer, selected: cint, count: cint, item_height: cint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combobox(a1: *NK_context, items: *cstring, count: cint, selected: *cint, item_height: cint, size: NK_vec2): void <cimport,nodecl> end
global function nk_combobox_string(a1: *NK_context, items_separated_by_zeros: cstring, selected: *cint, count: cint, item_height: cint, size: NK_vec2): void <cimport,nodecl> end
global function nk_combobox_separator(a1: *NK_context, items_separated_by_separator: cstring, separator: cint, selected: *cint, count: cint, item_height: cint, size: NK_vec2): void <cimport,nodecl> end
global function nk_combobox_callback(a1: *NK_context, item_getter: function(pointer, cint, *cstring): void, a3: pointer, selected: *cint, count: cint, item_height: cint, size: NK_vec2): void <cimport,nodecl> end
global function nk_combo_begin_text(a1: *NK_context, selected: cstring, a3: cint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_label(a1: *NK_context, selected: cstring, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_color(a1: *NK_context, color: NK_color, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_symbol(a1: *NK_context, a2: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_symbol_label(a1: *NK_context, selected: cstring, a3: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_symbol_text(a1: *NK_context, selected: cstring, a3: cint, a4: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_image(a1: *NK_context, img: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_image_label(a1: *NK_context, selected: cstring, a3: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_begin_image_text(a1: *NK_context, selected: cstring, a3: cint, a4: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_combo_item_label(a1: *NK_context, a2: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_item_text(a1: *NK_context, a2: cstring, a3: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_item_image_label(a1: *NK_context, a2: NK_image, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_item_image_text(a1: *NK_context, a2: NK_image, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_item_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_item_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_combo_close(a1: *NK_context): void <cimport,nodecl> end
global function nk_combo_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_contextual_begin(a1: *NK_context, a2: cuint, a3: NK_vec2, trigger_bounds: NK_rect): cint <cimport,nodecl> end
global function nk_contextual_item_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint): cint <cimport,nodecl> end
global function nk_contextual_item_label(a1: *NK_context, a2: cstring, align: cuint): cint <cimport,nodecl> end
global function nk_contextual_item_image_label(a1: *NK_context, a2: NK_image, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_contextual_item_image_text(a1: *NK_context, a2: NK_image, a3: cstring, len: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_contextual_item_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_contextual_item_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_contextual_close(a1: *NK_context): void <cimport,nodecl> end
global function nk_contextual_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_tooltip(a1: *NK_context, a2: cstring): void <cimport,nodecl> end
global function nk_tooltipf(a1: *NK_context, a2: cstring, ...: cvarargs): void <cimport,nodecl> end
global function nk_tooltipfv(a1: *NK_context, a2: cstring, a3: cvalist): void <cimport,nodecl> end
global function nk_tooltip_begin(a1: *NK_context, width: float32): cint <cimport,nodecl> end
global function nk_tooltip_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_menubar_begin(a1: *NK_context): void <cimport,nodecl> end
global function nk_menubar_end(a1: *NK_context): void <cimport,nodecl> end
global function nk_menu_begin_text(a1: *NK_context, title: cstring, title_len: cint, align: cuint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_label(a1: *NK_context, a2: cstring, align: cuint, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_image(a1: *NK_context, a2: cstring, a3: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_image_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint, a5: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_image_label(a1: *NK_context, a2: cstring, align: cuint, a4: NK_image, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_symbol(a1: *NK_context, a2: cstring, a3: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_symbol_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint, a5: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_begin_symbol_label(a1: *NK_context, a2: cstring, align: cuint, a4: NK_symbol_type, size: NK_vec2): cint <cimport,nodecl> end
global function nk_menu_item_text(a1: *NK_context, a2: cstring, a3: cint, align: cuint): cint <cimport,nodecl> end
global function nk_menu_item_label(a1: *NK_context, a2: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_menu_item_image_label(a1: *NK_context, a2: NK_image, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_menu_item_image_text(a1: *NK_context, a2: NK_image, a3: cstring, len: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_menu_item_symbol_text(a1: *NK_context, a2: NK_symbol_type, a3: cstring, a4: cint, alignment: cuint): cint <cimport,nodecl> end
global function nk_menu_item_symbol_label(a1: *NK_context, a2: NK_symbol_type, a3: cstring, alignment: cuint): cint <cimport,nodecl> end
global function nk_menu_close(a1: *NK_context): void <cimport,nodecl> end
global function nk_menu_end(a1: *NK_context): void <cimport,nodecl> end
global NK_style_colors: type <cimport,nodecl,using,ctypedef'nk_style_colors'> = @enum(cint){
NK_COLOR_TEXT = 0,
NK_COLOR_WINDOW = 1,
NK_COLOR_HEADER = 2,
NK_COLOR_BORDER = 3,
NK_COLOR_BUTTON = 4,
NK_COLOR_BUTTON_HOVER = 5,
NK_COLOR_BUTTON_ACTIVE = 6,
NK_COLOR_TOGGLE = 7,
NK_COLOR_TOGGLE_HOVER = 8,
NK_COLOR_TOGGLE_CURSOR = 9,
NK_COLOR_SELECT = 10,
NK_COLOR_SELECT_ACTIVE = 11,
NK_COLOR_SLIDER = 12,
NK_COLOR_SLIDER_CURSOR = 13,
NK_COLOR_SLIDER_CURSOR_HOVER = 14,
NK_COLOR_SLIDER_CURSOR_ACTIVE = 15,
NK_COLOR_PROPERTY = 16,
NK_COLOR_EDIT = 17,
NK_COLOR_EDIT_CURSOR = 18,
NK_COLOR_COMBO = 19,
NK_COLOR_CHART = 20,
NK_COLOR_CHART_COLOR = 21,
NK_COLOR_CHART_COLOR_HIGHLIGHT = 22,
NK_COLOR_SCROLLBAR = 23,
NK_COLOR_SCROLLBAR_CURSOR = 24,
NK_COLOR_SCROLLBAR_CURSOR_HOVER = 25,
NK_COLOR_SCROLLBAR_CURSOR_ACTIVE = 26,
NK_COLOR_TAB_HEADER = 27,
NK_COLOR_COUNT = 28
}
global NK_style_cursor: type <cimport,nodecl,using,ctypedef'nk_style_cursor'> = @enum(cint){
NK_CURSOR_ARROW = 0,
NK_CURSOR_TEXT = 1,
NK_CURSOR_MOVE = 2,
NK_CURSOR_RESIZE_VERTICAL = 3,
NK_CURSOR_RESIZE_HORIZONTAL = 4,
NK_CURSOR_RESIZE_TOP_LEFT_DOWN_RIGHT = 5,
NK_CURSOR_RESIZE_TOP_RIGHT_DOWN_LEFT = 6,
NK_CURSOR_COUNT = 7
}
global function nk_style_default(a1: *NK_context): void <cimport,nodecl> end
global function nk_style_from_table(a1: *NK_context, a2: *NK_color): void <cimport,nodecl> end
global function nk_style_load_cursor(a1: *NK_context, a2: NK_style_cursor, a3: *NK_cursor): void <cimport,nodecl> end
global function nk_style_load_all_cursors(a1: *NK_context, a2: *NK_cursor): void <cimport,nodecl> end
global function nk_style_get_color_by_name(a1: NK_style_colors): cstring <cimport,nodecl> end
global function nk_style_set_font(a1: *NK_context, a2: *NK_user_font): void <cimport,nodecl> end
global function nk_style_set_cursor(a1: *NK_context, a2: NK_style_cursor): cint <cimport,nodecl> end
global function nk_style_show_cursor(a1: *NK_context): void <cimport,nodecl> end
global function nk_style_hide_cursor(a1: *NK_context): void <cimport,nodecl> end
global function nk_style_push_font(a1: *NK_context, a2: *NK_user_font): cint <cimport,nodecl> end
global function nk_style_push_float(a1: *NK_context, a2: *float32, a3: float32): cint <cimport,nodecl> end
global function nk_style_push_vec2(a1: *NK_context, a2: *NK_vec2, a3: NK_vec2): cint <cimport,nodecl> end
global function nk_style_push_flags(a1: *NK_context, a2: *cuint, a3: cuint): cint <cimport,nodecl> end
global function nk_style_push_color(a1: *NK_context, a2: *NK_color, a3: NK_color): cint <cimport,nodecl> end
global function nk_style_pop_font(a1: *NK_context): cint <cimport,nodecl> end
global function nk_style_pop_float(a1: *NK_context): cint <cimport,nodecl> end
global function nk_style_pop_vec2(a1: *NK_context): cint <cimport,nodecl> end
global function nk_style_pop_style_item(a1: *NK_context): cint <cimport,nodecl> end
global function nk_style_pop_flags(a1: *NK_context): cint <cimport,nodecl> end
global function nk_style_pop_color(a1: *NK_context): cint <cimport,nodecl> end
global function nk_rgb(r: cint, g: cint, b: cint): NK_color <cimport,nodecl> end
global function nk_rgb_iv(rgb: *cint): NK_color <cimport,nodecl> end
global function nk_rgb_bv(rgb: *cuchar): NK_color <cimport,nodecl> end
global function nk_rgb_f(r: float32, g: float32, b: float32): NK_color <cimport,nodecl> end
global function nk_rgb_fv(rgb: *float32): NK_color <cimport,nodecl> end
global function nk_rgb_cf(c: NK_colorf): NK_color <cimport,nodecl> end
global function nk_rgb_hex(rgb: cstring): NK_color <cimport,nodecl> end
global function nk_rgba(r: cint, g: cint, b: cint, a: cint): NK_color <cimport,nodecl> end
global function nk_rgba_u32(a1: cuint): NK_color <cimport,nodecl> end
global function nk_rgba_iv(rgba: *cint): NK_color <cimport,nodecl> end
global function nk_rgba_bv(rgba: *cuchar): NK_color <cimport,nodecl> end
global function nk_rgba_f(r: float32, g: float32, b: float32, a: float32): NK_color <cimport,nodecl> end
global function nk_rgba_fv(rgba: *float32): NK_color <cimport,nodecl> end
global function nk_rgba_cf(c: NK_colorf): NK_color <cimport,nodecl> end
global function nk_rgba_hex(rgb: cstring): NK_color <cimport,nodecl> end
global function nk_hsva_colorf(h: float32, s: float32, v: float32, a: float32): NK_colorf <cimport,nodecl> end
global function nk_hsva_colorfv(c: *float32): NK_colorf <cimport,nodecl> end
global function nk_colorf_hsva_f(out_h: *float32, out_s: *float32, out_v: *float32, out_a: *float32, In: NK_colorf): void <cimport,nodecl> end
global function nk_colorf_hsva_fv(hsva: *float32, In: NK_colorf): void <cimport,nodecl> end
global function nk_hsv(h: cint, s: cint, v: cint): NK_color <cimport,nodecl> end
global function nk_hsv_iv(hsv: *cint): NK_color <cimport,nodecl> end
global function nk_hsv_bv(hsv: *cuchar): NK_color <cimport,nodecl> end
global function nk_hsv_f(h: float32, s: float32, v: float32): NK_color <cimport,nodecl> end
global function nk_hsv_fv(hsv: *float32): NK_color <cimport,nodecl> end
global function nk_hsva(h: cint, s: cint, v: cint, a: cint): NK_color <cimport,nodecl> end
global function nk_hsva_iv(hsva: *cint): NK_color <cimport,nodecl> end
global function nk_hsva_bv(hsva: *cuchar): NK_color <cimport,nodecl> end
global function nk_hsva_f(h: float32, s: float32, v: float32, a: float32): NK_color <cimport,nodecl> end
global function nk_hsva_fv(hsva: *float32): NK_color <cimport,nodecl> end
global function nk_color_f(r: *float32, g: *float32, b: *float32, a: *float32, a5: NK_color): void <cimport,nodecl> end
global function nk_color_fv(rgba_out: *float32, a2: NK_color): void <cimport,nodecl> end
global function nk_color_cf(a1: NK_color): NK_colorf <cimport,nodecl> end
global function nk_color_d(r: *float64, g: *float64, b: *float64, a: *float64, a5: NK_color): void <cimport,nodecl> end
global function nk_color_dv(rgba_out: *float64, a2: NK_color): void <cimport,nodecl> end
global function nk_color_u32(a1: NK_color): cuint <cimport,nodecl> end
global function nk_color_hex_rgba(output: cstring, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hex_rgb(output: cstring, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_i(out_h: *cint, out_s: *cint, out_v: *cint, a4: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_b(out_h: *cuchar, out_s: *cuchar, out_v: *cuchar, a4: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_iv(hsv_out: *cint, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_bv(hsv_out: *cuchar, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_f(out_h: *float32, out_s: *float32, out_v: *float32, a4: NK_color): void <cimport,nodecl> end
global function nk_color_hsv_fv(hsv_out: *float32, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_i(h: *cint, s: *cint, v: *cint, a: *cint, a5: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_b(h: *cuchar, s: *cuchar, v: *cuchar, a: *cuchar, a5: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_iv(hsva_out: *cint, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_bv(hsva_out: *cuchar, a2: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_f(out_h: *float32, out_s: *float32, out_v: *float32, out_a: *float32, a5: NK_color): void <cimport,nodecl> end
global function nk_color_hsva_fv(hsva_out: *float32, a2: NK_color): void <cimport,nodecl> end
global function nk_handle_ptr(a1: pointer): NK_handle <cimport,nodecl> end
global function nk_handle_id(a1: cint): NK_handle <cimport,nodecl> end
global function nk_image_handle(a1: NK_handle): NK_image <cimport,nodecl> end
global function nk_image_ptr(a1: pointer): NK_image <cimport,nodecl> end
global function nk_image_id(a1: cint): NK_image <cimport,nodecl> end
global function nk_image_is_subimage(img: *NK_image): cint <cimport,nodecl> end
global function nk_subimage_ptr(a1: pointer, w: cushort, h: cushort, sub_region: NK_rect): NK_image <cimport,nodecl> end
global function nk_subimage_id(a1: cint, w: cushort, h: cushort, sub_region: NK_rect): NK_image <cimport,nodecl> end
global function nk_subimage_handle(a1: NK_handle, w: cushort, h: cushort, sub_region: NK_rect): NK_image <cimport,nodecl> end
global function nk_nine_slice_handle(a1: NK_handle, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_nine_slice_ptr(a1: pointer, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_nine_slice_id(a1: cint, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_nine_slice_is_sub9slice(img: *NK_nine_slice): cint <cimport,nodecl> end
global function nk_sub9slice_ptr(a1: pointer, w: cushort, h: cushort, sub_region: NK_rect, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_sub9slice_id(a1: cint, w: cushort, h: cushort, sub_region: NK_rect, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_sub9slice_handle(a1: NK_handle, w: cushort, h: cushort, sub_region: NK_rect, l: cushort, t: cushort, r: cushort, b: cushort): NK_nine_slice <cimport,nodecl> end
global function nk_murmur_hash(key: pointer, len: cint, seed: cuint): cuint <cimport,nodecl> end
global function nk_triangle_from_direction(result: *NK_vec2, r: NK_rect, pad_x: float32, pad_y: float32, a5: NK_heading): void <cimport,nodecl> end
global function nk_vec2(x: float32, y: float32): NK_vec2 <cimport,nodecl> end
global function nk_vec2i(x: cint, y: cint): NK_vec2 <cimport,nodecl> end
global function nk_vec2v(xy: *float32): NK_vec2 <cimport,nodecl> end
global function nk_vec2iv(xy: *cint): NK_vec2 <cimport,nodecl> end
global function nk_get_null_rect(): NK_rect <cimport,nodecl> end
global function nk_rect(x: float32, y: float32, w: float32, h: float32): NK_rect <cimport,nodecl> end
global function nk_recti(x: cint, y: cint, w: cint, h: cint): NK_rect <cimport,nodecl> end
global function nk_recta(pos: NK_vec2, size: NK_vec2): NK_rect <cimport,nodecl> end
global function nk_rectv(xywh: *float32): NK_rect <cimport,nodecl> end
global function nk_rectiv(xywh: *cint): NK_rect <cimport,nodecl> end
global function nk_rect_pos(a1: NK_rect): NK_vec2 <cimport,nodecl> end
global function nk_rect_size(a1: NK_rect): NK_vec2 <cimport,nodecl> end
global function nk_strlen(str: cstring): cint <cimport,nodecl> end
global function nk_stricmp(s1: cstring, s2: cstring): cint <cimport,nodecl> end
global function nk_stricmpn(s1: cstring, s2: cstring, n: cint): cint <cimport,nodecl> end
global function nk_strtoi(str: cstring, endptr: *cstring): cint <cimport,nodecl> end
global function nk_strtof(str: cstring, endptr: *cstring): float32 <cimport,nodecl> end
global function nk_strtod(str: cstring, endptr: *cstring): float64 <cimport,nodecl> end
global function nk_strfilter(text: cstring, regexp: cstring): cint <cimport,nodecl> end
global function nk_strmatch_fuzzy_string(str: cstring, pattern: cstring, out_score: *cint): cint <cimport,nodecl> end
global function nk_strmatch_fuzzy_text(txt: cstring, txt_len: cint, pattern: cstring, out_score: *cint): cint <cimport,nodecl> end
global function nk_utf_decode(a1: cstring, a2: *cuint, a3: cint): cint <cimport,nodecl> end
global function nk_utf_encode(a1: cuint, a2: cstring, a3: cint): cint <cimport,nodecl> end
global function nk_utf_len(a1: cstring, byte_len: cint): cint <cimport,nodecl> end
global function nk_utf_at(buffer: cstring, length: cint, index: cint, unicode: *cuint, len: *cint): cstring <cimport,nodecl> end
global NK_user_font_glyph: type <cimport,nodecl,forwarddecl,ctypedef'nk_user_font_glyph'> = @record{}
global nk_text_width_f: type <cimport,nodecl> = @function(NK_handle, float32, cstring, cint): float32
global nk_query_font_glyph_f: type <cimport,nodecl> = @function(NK_handle, float32, *NK_user_font_glyph, cuint, cuint): void
NK_user_font_glyph = @record{
uv: [2]NK_vec2,
offset: NK_vec2,
width: float32,
height: float32,
xadvance: float32
}
NK_user_font = @record{
userdata: NK_handle,
height: float32,
width: nk_text_width_f,
query: nk_query_font_glyph_f,
texture: NK_handle
}
global NK_font_coord_type: type <cimport,nodecl,using,ctypedef'nk_font_coord_type'> = @enum(cint){
NK_COORD_UV = 0,
NK_COORD_PIXEL = 1
}
global NK_font: type <cimport,nodecl,forwarddecl,ctypedef'nk_font'> = @record{}
global NK_baked_font: type <cimport,nodecl,ctypedef'nk_baked_font'> = @record{
height: float32,
ascent: float32,
descent: float32,
glyph_offset: cuint,
glyph_count: cuint,
ranges: *cuint
}
global NK_font_config: type <cimport,nodecl,forwarddecl,ctypedef'nk_font_config'> = @record{}
NK_font_config = @record{
next: *NK_font_config,
ttf_blob: pointer,
ttf_size: culong,
ttf_data_owned_by_atlas: cuchar,
merge_mode: cuchar,
pixel_snap: cuchar,
oversample_v: cuchar,
oversample_h: cuchar,
padding: [3]cuchar,
size: float32,
coord_type: NK_font_coord_type,
spacing: NK_vec2,
range: *cuint,
font: *NK_baked_font,
fallback_glyph: cuint,
n: *NK_font_config,
p: *NK_font_config
}
global NK_font_glyph: type <cimport,nodecl,ctypedef'nk_font_glyph'> = @record{
codepoint: cuint,
xadvance: float32,
x0: float32,
y0: float32,
x1: float32,
y1: float32,
w: float32,
h: float32,
u0: float32,
v0: float32,
u1: float32,
v1: float32
}
NK_font = @record{
next: *NK_font,
handle: NK_user_font,
info: NK_baked_font,
scale: float32,
glyphs: *NK_font_glyph,
fallback: *NK_font_glyph,
fallback_codepoint: cuint,
texture: NK_handle,
config: *NK_font_config
}
global NK_font_atlas_format: type <cimport,nodecl,using,ctypedef'nk_font_atlas_format'> = @enum(cint){
NK_FONT_ATLAS_ALPHA8 = 0,
NK_FONT_ATLAS_RGBA32 = 1
}
global NK_font_atlas: type <cimport,nodecl,ctypedef'nk_font_atlas'> = @record{
pixel: pointer,
tex_width: cint,
tex_height: cint,
permanent: NK_allocator,
temporary: NK_allocator,
custom: NK_recti,
cursors: [7]NK_cursor,
glyph_count: cint,
glyphs: *NK_font_glyph,
default_font: *NK_font,
fonts: *NK_font,
config: *NK_font_config,
font_num: cint
}
global function nk_font_default_glyph_ranges(): *cuint <cimport,nodecl> end
global function nk_font_chinese_glyph_ranges(): *cuint <cimport,nodecl> end
global function nk_font_cyrillic_glyph_ranges(): *cuint <cimport,nodecl> end
global function nk_font_korean_glyph_ranges(): *cuint <cimport,nodecl> end
global function nk_font_atlas_init_default(a1: *NK_font_atlas): void <cimport,nodecl> end
global function nk_font_atlas_init(a1: *NK_font_atlas, a2: *NK_allocator): void <cimport,nodecl> end
global function nk_font_atlas_init_custom(a1: *NK_font_atlas, persistent: *NK_allocator, transient: *NK_allocator): void <cimport,nodecl> end
global function nk_font_atlas_begin(a1: *NK_font_atlas): void <cimport,nodecl> end
global function nk_font_config(pixel_height: float32): NK_font_config <cimport,nodecl> end
global function nk_font_atlas_add(a1: *NK_font_atlas, a2: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_add_default(a1: *NK_font_atlas, height: float32, a3: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_add_from_memory(atlas: *NK_font_atlas, memory: pointer, size: culong, height: float32, config: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_add_from_file(atlas: *NK_font_atlas, file_path: cstring, height: float32, a4: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_add_compressed(a1: *NK_font_atlas, memory: pointer, size: culong, height: float32, a5: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_add_compressed_base85(a1: *NK_font_atlas, data: cstring, height: float32, config: *NK_font_config): *NK_font <cimport,nodecl> end
global function nk_font_atlas_bake(a1: *NK_font_atlas, width: *cint, height: *cint, a4: NK_font_atlas_format): pointer <cimport,nodecl> end
global function nk_font_atlas_end(a1: *NK_font_atlas, tex: NK_handle, a3: *NK_draw_null_texture): void <cimport,nodecl> end
global function nk_font_find_glyph(a1: *NK_font, unicode: cuint): *NK_font_glyph <cimport,nodecl> end
global function nk_font_atlas_cleanup(atlas: *NK_font_atlas): void <cimport,nodecl> end
global function nk_font_atlas_clear(a1: *NK_font_atlas): void <cimport,nodecl> end
global NK_memory_status: type <cimport,nodecl,ctypedef'nk_memory_status'> = @record{
memory: pointer,
type: cuint,
size: culong,
allocated: culong,
needed: culong,
calls: culong
}
global NK_allocation_type: type <cimport,nodecl,using,ctypedef'nk_allocation_type'> = @enum(cint){
NK_BUFFER_FIXED = 0,
NK_BUFFER_DYNAMIC = 1
}
global NK_buffer_allocation_type: type <cimport,nodecl,using,ctypedef'nk_buffer_allocation_type'> = @enum(cint){
NK_BUFFER_FRONT = 0,
NK_BUFFER_BACK = 1,
NK_BUFFER_MAX = 2
}
global NK_buffer_marker: type <cimport,nodecl,ctypedef'nk_buffer_marker'> = @record{
active: cint,
offset: culong
}
global NK_memory: type <cimport,nodecl,ctypedef'nk_memory'> = @record{
ptr: pointer,
size: culong
}
NK_buffer = @record{
marker: [2]NK_buffer_marker,
pool: NK_allocator,
type: NK_allocation_type,
memory: NK_memory,
grow_factor: float32,
allocated: culong,
needed: culong,
calls: culong,
size: culong
}
global function nk_buffer_init_default(a1: *NK_buffer): void <cimport,nodecl> end
global function nk_buffer_init(a1: *NK_buffer, a2: *NK_allocator, size: culong): void <cimport,nodecl> end
global function nk_buffer_init_fixed(a1: *NK_buffer, memory: pointer, size: culong): void <cimport,nodecl> end
global function nk_buffer_info(a1: *NK_memory_status, a2: *NK_buffer): void <cimport,nodecl> end
global function nk_buffer_push(a1: *NK_buffer, type: NK_buffer_allocation_type, memory: pointer, size: culong, align: culong): void <cimport,nodecl> end
global function nk_buffer_mark(a1: *NK_buffer, type: NK_buffer_allocation_type): void <cimport,nodecl> end
global function nk_buffer_reset(a1: *NK_buffer, type: NK_buffer_allocation_type): void <cimport,nodecl> end
global function nk_buffer_clear(a1: *NK_buffer): void <cimport,nodecl> end
global function nk_buffer_free(a1: *NK_buffer): void <cimport,nodecl> end
global function nk_buffer_memory(a1: *NK_buffer): pointer <cimport,nodecl> end
global function nk_buffer_memory_const(a1: *NK_buffer): pointer <cimport,nodecl> end
global function nk_buffer_total(a1: *NK_buffer): culong <cimport,nodecl> end
global NK_str: type <cimport,nodecl,ctypedef'nk_str'> = @record{
buffer: NK_buffer,
len: cint
}
global function nk_str_init_default(a1: *NK_str): void <cimport,nodecl> end
global function nk_str_init(a1: *NK_str, a2: *NK_allocator, size: culong): void <cimport,nodecl> end
global function nk_str_init_fixed(a1: *NK_str, memory: pointer, size: culong): void <cimport,nodecl> end
global function nk_str_clear(a1: *NK_str): void <cimport,nodecl> end
global function nk_str_free(a1: *NK_str): void <cimport,nodecl> end
global function nk_str_append_text_char(a1: *NK_str, a2: cstring, a3: cint): cint <cimport,nodecl> end
global function nk_str_append_str_char(a1: *NK_str, a2: cstring): cint <cimport,nodecl> end
global function nk_str_append_text_utf8(a1: *NK_str, a2: cstring, a3: cint): cint <cimport,nodecl> end
global function nk_str_append_str_utf8(a1: *NK_str, a2: cstring): cint <cimport,nodecl> end
global function nk_str_append_text_runes(a1: *NK_str, a2: *cuint, a3: cint): cint <cimport,nodecl> end
global function nk_str_append_str_runes(a1: *NK_str, a2: *cuint): cint <cimport,nodecl> end
global function nk_str_insert_at_char(a1: *NK_str, pos: cint, a3: cstring, a4: cint): cint <cimport,nodecl> end
global function nk_str_insert_at_rune(a1: *NK_str, pos: cint, a3: cstring, a4: cint): cint <cimport,nodecl> end
global function nk_str_insert_text_char(a1: *NK_str, pos: cint, a3: cstring, a4: cint): cint <cimport,nodecl> end
global function nk_str_insert_str_char(a1: *NK_str, pos: cint, a3: cstring): cint <cimport,nodecl> end
global function nk_str_insert_text_utf8(a1: *NK_str, pos: cint, a3: cstring, a4: cint): cint <cimport,nodecl> end
global function nk_str_insert_str_utf8(a1: *NK_str, pos: cint, a3: cstring): cint <cimport,nodecl> end
global function nk_str_insert_text_runes(a1: *NK_str, pos: cint, a3: *cuint, a4: cint): cint <cimport,nodecl> end
global function nk_str_insert_str_runes(a1: *NK_str, pos: cint, a3: *cuint): cint <cimport,nodecl> end
global function nk_str_remove_chars(a1: *NK_str, len: cint): void <cimport,nodecl> end
global function nk_str_remove_runes(str: *NK_str, len: cint): void <cimport,nodecl> end
global function nk_str_delete_chars(a1: *NK_str, pos: cint, len: cint): void <cimport,nodecl> end
global function nk_str_delete_runes(a1: *NK_str, pos: cint, len: cint): void <cimport,nodecl> end
global function nk_str_at_char(a1: *NK_str, pos: cint): cstring <cimport,nodecl> end
global function nk_str_at_rune(a1: *NK_str, pos: cint, unicode: *cuint, len: *cint): cstring <cimport,nodecl> end
global function nk_str_rune_at(a1: *NK_str, pos: cint): cuint <cimport,nodecl> end
global function nk_str_at_char_const(a1: *NK_str, pos: cint): cstring <cimport,nodecl> end
global function nk_str_at_const(a1: *NK_str, pos: cint, unicode: *cuint, len: *cint): cstring <cimport,nodecl> end
global function nk_str_get(a1: *NK_str): cstring <cimport,nodecl> end
global function nk_str_get_const(a1: *NK_str): cstring <cimport,nodecl> end
global function nk_str_len(a1: *NK_str): cint <cimport,nodecl> end
global function nk_str_len_char(a1: *NK_str): cint <cimport,nodecl> end
global NK_clipboard: type <cimport,nodecl,ctypedef'nk_clipboard'> = @record{
userdata: NK_handle,
paste: nk_plugin_paste,
copy: nk_plugin_copy
}
global NK_text_undo_record: type <cimport,nodecl,ctypedef'nk_text_undo_record'> = @record{
where: cint,
insert_length: cshort,
delete_length: cshort,
char_storage: cshort
}
global NK_text_undo_state: type <cimport,nodecl,ctypedef'nk_text_undo_state'> = @record{
undo_rec: [99]NK_text_undo_record,
undo_char: [999]cuint,
undo_point: cshort,
redo_point: cshort,
undo_char_point: cshort,
redo_char_point: cshort
}
global NK_text_edit_type: type <cimport,nodecl,using,ctypedef'nk_text_edit_type'> = @enum(cint){
NK_TEXT_EDIT_SINGLE_LINE = 0,
NK_TEXT_EDIT_MULTI_LINE = 1
}
global NK_text_edit_mode: type <cimport,nodecl,using,ctypedef'nk_text_edit_mode'> = @enum(cint){
NK_TEXT_EDIT_MODE_VIEW = 0,
NK_TEXT_EDIT_MODE_INSERT = 1,
NK_TEXT_EDIT_MODE_REPLACE = 2
}
NK_text_edit = @record{
clip: NK_clipboard,
string: NK_str,
filter: nk_plugin_filter,
scrollbar: NK_vec2,
cursor: cint,
select_start: cint,
select_end: cint,
mode: cuchar,
cursor_at_end_of_line: cuchar,
initialized: cuchar,
has_preferred_x: cuchar,
single_line: cuchar,
active: cuchar,
padding1: cuchar,
preferred_x: float32,
undo: NK_text_undo_state
}
global function nk_filter_default(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_ascii(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_float(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_decimal(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_hex(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_oct(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_filter_binary(a1: *NK_text_edit, unicode: cuint): cint <cimport,nodecl> end
global function nk_textedit_init_default(a1: *NK_text_edit): void <cimport,nodecl> end
global function nk_textedit_init(a1: *NK_text_edit, a2: *NK_allocator, size: culong): void <cimport,nodecl> end