-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcore.json
More file actions
2322 lines (2322 loc) · 43.7 KB
/
core.json
File metadata and controls
2322 lines (2322 loc) · 43.7 KB
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
[
{
"fun": "cdef from_ptr(cimgui.ImGuiContext* ptr)",
"class": "_ImGuiContext"
},
{
"fun": "cdef from_ptr(cimgui.ImDrawCmd* ptr)",
"class": "_DrawCmd"
},
{
"fun": "def texture_id(self)",
"class": "_DrawCmd"
},
{
"fun": "def clip_rect(self)",
"class": "_DrawCmd"
},
{
"fun": "def elem_count(self)",
"class": "_DrawCmd"
},
{
"fun": "cdef from_ptr(cimgui.ImDrawList* ptr)",
"class": "_DrawList"
},
{
"fun": "def cmd_buffer_size(self)",
"class": "_DrawList"
},
{
"fun": "def cmd_buffer_data(self)",
"class": "_DrawList"
},
{
"fun": "def vtx_buffer_size(self)",
"class": "_DrawList"
},
{
"fun": "def vtx_buffer_data(self)",
"class": "_DrawList"
},
{
"fun": "def idx_buffer_size(self)",
"class": "_DrawList"
},
{
"fun": "def idx_buffer_data(self)",
"class": "_DrawList"
},
{
"fun": "def flags(self)",
"class": "_DrawList"
},
{
"fun": "def flags(self, cimgui.ImDrawListFlags flags)",
"class": "_DrawList"
},
{
"fun": "def push_clip_rect_full_screen(self)",
"class": "_DrawList"
},
{
"fun": "def pop_clip_rect(self)",
"class": "_DrawList"
},
{
"fun": "def push_texture_id(self, texture_id)",
"class": "_DrawList"
},
{
"fun": "def pop_texture_id(self)",
"class": "_DrawList"
},
{
"fun": "def get_clip_rect_min(self)",
"class": "_DrawList"
},
{
"fun": "def get_clip_rect_max(self)",
"class": "_DrawList"
},
{
"fun": "def channels_split(self, int channels_count)",
"class": "_DrawList"
},
{
"fun": "def channels_set_current(self, int idx)",
"class": "_DrawList"
},
{
"fun": "def channels_merge(self)",
"class": "_DrawList"
},
{
"fun": "def prim_reserve(self, int idx_count, int vtx_count)",
"class": "_DrawList"
},
{
"fun": "def prim_unreserve(self, int idx_count, int vtx_count)",
"class": "_DrawList"
},
{
"fun": "def prim_rect(self, float a_x, float a_y, float b_x, float b_y, cimgui.ImU32 color = 0xFFFFFFFF)",
"class": "_DrawList"
},
{
"fun": "def prim_write_vtx(self, float pos_x, float pos_y, float u, float v, cimgui.ImU32 color = 0xFFFFFFFF)",
"class": "_DrawList"
},
{
"fun": "def prim_write_idx(self, cimgui.ImDrawIdx idx)",
"class": "_DrawList"
},
{
"fun": "def prim_vtx(self, float pos_x, float pos_y, float u, float v, cimgui.ImU32 color = 0xFFFFFFFF)",
"class": "_DrawList"
},
{
"fun": "def commands(self)",
"class": "_DrawList"
},
{
"fun": "def create()",
"class": "GuiStyle"
},
{
"fun": "def alpha(self)",
"class": "GuiStyle"
},
{
"fun": "def alpha(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def window_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def window_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def window_min_size(self)",
"class": "GuiStyle"
},
{
"fun": "def window_min_size(self, value)",
"class": "GuiStyle"
},
{
"fun": "def window_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def window_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def window_border_size(self)",
"class": "GuiStyle"
},
{
"fun": "def window_border_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def child_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def child_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def child_border_size(self)",
"class": "GuiStyle"
},
{
"fun": "def child_border_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def popup_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def popup_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def popup_border_size(self)",
"class": "GuiStyle"
},
{
"fun": "def popup_border_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def window_title_align(self)",
"class": "GuiStyle"
},
{
"fun": "def window_title_align(self, value)",
"class": "GuiStyle"
},
{
"fun": "def window_menu_button_position(self)",
"class": "GuiStyle"
},
{
"fun": "def window_menu_button_position(self, cimgui.ImGuiDir value)",
"class": "GuiStyle"
},
{
"fun": "def frame_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def frame_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def frame_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def frame_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def frame_border_size(self)",
"class": "GuiStyle"
},
{
"fun": "def frame_border_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def item_spacing(self)",
"class": "GuiStyle"
},
{
"fun": "def item_spacing(self, value)",
"class": "GuiStyle"
},
{
"fun": "def item_inner_spacing(self)",
"class": "GuiStyle"
},
{
"fun": "def item_inner_spacing(self, value)",
"class": "GuiStyle"
},
{
"fun": "def cell_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def cell_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def touch_extra_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def touch_extra_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def indent_spacing(self)",
"class": "GuiStyle"
},
{
"fun": "def indent_spacing(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def columns_min_spacing(self)",
"class": "GuiStyle"
},
{
"fun": "def columns_min_spacing(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def scrollbar_size(self)",
"class": "GuiStyle"
},
{
"fun": "def scrollbar_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def scrollbar_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def scrollbar_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def grab_min_size(self)",
"class": "GuiStyle"
},
{
"fun": "def grab_min_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def grab_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def grab_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def log_slider_deadzone(self)",
"class": "GuiStyle"
},
{
"fun": "def log_slider_deadzone(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def tab_rounding(self)",
"class": "GuiStyle"
},
{
"fun": "def tab_rounding(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def tab_border_size(self)",
"class": "GuiStyle"
},
{
"fun": "def tab_border_size(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def tab_min_width_for_close_button(self)",
"class": "GuiStyle"
},
{
"fun": "def tab_min_width_for_close_button(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def color_button_position(self)",
"class": "GuiStyle"
},
{
"fun": "def color_button_position(self, cimgui.ImGuiDir value)",
"class": "GuiStyle"
},
{
"fun": "def button_text_align(self)",
"class": "GuiStyle"
},
{
"fun": "def button_text_align(self, value)",
"class": "GuiStyle"
},
{
"fun": "def selectable_text_align(self)",
"class": "GuiStyle"
},
{
"fun": "def selectable_text_align(self, value)",
"class": "GuiStyle"
},
{
"fun": "def display_window_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def display_window_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def display_safe_area_padding(self)",
"class": "GuiStyle"
},
{
"fun": "def display_safe_area_padding(self, value)",
"class": "GuiStyle"
},
{
"fun": "def mouse_cursor_scale(self)",
"class": "GuiStyle"
},
{
"fun": "def mouse_cursor_scale(self, value)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_lines(self)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_lines(self, cimgui.bool value)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_line_use_tex(self)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_line_use_tex(self, cimgui.bool value)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_fill(self)",
"class": "GuiStyle"
},
{
"fun": "def anti_aliased_fill(self, cimgui.bool value)",
"class": "GuiStyle"
},
{
"fun": "def curve_tessellation_tolerance(self)",
"class": "GuiStyle"
},
{
"fun": "def curve_tessellation_tolerance(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def circle_segment_max_error(self)",
"class": "GuiStyle"
},
{
"fun": "def circle_segment_max_error(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def circle_tessellation_max_error(self)",
"class": "GuiStyle"
},
{
"fun": "def circle_tessellation_max_error(self, float value)",
"class": "GuiStyle"
},
{
"fun": "def color(self, cimgui.ImGuiCol variable)",
"class": "GuiStyle"
},
{
"fun": "def colors(self)",
"class": "GuiStyle"
},
{
"fun": "def scale_all_sizes(self, float scale_factor)",
"class": "GuiStyle"
},
{
"fun": "def _require_pointer(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "cdef from_ptr(cimgui.ImGuiTableColumnSortSpecs* ptr)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def column_user_id(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def column_user_id(self, cimgui.ImGuiID column_user_id)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def column_index(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def column_index(self, cimgui.ImS16 column_index)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def sort_order(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def sort_order(self, cimgui.ImS16 sort_order)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def sort_direction(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def sort_direction(self, cimgui.ImGuiSortDirection sort_direction)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def _require_pointer(self)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "cdef from_ptr(cimgui.ImGuiTableSortSpecs* ptr)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "cdef _get_item(self, size_t idx)",
"class": "_ImGuiTableColumnSortSpecs"
},
{
"fun": "def _require_pointer(self)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "cdef from_ptr(cimgui.ImGuiTableSortSpecs* ptr)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "def specs(self)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "def specs_count(self)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "def specs_dirty(self)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "def specs_dirty(self, cimgui.bool specs_dirty)",
"class": "_ImGuiTableSortSpecs"
},
{
"fun": "def _require_pointer(self)",
"class": "_ImGuiViewport"
},
{
"fun": "cdef from_ptr(cimgui.ImGuiViewport* ptr)",
"class": "_ImGuiViewport"
},
{
"fun": "def id(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def parent_viewport_id(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def dpi_scale(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def flags(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def pos(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def size(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def work_pos(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def work_size(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def draw_data(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def pos(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def platform_request_resize(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def platform_request_move(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def platform_request_close(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def get_center(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def get_work_center(self)",
"class": "_ImGuiViewport"
},
{
"fun": "def _require_pointer(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "cdef from_ptr(cimgui.ImGuiWindowClass* ptr)",
"class": "ImGuiWindowClass"
},
{
"fun": "def class_id(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def parent_viewport_id(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def viewport_flags_override_set(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def viewport_flags_override_clear(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def tab_item_flags_override_set(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def docknode_flags_override_set(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def docking_always_tab_bar(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def docking_allow_unclassed(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def imgui_window_class(self)",
"class": "ImGuiWindowClass"
},
{
"fun": "def _require_pointer(self)",
"class": "_DrawData"
},
{
"fun": "cdef from_ptr(cimgui.ImDrawData* ptr)",
"class": "_DrawData"
},
{
"fun": "def deindex_all_buffers(self)",
"class": "_DrawData"
},
{
"fun": "def scale_clip_rects(self, width, height)",
"class": "_DrawData"
},
{
"fun": "def valid(self)",
"class": "_DrawData"
},
{
"fun": "def cmd_count(self)",
"class": "_DrawData"
},
{
"fun": "def total_vtx_count(self)",
"class": "_DrawData"
},
{
"fun": "def display_pos(self)",
"class": "_DrawData"
},
{
"fun": "def display_size(self)",
"class": "_DrawData"
},
{
"fun": "def frame_buffer_scale(self)",
"class": "_DrawData"
},
{
"fun": "def total_idx_count(self)",
"class": "_DrawData"
},
{
"fun": "def commands_lists(self)",
"class": "_DrawData"
},
{
"fun": "def owner_viewport(self)",
"class": "_DrawData"
},
{
"fun": "cdef from_ptr(const cimgui.ImWchar* ptr)",
"class": "_StaticGlyphRanges"
},
{
"fun": "cdef from_ptr(cimgui.ImFont* ptr)",
"class": "_Font"
},
{
"fun": "cdef from_ptr(cimgui.ImFontAtlas* ptr)",
"class": "_FontAtlas"
},
{
"fun": "def _require_pointer(self)",
"class": "_FontAtlas"
},
{
"fun": "def add_font_default(self)",
"class": "_FontAtlas"
},
{
"fun": "def clear_tex_data(self)",
"class": "_FontAtlas"
},
{
"fun": "def clear_input_data(self)",
"class": "_FontAtlas"
},
{
"fun": "def clear_fonts(self)",
"class": "_FontAtlas"
},
{
"fun": "def clear(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_default(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_korean(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_japanese(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_chinese_full(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_chinese(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_cyrillic(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_thai(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_vietnamese(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_glyph_ranges_latin(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_tex_data_as_alpha8(self)",
"class": "_FontAtlas"
},
{
"fun": "def get_tex_data_as_rgba32(self)",
"class": "_FontAtlas"
},
{
"fun": "def texture_id(self)",
"class": "_FontAtlas"
},
{
"fun": "def texture_width(self)",
"class": "_FontAtlas"
},
{
"fun": "def texture_height(self)",
"class": "_FontAtlas"
},
{
"fun": "def texture_id(self, value)",
"class": "_FontAtlas"
},
{
"fun": "def config_flags(self)",
"class": "_IO"
},
{
"fun": "def config_flags(self, cimgui.ImGuiConfigFlags value)",
"class": "_IO"
},
{
"fun": "def backend_flags(self)",
"class": "_IO"
},
{
"fun": "def backend_flags(self, cimgui.ImGuiBackendFlags value)",
"class": "_IO"
},
{
"fun": "def display_size(self)",
"class": "_IO"
},
{
"fun": "def display_size(self, value)",
"class": "_IO"
},
{
"fun": "def delta_time(self)",
"class": "_IO"
},
{
"fun": "def delta_time(self, float time)",
"class": "_IO"
},
{
"fun": "def ini_saving_rate(self)",
"class": "_IO"
},
{
"fun": "def ini_saving_rate(self, float value)",
"class": "_IO"
},
{
"fun": "def log_file_name(self)",
"class": "_IO"
},
{
"fun": "def log_file_name(self, char* value)",
"class": "_IO"
},
{
"fun": "def ini_file_name(self)",
"class": "_IO"
},
{
"fun": "def ini_file_name(self, char* value)",
"class": "_IO"
},
{
"fun": "def mouse_double_click_time(self)",
"class": "_IO"
},
{
"fun": "def mouse_double_click_time(self, float value)",
"class": "_IO"
},
{
"fun": "def mouse_double_click_max_distance(self)",
"class": "_IO"
},
{
"fun": "def mouse_double_click_max_distance(self, float value)",
"class": "_IO"
},
{
"fun": "def mouse_drag_threshold(self)",
"class": "_IO"
},
{
"fun": "def mouse_drag_threshold(self, float value)",
"class": "_IO"
},
{
"fun": "def key_map(self)",
"class": "_IO"
},
{
"fun": "def key_repeat_delay(self)",
"class": "_IO"
},
{
"fun": "def key_repeat_delay(self, float value)",
"class": "_IO"
},
{
"fun": "def key_repeat_rate(self)",
"class": "_IO"
},
{
"fun": "def key_repeat_rate(self, float value)",
"class": "_IO"
},
{
"fun": "def fonts(self)",
"class": "_IO"
},
{
"fun": "def font_global_scale(self)",
"class": "_IO"
},
{
"fun": "def font_global_scale(self, float value)",
"class": "_IO"
},
{
"fun": "def font_allow_user_scaling(self)",
"class": "_IO"
},
{
"fun": "def font_allow_user_scaling(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def display_fb_scale(self)",
"class": "_IO"
},
{
"fun": "def display_fb_scale(self, value)",
"class": "_IO"
},
{
"fun": "def config_mac_osx_behaviors(self)",
"class": "_IO"
},
{
"fun": "def config_mac_osx_behaviors(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def config_cursor_blink(self)",
"class": "_IO"
},
{
"fun": "def config_cursor_blink(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def config_drag_click_to_input_text(self)",
"class": "_IO"
},
{
"fun": "def config_drag_click_to_input_text(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def config_windows_resize_from_edges(self)",
"class": "_IO"
},
{
"fun": "def config_windows_resize_from_edges(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def config_windows_move_from_title_bar_only(self)",
"class": "_IO"
},
{
"fun": "def config_windows_move_from_title_bar_only(self, cimgui.bool value)",
"class": "_IO"
},
{
"fun": "def config_memory_compact_timer(self)",
"class": "_IO"
},
{
"fun": "def config_memory_compact_timer(self, float value)",
"class": "_IO"
},
{
"fun": "def get_clipboard_text_fn(self)",
"class": "_IO"
},
{
"fun": "def get_clipboard_text_fn(self, func)",
"class": "_IO"
},
{
"fun": "def set_clipboard_text_fn(self)",
"class": "_IO"
},
{
"fun": "def set_clipboard_text_fn(self, func)",
"class": "_IO"
},
{
"fun": "def mouse_pos(self)",
"class": "_IO"
},
{
"fun": "def mouse_pos(self, value)",
"class": "_IO"
},
{
"fun": "def mouse_down(self)",
"class": "_IO"
},
{
"fun": "def mouse_wheel(self)",
"class": "_IO"