py-imgui-redux 3.4.1__cp313-cp313-win_amd64.whl → 4.0.0__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
imgui/__init__.pyi CHANGED
@@ -2,6 +2,8 @@
2
2
  from __future__ import annotations
3
3
  import imgui
4
4
  import typing
5
+ import collections.abc
6
+ import types
5
7
 
6
8
  __all__ = [
7
9
  "AcceptDragDropPayload",
@@ -76,6 +78,7 @@ __all__ = [
76
78
  "DragInt3",
77
79
  "DragInt4",
78
80
  "DragIntRange2",
81
+ "DrawData",
79
82
  "DrawFlags",
80
83
  "DrawListFlags",
81
84
  "Dummy",
@@ -100,6 +103,7 @@ __all__ = [
100
103
  "FloatList",
101
104
  "FloatRef",
102
105
  "FocusedFlags",
106
+ "FontFlags",
103
107
  "GetBackgroundDrawList",
104
108
  "GetClipboardText",
105
109
  "GetColorU32",
@@ -156,11 +160,14 @@ __all__ = [
156
160
  "ImDrawList",
157
161
  "ImFont",
158
162
  "ImFontAtlas",
163
+ "ImFontAtlasRect",
164
+ "ImFontBaked",
159
165
  "ImFontConfig",
160
166
  "ImFontGlyph",
161
167
  "ImKey",
162
168
  "Image",
163
169
  "ImageButton",
170
+ "ImageWithBg",
164
171
  "Indent",
165
172
  "InitContextForGLFW",
166
173
  "InputFlags",
@@ -373,6 +380,8 @@ __all__ = [
373
380
  "TextLinkOpenURL",
374
381
  "TextWrapped",
375
382
  "Texture",
383
+ "TextureFormat",
384
+ "TextureStatus",
376
385
  "TreeNode",
377
386
  "TreeNodeEx",
378
387
  "TreeNodeFlags",
@@ -400,6 +409,7 @@ class BackendFlags():
400
409
  HasMouseCursors = 2
401
410
  HasSetMousePos = 4
402
411
  None_ = 0
412
+ RendererHasTextures = 16
403
413
  RendererHasVtxOffset = 8
404
414
  pass
405
415
  class BoolRef():
@@ -449,22 +459,23 @@ class Col():
449
459
  ButtonHovered = 22
450
460
  CheckMark = 18
451
461
  ChildBg = 3
452
- DragDropTarget = 51
462
+ DragDropTarget = 53
453
463
  FrameBg = 7
454
464
  FrameBgActive = 9
455
465
  FrameBgHovered = 8
456
466
  Header = 24
457
467
  HeaderActive = 26
458
468
  HeaderHovered = 25
469
+ InputTextCursor = 33
459
470
  MenuBarBg = 13
460
- ModalWindowDimBg = 55
461
- NavCursor = 52
462
- NavWindowingDimBg = 54
463
- NavWindowingHighlight = 53
464
- PlotHistogram = 42
465
- PlotHistogramHovered = 43
466
- PlotLines = 40
467
- PlotLinesHovered = 41
471
+ ModalWindowDimBg = 57
472
+ NavCursor = 54
473
+ NavWindowingDimBg = 56
474
+ NavWindowingHighlight = 55
475
+ PlotHistogram = 43
476
+ PlotHistogramHovered = 44
477
+ PlotLines = 41
478
+ PlotLinesHovered = 42
468
479
  PopupBg = 4
469
480
  ResizeGrip = 30
470
481
  ResizeGripActive = 32
@@ -478,37 +489,38 @@ class Col():
478
489
  SeparatorHovered = 28
479
490
  SliderGrab = 19
480
491
  SliderGrabActive = 20
481
- Tab = 34
482
- TabDimmed = 37
483
- TabDimmedSelected = 38
484
- TabDimmedSelectedOverline = 39
485
- TabHovered = 33
486
- TabSelected = 35
487
- TabSelectedOverline = 36
488
- TableBorderLight = 46
489
- TableBorderStrong = 45
490
- TableHeaderBg = 44
491
- TableRowBg = 47
492
- TableRowBgAlt = 48
492
+ Tab = 35
493
+ TabDimmed = 38
494
+ TabDimmedSelected = 39
495
+ TabDimmedSelectedOverline = 40
496
+ TabHovered = 34
497
+ TabSelected = 36
498
+ TabSelectedOverline = 37
499
+ TableBorderLight = 47
500
+ TableBorderStrong = 46
501
+ TableHeaderBg = 45
502
+ TableRowBg = 48
503
+ TableRowBgAlt = 49
493
504
  Text = 0
494
505
  TextDisabled = 1
495
- TextLink = 49
496
- TextSelectedBg = 50
506
+ TextLink = 50
507
+ TextSelectedBg = 51
497
508
  TitleBg = 10
498
509
  TitleBgActive = 11
499
510
  TitleBgCollapsed = 12
511
+ TreeLines = 52
500
512
  WindowBg = 2
501
513
  pass
502
514
  class Color():
503
515
  @staticmethod
504
- def HSV(h: float, s: float, v: float, a: float = 1.0) -> Color: ...
505
- def SetHSV(self, h: float, s: float, v: float, a: float = 1.0) -> None: ...
516
+ def HSV(h: typing.SupportsFloat, s: typing.SupportsFloat, v: typing.SupportsFloat, a: typing.SupportsFloat = 1.0) -> Color: ...
517
+ def SetHSV(self, h: typing.SupportsFloat, s: typing.SupportsFloat, v: typing.SupportsFloat, a: typing.SupportsFloat = 1.0) -> None: ...
506
518
  @typing.overload
507
519
  def __init__(self) -> None: ...
508
520
  @typing.overload
509
- def __init__(self, r: float, g: float, b: float, a: float = 1.0) -> None: ...
521
+ def __init__(self, r: typing.SupportsFloat, g: typing.SupportsFloat, b: typing.SupportsFloat, a: typing.SupportsFloat = 1.0) -> None: ...
510
522
  @typing.overload
511
- def __init__(self, r: int, g: int, b: int, a: int = 255) -> None: ...
523
+ def __init__(self, r: typing.SupportsInt, g: typing.SupportsInt, b: typing.SupportsInt, a: typing.SupportsInt = 255) -> None: ...
512
524
  @property
513
525
  def Value(self) -> Vec4:
514
526
  """
@@ -587,15 +599,15 @@ class DoubleList():
587
599
  """
588
600
  Thin wrapper over a std::vector<double>
589
601
  """
590
- def __getitem__(self, index: int) -> float: ...
602
+ def __getitem__(self, index: typing.SupportsInt) -> float: ...
591
603
  @typing.overload
592
604
  def __init__(self) -> None: ...
593
605
  @typing.overload
594
- def __init__(self, vals: list[float] = []) -> None: ...
595
- def __iter__(self) -> typing.Iterator: ...
606
+ def __init__(self, vals: collections.abc.Sequence[typing.SupportsFloat] = []) -> None: ...
607
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
596
608
  def __len__(self) -> int: ...
597
- def __setitem__(self, index: int, val: float) -> None: ...
598
- def append(self, val: float) -> None:
609
+ def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsFloat) -> None: ...
610
+ def append(self, val: typing.SupportsFloat) -> None:
599
611
  """
600
612
  Append a value to the end
601
613
  """
@@ -604,7 +616,7 @@ class DoubleList():
604
616
  """
605
617
  Pop a value from the end
606
618
  """
607
- def resize(self, size: int) -> None:
619
+ def resize(self, size: typing.SupportsInt) -> None:
608
620
  """
609
621
  Resize the vector, dropping any lost values
610
622
  """
@@ -613,7 +625,7 @@ class DoubleRef():
613
625
  """
614
626
  A pass-by-ref wrapper for a double
615
627
  """
616
- def __init__(self, val: float = 0.0) -> None: ...
628
+ def __init__(self, val: typing.SupportsFloat = 0.0) -> None: ...
617
629
  def __str__(self) -> str: ...
618
630
  @property
619
631
  def val(self) -> float:
@@ -623,7 +635,7 @@ class DoubleRef():
623
635
  :type: float
624
636
  """
625
637
  @val.setter
626
- def val(self, arg0: float) -> None:
638
+ def val(self, arg0: typing.SupportsFloat) -> None:
627
639
  """
628
640
  The wrapped value
629
641
  """
@@ -643,6 +655,52 @@ class DragDropFlags():
643
655
  SourceNoHoldToOpenOthers = 4
644
656
  SourceNoPreviewTooltip = 1
645
657
  pass
658
+ class DrawData():
659
+ @property
660
+ def CmdListsCount(self) -> int:
661
+ """
662
+ :type: int
663
+ """
664
+ @property
665
+ def DisplayPos(self) -> Vec2:
666
+ """
667
+ :type: Vec2
668
+ """
669
+ @DisplayPos.setter
670
+ def DisplayPos(self, arg0: Vec2) -> None:
671
+ pass
672
+ @property
673
+ def DisplaySize(self) -> Vec2:
674
+ """
675
+ :type: Vec2
676
+ """
677
+ @DisplaySize.setter
678
+ def DisplaySize(self, arg0: Vec2) -> None:
679
+ pass
680
+ @property
681
+ def FramebufferScale(self) -> Vec2:
682
+ """
683
+ :type: Vec2
684
+ """
685
+ @FramebufferScale.setter
686
+ def FramebufferScale(self, arg0: Vec2) -> None:
687
+ pass
688
+ @property
689
+ def TotalIdxCount(self) -> int:
690
+ """
691
+ :type: int
692
+ """
693
+ @property
694
+ def TotalVtxCount(self) -> int:
695
+ """
696
+ :type: int
697
+ """
698
+ @property
699
+ def Valid(self) -> bool:
700
+ """
701
+ :type: bool
702
+ """
703
+ pass
646
704
  class DrawFlags():
647
705
  Closed = 1
648
706
  None_ = 0
@@ -670,15 +728,15 @@ class FloatList():
670
728
  """
671
729
  Thin wrapper over a std::vector<float>
672
730
  """
673
- def __getitem__(self, index: int) -> float: ...
731
+ def __getitem__(self, index: typing.SupportsInt) -> float: ...
674
732
  @typing.overload
675
733
  def __init__(self) -> None: ...
676
734
  @typing.overload
677
- def __init__(self, vals: list[float] = []) -> None: ...
678
- def __iter__(self) -> typing.Iterator: ...
735
+ def __init__(self, vals: collections.abc.Sequence[typing.SupportsFloat] = []) -> None: ...
736
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
679
737
  def __len__(self) -> int: ...
680
- def __setitem__(self, index: int, val: float) -> None: ...
681
- def append(self, val: float) -> None:
738
+ def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsFloat) -> None: ...
739
+ def append(self, val: typing.SupportsFloat) -> None:
682
740
  """
683
741
  Append a value to the end
684
742
  """
@@ -687,7 +745,7 @@ class FloatList():
687
745
  """
688
746
  Pop a value from the end
689
747
  """
690
- def resize(self, size: int) -> None:
748
+ def resize(self, size: typing.SupportsInt) -> None:
691
749
  """
692
750
  Resize the vector, dropping any lost values
693
751
  """
@@ -696,7 +754,7 @@ class FloatRef():
696
754
  """
697
755
  A pass-by-ref wrapper for a float
698
756
  """
699
- def __init__(self, val: float = 0.0) -> None: ...
757
+ def __init__(self, val: typing.SupportsFloat = 0.0) -> None: ...
700
758
  def __str__(self) -> str: ...
701
759
  @property
702
760
  def val(self) -> float:
@@ -706,7 +764,7 @@ class FloatRef():
706
764
  :type: float
707
765
  """
708
766
  @val.setter
709
- def val(self, arg0: float) -> None:
767
+ def val(self, arg0: typing.SupportsFloat) -> None:
710
768
  """
711
769
  The wrapped value
712
770
  """
@@ -719,6 +777,12 @@ class FocusedFlags():
719
777
  RootAndChildWindows = 3
720
778
  RootWindow = 2
721
779
  pass
780
+ class FontFlags():
781
+ LockBakedSizes = 8
782
+ NoLoadError = 2
783
+ NoLoadGlyphs = 4
784
+ None_ = 0
785
+ pass
722
786
  class HoveredFlags():
723
787
  AllowWhenBlockedByActiveItem = 128
724
788
  AllowWhenBlockedByPopup = 32
@@ -743,20 +807,20 @@ class HoveredFlags():
743
807
  pass
744
808
  class IO():
745
809
  def AddFocusEvent(self, focused: bool) -> None: ...
746
- def AddInputCharacter(self, c: int) -> None: ...
747
- def AddInputCharacterUTF16(self, c: int) -> None: ...
810
+ def AddInputCharacter(self, c: typing.SupportsInt) -> None: ...
811
+ def AddInputCharacterUTF16(self, c: typing.SupportsInt) -> None: ...
748
812
  def AddInputCharactersUTF8(self, str: str) -> None: ...
749
- def AddKeyAnalogEvent(self, key: ImGuiKey, down: bool, v: float) -> None: ...
813
+ def AddKeyAnalogEvent(self, key: ImGuiKey, down: bool, v: typing.SupportsFloat) -> None: ...
750
814
  def AddKeyEvent(self, key: ImGuiKey, down: bool) -> None: ...
751
- def AddMouseButtonEvent(self, button: int, down: bool) -> None: ...
752
- def AddMousePosEvent(self, x: float, y: float) -> None: ...
815
+ def AddMouseButtonEvent(self, button: typing.SupportsInt, down: bool) -> None: ...
816
+ def AddMousePosEvent(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> None: ...
753
817
  def AddMouseSourceEvent(self, source: ImGuiMouseSource) -> None: ...
754
- def AddMouseWheelEvent(self, wh_x: float, wh_y: float) -> None: ...
818
+ def AddMouseWheelEvent(self, wh_x: typing.SupportsFloat, wh_y: typing.SupportsFloat) -> None: ...
755
819
  def ClearEventsQueue(self) -> None: ...
756
820
  def ClearInputKeys(self) -> None: ...
757
821
  def ClearInputMouse(self) -> None: ...
758
822
  def SetAppAcceptingEvents(self, accepting_events: bool) -> None: ...
759
- def SetKeyEventNativeData(self, key: ImGuiKey, native_keycode: int, native_scancode: int, native_legacy_index: int = -1) -> None: ...
823
+ def SetKeyEventNativeData(self, key: ImGuiKey, native_keycode: typing.SupportsInt, native_scancode: typing.SupportsInt, native_legacy_index: typing.SupportsInt = -1) -> None: ...
760
824
  def __init__(self) -> None: ...
761
825
  @property
762
826
  def AppAcceptingEvents(self) -> bool:
@@ -780,15 +844,15 @@ class IO():
780
844
  :type: int
781
845
  """
782
846
  @BackendFlags.setter
783
- def BackendFlags(self, arg0: int) -> None:
847
+ def BackendFlags(self, arg0: typing.SupportsInt) -> None:
784
848
  pass
785
849
  @property
786
- def BackendLanguageUserData(self) -> capsule:
850
+ def BackendLanguageUserData(self) -> types.CapsuleType:
787
851
  """
788
- :type: capsule
852
+ :type: types.CapsuleType
789
853
  """
790
854
  @BackendLanguageUserData.setter
791
- def BackendLanguageUserData(self, arg0: capsule) -> None:
855
+ def BackendLanguageUserData(self, arg0: types.CapsuleType) -> None:
792
856
  pass
793
857
  @property
794
858
  def BackendPlatformName(self) -> str:
@@ -799,12 +863,12 @@ class IO():
799
863
  def BackendPlatformName(self, arg0: str) -> None:
800
864
  pass
801
865
  @property
802
- def BackendPlatformUserData(self) -> capsule:
866
+ def BackendPlatformUserData(self) -> types.CapsuleType:
803
867
  """
804
- :type: capsule
868
+ :type: types.CapsuleType
805
869
  """
806
870
  @BackendPlatformUserData.setter
807
- def BackendPlatformUserData(self, arg0: capsule) -> None:
871
+ def BackendPlatformUserData(self, arg0: types.CapsuleType) -> None:
808
872
  pass
809
873
  @property
810
874
  def BackendRendererName(self) -> str:
@@ -815,12 +879,12 @@ class IO():
815
879
  def BackendRendererName(self, arg0: str) -> None:
816
880
  pass
817
881
  @property
818
- def BackendRendererUserData(self) -> capsule:
882
+ def BackendRendererUserData(self) -> types.CapsuleType:
819
883
  """
820
- :type: capsule
884
+ :type: types.CapsuleType
821
885
  """
822
886
  @BackendRendererUserData.setter
823
- def BackendRendererUserData(self, arg0: capsule) -> None:
887
+ def BackendRendererUserData(self, arg0: types.CapsuleType) -> None:
824
888
  pass
825
889
  @property
826
890
  def ConfigDebugBeginReturnValueLoop(self) -> bool:
@@ -847,6 +911,14 @@ class IO():
847
911
  def ConfigDebugHighlightIdConflicts(self, arg0: bool) -> None:
848
912
  pass
849
913
  @property
914
+ def ConfigDebugHighlightIdConflictsShowItemPicker(self) -> bool:
915
+ """
916
+ :type: bool
917
+ """
918
+ @ConfigDebugHighlightIdConflictsShowItemPicker.setter
919
+ def ConfigDebugHighlightIdConflictsShowItemPicker(self, arg0: bool) -> None:
920
+ pass
921
+ @property
850
922
  def ConfigDebugIgnoreFocusLoss(self) -> bool:
851
923
  """
852
924
  :type: bool
@@ -916,7 +988,7 @@ class IO():
916
988
  :type: int
917
989
  """
918
990
  @ConfigFlags.setter
919
- def ConfigFlags(self, arg0: int) -> None:
991
+ def ConfigFlags(self, arg0: typing.SupportsInt) -> None:
920
992
  pass
921
993
  @property
922
994
  def ConfigInputTextCursorBlink(self) -> bool:
@@ -956,7 +1028,7 @@ class IO():
956
1028
  :type: float
957
1029
  """
958
1030
  @ConfigMemoryCompactTimer.setter
959
- def ConfigMemoryCompactTimer(self, arg0: float) -> None:
1031
+ def ConfigMemoryCompactTimer(self, arg0: typing.SupportsFloat) -> None:
960
1032
  pass
961
1033
  @property
962
1034
  def ConfigNavCaptureKeyboard(self) -> bool:
@@ -1052,7 +1124,7 @@ class IO():
1052
1124
  :type: float
1053
1125
  """
1054
1126
  @DeltaTime.setter
1055
- def DeltaTime(self, arg0: float) -> None:
1127
+ def DeltaTime(self, arg0: typing.SupportsFloat) -> None:
1056
1128
  pass
1057
1129
  @property
1058
1130
  def DisplayFramebufferScale(self) -> Vec2:
@@ -1087,14 +1159,6 @@ class IO():
1087
1159
  def FontDefault(self, arg0: ImFont) -> None:
1088
1160
  pass
1089
1161
  @property
1090
- def FontGlobalScale(self) -> float:
1091
- """
1092
- :type: float
1093
- """
1094
- @FontGlobalScale.setter
1095
- def FontGlobalScale(self, arg0: float) -> None:
1096
- pass
1097
- @property
1098
1162
  def Fonts(self) -> ImFontAtlas:
1099
1163
  """
1100
1164
  :type: ImFontAtlas
@@ -1121,7 +1185,7 @@ class IO():
1121
1185
  :type: float
1122
1186
  """
1123
1187
  @IniSavingRate.setter
1124
- def IniSavingRate(self, arg0: float) -> None:
1188
+ def IniSavingRate(self, arg0: typing.SupportsFloat) -> None:
1125
1189
  pass
1126
1190
  @property
1127
1191
  def InputQueueSurrogate(self) -> int:
@@ -1129,7 +1193,7 @@ class IO():
1129
1193
  :type: int
1130
1194
  """
1131
1195
  @InputQueueSurrogate.setter
1132
- def InputQueueSurrogate(self, arg0: int) -> None:
1196
+ def InputQueueSurrogate(self, arg0: typing.SupportsInt) -> None:
1133
1197
  pass
1134
1198
  @property
1135
1199
  def KeyAlt(self) -> bool:
@@ -1153,7 +1217,7 @@ class IO():
1153
1217
  :type: int
1154
1218
  """
1155
1219
  @KeyMods.setter
1156
- def KeyMods(self, arg0: int) -> None:
1220
+ def KeyMods(self, arg0: typing.SupportsInt) -> None:
1157
1221
  pass
1158
1222
  @property
1159
1223
  def KeyRepeatDelay(self) -> float:
@@ -1161,7 +1225,7 @@ class IO():
1161
1225
  :type: float
1162
1226
  """
1163
1227
  @KeyRepeatDelay.setter
1164
- def KeyRepeatDelay(self, arg0: float) -> None:
1228
+ def KeyRepeatDelay(self, arg0: typing.SupportsFloat) -> None:
1165
1229
  pass
1166
1230
  @property
1167
1231
  def KeyRepeatRate(self) -> float:
@@ -1169,7 +1233,7 @@ class IO():
1169
1233
  :type: float
1170
1234
  """
1171
1235
  @KeyRepeatRate.setter
1172
- def KeyRepeatRate(self, arg0: float) -> None:
1236
+ def KeyRepeatRate(self, arg0: typing.SupportsFloat) -> None:
1173
1237
  pass
1174
1238
  @property
1175
1239
  def KeyShift(self) -> bool:
@@ -1259,7 +1323,7 @@ class IO():
1259
1323
  :type: float
1260
1324
  """
1261
1325
  @MouseDoubleClickMaxDist.setter
1262
- def MouseDoubleClickMaxDist(self, arg0: float) -> None:
1326
+ def MouseDoubleClickMaxDist(self, arg0: typing.SupportsFloat) -> None:
1263
1327
  pass
1264
1328
  @property
1265
1329
  def MouseDoubleClickTime(self) -> float:
@@ -1267,7 +1331,7 @@ class IO():
1267
1331
  :type: float
1268
1332
  """
1269
1333
  @MouseDoubleClickTime.setter
1270
- def MouseDoubleClickTime(self, arg0: float) -> None:
1334
+ def MouseDoubleClickTime(self, arg0: typing.SupportsFloat) -> None:
1271
1335
  pass
1272
1336
  @property
1273
1337
  def MouseDoubleClicked(self) -> ListWrapperBool:
@@ -1310,7 +1374,7 @@ class IO():
1310
1374
  :type: float
1311
1375
  """
1312
1376
  @MouseDragThreshold.setter
1313
- def MouseDragThreshold(self, arg0: float) -> None:
1377
+ def MouseDragThreshold(self, arg0: typing.SupportsFloat) -> None:
1314
1378
  pass
1315
1379
  @property
1316
1380
  def MouseDrawCursor(self) -> bool:
@@ -1347,7 +1411,7 @@ class IO():
1347
1411
  :type: float
1348
1412
  """
1349
1413
  @MouseWheel.setter
1350
- def MouseWheel(self, arg0: float) -> None:
1414
+ def MouseWheel(self, arg0: typing.SupportsFloat) -> None:
1351
1415
  pass
1352
1416
  @property
1353
1417
  def MouseWheelH(self) -> float:
@@ -1355,7 +1419,7 @@ class IO():
1355
1419
  :type: float
1356
1420
  """
1357
1421
  @MouseWheelH.setter
1358
- def MouseWheelH(self, arg0: float) -> None:
1422
+ def MouseWheelH(self, arg0: typing.SupportsFloat) -> None:
1359
1423
  pass
1360
1424
  @property
1361
1425
  def MouseWheelRequestAxisSwap(self) -> bool:
@@ -1381,7 +1445,7 @@ class IO():
1381
1445
  :type: float
1382
1446
  """
1383
1447
  @PenPressure.setter
1384
- def PenPressure(self, arg0: float) -> None:
1448
+ def PenPressure(self, arg0: typing.SupportsFloat) -> None:
1385
1449
  pass
1386
1450
  @property
1387
1451
  def WantCaptureKeyboard(self) -> bool:
@@ -1433,232 +1497,195 @@ class IO():
1433
1497
  pass
1434
1498
  pass
1435
1499
  class ImDrawList():
1436
- def AddBezierCubic(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: int, thickness: float, num_segments: int = 0) -> None: ...
1437
- def AddBezierQuadratic(self, p1: Vec2, p2: Vec2, p3: Vec2, col: int, thickness: float, num_segments: int = 0) -> None: ...
1438
- def AddCircle(self, center: Vec2, radius: float, col: int, num_segments: int = 0, thickness: float = 1.0) -> None: ...
1439
- def AddCircleFilled(self, center: Vec2, radius: float, col: int, num_segments: int = 0) -> None: ...
1440
- def AddConcavePolyFilled(self, arg0: Vec2List, arg1: int) -> None: ...
1441
- def AddConvexPolyFilled(self, points: Vec2List, col: int) -> None: ...
1442
- def AddEllipse(self, center: Vec2, radius: Vec2, col: int, rot: float = 0.0, num_segments: int = 0, thickness: float = 1.0) -> None: ...
1443
- def AddEllipseFilled(self, center: Vec2, radius: Vec2, col: int, rot: float = 0.0, num_segments: int = 0) -> None: ...
1444
- def AddImage(self, user_texture_id: Texture, p_min: Vec2, p_max: Vec2, uv_min: Vec2 = Vec2(0, 0), uv_max: Vec2 = Vec2(1, 1), col: int = 4294967295) -> None: ...
1445
- def AddImageQuad(self, user_texture_id: Texture, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, uv1: Vec2 = Vec2(0, 0), uv2: Vec2 = Vec2(1, 0), uv3: Vec2 = Vec2(0, 1), uv4: Vec2 = Vec2(1, 1), col: int = 4294967295) -> None: ...
1446
- def AddImageRounded(self, user_texture_id: Texture, p_min: Vec2, p_max: Vec2, uv_min: Vec2, uv_max: Vec2, col: int, rounding: float, flags: int = 0) -> None: ...
1447
- def AddLine(self, p1: Vec2, p2: Vec2, col: int, thickness: float = 1.0) -> None: ...
1448
- def AddNgon(self, center: Vec2, radius: float, col: int, num_segments: int, thickness: float = 1.0) -> None: ...
1449
- def AddNgonFilled(self, center: Vec2, radius: float, col: int, num_segments: int) -> None: ...
1450
- def AddPolyline(self, points: Vec2List, col: int, flags: int, thickness: float) -> None: ...
1451
- def AddQuad(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: int, thickness: float = 1.0) -> None: ...
1452
- def AddQuadFilled(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: int) -> None: ...
1453
- def AddRect(self, p_min: Vec2, p_max: Vec2, col: int, rounding: float = 0.0, flags: int = 0, thickness: float = 1.0) -> None: ...
1454
- def AddRectFilled(self, p_min: Vec2, p_max: Vec2, col: int, rounding: float, flags: int = 0) -> None: ...
1455
- def AddRectFilledMultiColor(self, p_min: Vec2, p_max: Vec2, col_upr_left: int, col_upr_right: int, col_bot_right: int, col_bot_left: int) -> None: ...
1456
- def AddText(self, pos: Vec2, col: int, text: str, font: typing.Optional[ImFont] = None, font_size: float = 1.0, wrap_width: float = 0.0, cpu_fine_clip_rect: typing.Optional[Vec4] = None) -> None: ...
1457
- def AddTriangle(self, p1: Vec2, p2: Vec2, p3: Vec2, col: int, thickness: float = 1.0) -> None: ...
1458
- def AddTriangleFilled(self, p1: Vec2, p2: Vec2, p3: Vec2, col: int) -> None: ...
1500
+ def AddBezierCubic(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: typing.SupportsInt, thickness: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
1501
+ def AddBezierQuadratic(self, p1: Vec2, p2: Vec2, p3: Vec2, col: typing.SupportsInt, thickness: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
1502
+ def AddCircle(self, center: Vec2, radius: typing.SupportsFloat, col: typing.SupportsInt, num_segments: typing.SupportsInt = 0, thickness: typing.SupportsFloat = 1.0) -> None: ...
1503
+ def AddCircleFilled(self, center: Vec2, radius: typing.SupportsFloat, col: typing.SupportsInt, num_segments: typing.SupportsInt = 0) -> None: ...
1504
+ def AddConcavePolyFilled(self, arg0: Vec2List, arg1: typing.SupportsInt) -> None: ...
1505
+ def AddConvexPolyFilled(self, points: Vec2List, col: typing.SupportsInt) -> None: ...
1506
+ def AddEllipse(self, center: Vec2, radius: Vec2, col: typing.SupportsInt, rot: typing.SupportsFloat = 0.0, num_segments: typing.SupportsInt = 0, thickness: typing.SupportsFloat = 1.0) -> None: ...
1507
+ def AddEllipseFilled(self, center: Vec2, radius: Vec2, col: typing.SupportsInt, rot: typing.SupportsFloat = 0.0, num_segments: typing.SupportsInt = 0) -> None: ...
1508
+ def AddImage(self, user_texture_id: Texture, p_min: Vec2, p_max: Vec2, uv_min: Vec2 = Vec2(0, 0), uv_max: Vec2 = Vec2(1, 1), col: typing.SupportsInt = 4294967295) -> None: ...
1509
+ def AddImageQuad(self, user_texture_id: Texture, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, uv1: Vec2 = Vec2(0, 0), uv2: Vec2 = Vec2(1, 0), uv3: Vec2 = Vec2(0, 1), uv4: Vec2 = Vec2(1, 1), col: typing.SupportsInt = 4294967295) -> None: ...
1510
+ def AddImageRounded(self, user_texture_id: Texture, p_min: Vec2, p_max: Vec2, uv_min: Vec2, uv_max: Vec2, col: typing.SupportsInt, rounding: typing.SupportsFloat, flags: typing.SupportsInt = 0) -> None: ...
1511
+ def AddLine(self, p1: Vec2, p2: Vec2, col: typing.SupportsInt, thickness: typing.SupportsFloat = 1.0) -> None: ...
1512
+ def AddNgon(self, center: Vec2, radius: typing.SupportsFloat, col: typing.SupportsInt, num_segments: typing.SupportsInt, thickness: typing.SupportsFloat = 1.0) -> None: ...
1513
+ def AddNgonFilled(self, center: Vec2, radius: typing.SupportsFloat, col: typing.SupportsInt, num_segments: typing.SupportsInt) -> None: ...
1514
+ def AddPolyline(self, points: Vec2List, col: typing.SupportsInt, flags: typing.SupportsInt, thickness: typing.SupportsFloat) -> None: ...
1515
+ def AddQuad(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: typing.SupportsInt, thickness: typing.SupportsFloat = 1.0) -> None: ...
1516
+ def AddQuadFilled(self, p1: Vec2, p2: Vec2, p3: Vec2, p4: Vec2, col: typing.SupportsInt) -> None: ...
1517
+ def AddRect(self, p_min: Vec2, p_max: Vec2, col: typing.SupportsInt, rounding: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0, thickness: typing.SupportsFloat = 1.0) -> None: ...
1518
+ def AddRectFilled(self, p_min: Vec2, p_max: Vec2, col: typing.SupportsInt, rounding: typing.SupportsFloat, flags: typing.SupportsInt = 0) -> None: ...
1519
+ def AddRectFilledMultiColor(self, p_min: Vec2, p_max: Vec2, col_upr_left: typing.SupportsInt, col_upr_right: typing.SupportsInt, col_bot_right: typing.SupportsInt, col_bot_left: typing.SupportsInt) -> None: ...
1520
+ def AddText(self, pos: Vec2, col: typing.SupportsInt, text: str, font: typing.Optional[ImFont] = None, font_size: typing.SupportsFloat = 1.0, wrap_width: typing.SupportsFloat = 0.0, cpu_fine_clip_rect: typing.Optional[Vec4] = None) -> None: ...
1521
+ def AddTriangle(self, p1: Vec2, p2: Vec2, p3: Vec2, col: typing.SupportsInt, thickness: typing.SupportsFloat = 1.0) -> None: ...
1522
+ def AddTriangleFilled(self, p1: Vec2, p2: Vec2, p3: Vec2, col: typing.SupportsInt) -> None: ...
1459
1523
  def ChannelsMerge(self) -> None: ...
1460
- def ChannelsSetCurrent(self, n: int) -> None: ...
1461
- def ChannelsSplit(self, count: int) -> None: ...
1462
- def PathArcTo(self, center: Vec2, radius: float, a_min: float, a_max: float, num_segments: int = 0) -> None: ...
1463
- def PathArcToFast(self, center: Vec2, radius: float, a_min_of_12: int, a_max_of_12: int) -> None: ...
1464
- def PathBezierCubicCurveTo(self, p2: Vec2, p3: Vec2, p4: Vec2, num_segments: int = 0) -> None: ...
1465
- def PathBezierQuadraticCurveTo(self, p2: Vec2, p3: Vec2, num_segments: int = 0) -> None: ...
1524
+ def ChannelsSetCurrent(self, n: typing.SupportsInt) -> None: ...
1525
+ def ChannelsSplit(self, count: typing.SupportsInt) -> None: ...
1526
+ def PathArcTo(self, center: Vec2, radius: typing.SupportsFloat, a_min: typing.SupportsFloat, a_max: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
1527
+ def PathArcToFast(self, center: Vec2, radius: typing.SupportsFloat, a_min_of_12: typing.SupportsInt, a_max_of_12: typing.SupportsInt) -> None: ...
1528
+ def PathBezierCubicCurveTo(self, p2: Vec2, p3: Vec2, p4: Vec2, num_segments: typing.SupportsInt = 0) -> None: ...
1529
+ def PathBezierQuadraticCurveTo(self, p2: Vec2, p3: Vec2, num_segments: typing.SupportsInt = 0) -> None: ...
1466
1530
  def PathClear(self) -> None: ...
1467
- def PathEllipticalArcTo(self, center: Vec2, radius: Vec2, rot: float, a_min: float, a_max: float, num_segments: int = 0) -> None: ...
1468
- def PathFillConcave(self, col: int) -> None: ...
1469
- def PathFillConvex(self, col: int) -> None: ...
1531
+ def PathEllipticalArcTo(self, center: Vec2, radius: Vec2, rot: typing.SupportsFloat, a_min: typing.SupportsFloat, a_max: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
1532
+ def PathFillConcave(self, col: typing.SupportsInt) -> None: ...
1533
+ def PathFillConvex(self, col: typing.SupportsInt) -> None: ...
1470
1534
  def PathLineTo(self, pos: Vec2) -> None: ...
1471
1535
  def PathLineToMergeDuplicate(self, pos: Vec2) -> None: ...
1472
- def PathRect(self, rect_min: Vec2, rect_max: Vec2, rounding: float = 0.0, flags: int = 0) -> None: ...
1473
- def PathStroke(self, col: int, flags: int = 0, thickness: float = 1.0) -> None: ...
1536
+ def PathRect(self, rect_min: Vec2, rect_max: Vec2, rounding: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0) -> None: ...
1537
+ def PathStroke(self, col: typing.SupportsInt, flags: typing.SupportsInt = 0, thickness: typing.SupportsFloat = 1.0) -> None: ...
1474
1538
  def PopClipRect(self) -> None: ...
1475
- def PopTextureID(self) -> None: ...
1539
+ def PopTexture(self) -> None: ...
1476
1540
  def PushClipRect(self, clip_rect_min: Vec2, clip_rect_max: Vec2, intersect_with_current_clip_rect: bool = False) -> None: ...
1477
1541
  def PushClipRectFullScreen(self) -> None: ...
1478
- def PushTextureID(self, arg0: int) -> None: ...
1542
+ def PushTexture(self, arg0: ImTextureRef) -> None: ...
1479
1543
  @property
1480
1544
  def Flags(self) -> int:
1481
1545
  """
1482
1546
  :type: int
1483
1547
  """
1484
1548
  @Flags.setter
1485
- def Flags(self, arg0: int) -> None:
1549
+ def Flags(self, arg0: typing.SupportsInt) -> None:
1486
1550
  pass
1487
1551
  pass
1488
1552
  class ImFont():
1489
- def CalcTextSizeA(self, text: str, max_width: float = 3.4028234663852886e+38, wrap_width: float = -1.0) -> Vec2: ...
1490
- def FindGlyph(self, c: int) -> ImFontGlyph: ...
1491
- def FindGlyphNoFallback(self, c: int) -> ImFontGlyph: ...
1492
- def GetCharAdvance(self, c: int) -> float: ...
1553
+ def CalcTextSizeA(self, size: typing.SupportsFloat, text: str, max_width: typing.SupportsFloat, wrap_width: typing.SupportsFloat) -> Vec2: ...
1554
+ def CalcWordWrapPosition(self, size: typing.SupportsFloat, text: str, wrap_width: typing.SupportsFloat) -> str: ...
1493
1555
  def GetDebugName(self) -> str: ...
1556
+ def GetFontBaked(self, font_size: typing.SupportsFloat, density: typing.SupportsFloat = -1.0) -> ImFontBaked: ...
1557
+ def IsGlyphInFont(self, c: typing.SupportsInt) -> bool: ...
1494
1558
  def IsLoaded(self) -> bool: ...
1495
- def RenderChar(self, draw_list: ImDrawList, size: float, pos: Vec2, col: int, c: int) -> None: ...
1496
- @property
1497
- def Ascent(self) -> float:
1498
- """
1499
- :type: float
1500
- """
1501
- @Ascent.setter
1502
- def Ascent(self, arg0: float) -> None:
1503
- pass
1504
1559
  @property
1505
- def ConfigData(self) -> ImFontConfig:
1506
- """
1507
- :type: ImFontConfig
1508
- """
1509
- @ConfigData.setter
1510
- def ConfigData(self, arg0: ImFontConfig) -> None:
1511
- pass
1512
- @property
1513
- def ConfigDataCount(self) -> int:
1560
+ def EllipsisChar(self) -> int:
1514
1561
  """
1515
1562
  :type: int
1516
1563
  """
1517
- @ConfigDataCount.setter
1518
- def ConfigDataCount(self, arg0: int) -> None:
1519
- pass
1520
1564
  @property
1521
- def ContainerAtlas(self) -> ImFontAtlas:
1565
+ def FallbackChar(self) -> int:
1522
1566
  """
1523
- :type: ImFontAtlas
1567
+ :type: int
1524
1568
  """
1525
- @ContainerAtlas.setter
1526
- def ContainerAtlas(self, arg0: ImFontAtlas) -> None:
1527
- pass
1528
1569
  @property
1529
- def Descent(self) -> float:
1570
+ def LegacySize(self) -> float:
1530
1571
  """
1531
1572
  :type: float
1532
1573
  """
1533
- @Descent.setter
1534
- def Descent(self, arg0: float) -> None:
1535
- pass
1574
+ pass
1575
+ class ImFontAtlas():
1576
+ def AddCustomRect(self, width: typing.SupportsInt, height: typing.SupportsInt, out_r: typing.Optional[ImFontAtlasRect] = None) -> int: ...
1577
+ def AddFont(self, font_cfg: ImFontConfig) -> ImFont: ...
1578
+ def AddFontDefault(self, font_cfg: typing.Optional[ImFontConfig] = None) -> ImFont: ...
1579
+ def AddFontFromFileTTF(self, filename: str, size_pixels: typing.SupportsFloat, font_cfg: typing.Optional[ImFontConfig] = None, glyph_ranges: typing.Optional[WCharList] = None) -> ImFont: ...
1580
+ def Clear(self) -> None: ...
1581
+ def ClearFonts(self) -> None: ...
1582
+ def ClearInputData(self) -> None: ...
1583
+ def ClearTexData(self) -> None: ...
1584
+ def CompactCache(self) -> None: ...
1585
+ def GetCustomRect(self, id: typing.SupportsInt, out_r: ImFontAtlasRect) -> bool: ...
1586
+ def GetGlyphRangesDefault(self) -> int: ...
1587
+ def RemoveCustomRect(self, id: typing.SupportsInt) -> None: ...
1588
+ def RemoveFont(self, font: ImFont) -> None: ...
1536
1589
  @property
1537
- def DirtyLookupTables(self) -> bool:
1590
+ def Flags(self) -> int:
1538
1591
  """
1539
- :type: bool
1592
+ :type: int
1540
1593
  """
1541
- @DirtyLookupTables.setter
1542
- def DirtyLookupTables(self, arg0: bool) -> None:
1594
+ @Flags.setter
1595
+ def Flags(self, arg0: typing.SupportsInt) -> None:
1543
1596
  pass
1544
1597
  @property
1545
- def EllipsisChar(self) -> int:
1598
+ def TexDesiredFormat(self) -> ImTextureFormat:
1546
1599
  """
1547
- :type: int
1600
+ :type: ImTextureFormat
1548
1601
  """
1549
- @EllipsisChar.setter
1550
- def EllipsisChar(self, arg0: int) -> None:
1602
+ @TexDesiredFormat.setter
1603
+ def TexDesiredFormat(self, arg0: ImTextureFormat) -> None:
1551
1604
  pass
1552
1605
  @property
1553
- def EllipsisCharCount(self) -> int:
1606
+ def TexGlyphPadding(self) -> int:
1554
1607
  """
1555
1608
  :type: int
1556
1609
  """
1557
- @EllipsisCharCount.setter
1558
- def EllipsisCharCount(self, arg0: int) -> None:
1610
+ @TexGlyphPadding.setter
1611
+ def TexGlyphPadding(self, arg0: typing.SupportsInt) -> None:
1559
1612
  pass
1560
1613
  @property
1561
- def EllipsisCharStep(self) -> float:
1614
+ def TexMaxHeight(self) -> int:
1562
1615
  """
1563
- :type: float
1616
+ :type: int
1564
1617
  """
1565
- @EllipsisCharStep.setter
1566
- def EllipsisCharStep(self, arg0: float) -> None:
1618
+ @TexMaxHeight.setter
1619
+ def TexMaxHeight(self, arg0: typing.SupportsInt) -> None:
1567
1620
  pass
1568
1621
  @property
1569
- def EllipsisWidth(self) -> float:
1622
+ def TexMaxWidth(self) -> int:
1570
1623
  """
1571
- :type: float
1624
+ :type: int
1572
1625
  """
1573
- @EllipsisWidth.setter
1574
- def EllipsisWidth(self, arg0: float) -> None:
1626
+ @TexMaxWidth.setter
1627
+ def TexMaxWidth(self, arg0: typing.SupportsInt) -> None:
1575
1628
  pass
1576
1629
  @property
1577
- def FallbackAdvanceX(self) -> float:
1630
+ def TexMinHeight(self) -> int:
1578
1631
  """
1579
- :type: float
1632
+ :type: int
1580
1633
  """
1581
- @FallbackAdvanceX.setter
1582
- def FallbackAdvanceX(self, arg0: float) -> None:
1634
+ @TexMinHeight.setter
1635
+ def TexMinHeight(self, arg0: typing.SupportsInt) -> None:
1583
1636
  pass
1584
1637
  @property
1585
- def FallbackChar(self) -> int:
1638
+ def TexMinWidth(self) -> int:
1586
1639
  """
1587
1640
  :type: int
1588
1641
  """
1589
- @FallbackChar.setter
1590
- def FallbackChar(self, arg0: int) -> None:
1642
+ @TexMinWidth.setter
1643
+ def TexMinWidth(self, arg0: typing.SupportsInt) -> None:
1591
1644
  pass
1592
1645
  @property
1593
- def FallbackGlyph(self) -> ImFontGlyph:
1646
+ def TexRef(self) -> ImTextureRef:
1594
1647
  """
1595
- :type: ImFontGlyph
1648
+ :type: ImTextureRef
1596
1649
  """
1597
- @FallbackGlyph.setter
1598
- def FallbackGlyph(self, arg0: ImFontGlyph) -> None:
1599
- pass
1650
+ pass
1651
+ class ImFontAtlasRect():
1652
+ def __init__(self) -> None: ...
1600
1653
  @property
1601
- def FontSize(self) -> float:
1654
+ def h(self) -> int:
1602
1655
  """
1603
- :type: float
1656
+ :type: int
1604
1657
  """
1605
- @FontSize.setter
1606
- def FontSize(self, arg0: float) -> None:
1607
- pass
1608
1658
  @property
1609
- def Glyphs(self) -> ImVector<ImFontGlyph>:
1659
+ def uv0(self) -> Vec2:
1610
1660
  """
1611
- :type: ImVector<ImFontGlyph>
1661
+ :type: Vec2
1612
1662
  """
1613
- @Glyphs.setter
1614
- def Glyphs(self, arg0: ImVector<ImFontGlyph>) -> None:
1615
- pass
1616
1663
  @property
1617
- def IndexAdvanceX(self) -> ImVector<float>:
1664
+ def uv1(self) -> Vec2:
1618
1665
  """
1619
- :type: ImVector<float>
1666
+ :type: Vec2
1620
1667
  """
1621
- @IndexAdvanceX.setter
1622
- def IndexAdvanceX(self, arg0: ImVector<float>) -> None:
1623
- pass
1624
1668
  @property
1625
- def IndexLookup(self) -> ImVector<unsigned short>:
1669
+ def w(self) -> int:
1626
1670
  """
1627
- :type: ImVector<unsigned short>
1671
+ :type: int
1628
1672
  """
1629
- @IndexLookup.setter
1630
- def IndexLookup(self, arg0: ImVector<unsigned short>) -> None:
1631
- pass
1632
1673
  @property
1633
- def MetricsTotalSurface(self) -> int:
1674
+ def x(self) -> int:
1634
1675
  """
1635
1676
  :type: int
1636
1677
  """
1637
- @MetricsTotalSurface.setter
1638
- def MetricsTotalSurface(self, arg0: int) -> None:
1639
- pass
1640
1678
  @property
1641
- def Scale(self) -> float:
1679
+ def y(self) -> int:
1642
1680
  """
1643
- :type: float
1681
+ :type: int
1644
1682
  """
1645
- @Scale.setter
1646
- def Scale(self, arg0: float) -> None:
1647
- pass
1648
1683
  pass
1649
- class ImFontAtlas():
1650
- def AddCustomRectFontGlyph(self, font: ImFont, id: int, width: int, height: int, advance_x: float, offset: Vec2 = Vec2(0, 0)) -> int: ...
1651
- def AddCustomRectRegular(self, width: int, height: int) -> int: ...
1652
- def AddFont(self, font_cfg: ImFontConfig) -> ImFont: ...
1653
- def AddFontDefault(self, font_cfg: typing.Optional[ImFontConfig] = None) -> ImFont: ...
1654
- def AddFontFromFileTTF(self, filename: str, size_pixels: float, font_cfg: typing.Optional[ImFontConfig] = None, glyph_ranges: typing.Optional[WCharList] = None) -> ImFont: ...
1655
- def Build(self) -> bool: ...
1656
- def Clear(self) -> None: ...
1657
- def ClearFonts(self) -> None: ...
1658
- def ClearInputData(self) -> None: ...
1659
- def ClearTexData(self) -> None: ...
1660
- def IsBuilt(self) -> bool: ...
1661
- def SetTexID(self, id: int) -> None: ...
1684
+ class ImFontBaked():
1685
+ def FindGlyph(self, c: typing.SupportsInt) -> ImFontGlyph: ...
1686
+ def FindGlyphNoFallback(self, c: typing.SupportsInt) -> ImFontGlyph: ...
1687
+ def GetCharAdvance(self, c: typing.SupportsInt) -> float: ...
1688
+ def IsGlyphLoaded(self, arg0: typing.SupportsInt) -> bool: ...
1662
1689
  pass
1663
1690
  class ImFontConfig():
1664
1691
  def __init__(self) -> None: ...
@@ -1668,15 +1695,7 @@ class ImFontConfig():
1668
1695
  :type: int
1669
1696
  """
1670
1697
  @EllipsisChar.setter
1671
- def EllipsisChar(self, arg0: int) -> None:
1672
- pass
1673
- @property
1674
- def FontBuilderFlags(self) -> int:
1675
- """
1676
- :type: int
1677
- """
1678
- @FontBuilderFlags.setter
1679
- def FontBuilderFlags(self, arg0: int) -> None:
1698
+ def EllipsisChar(self, arg0: typing.SupportsInt) -> None:
1680
1699
  pass
1681
1700
  @property
1682
1701
  def FontDataOwnedByAtlas(self) -> bool:
@@ -1692,7 +1711,15 @@ class ImFontConfig():
1692
1711
  :type: int
1693
1712
  """
1694
1713
  @FontDataSize.setter
1695
- def FontDataSize(self, arg0: int) -> None:
1714
+ def FontDataSize(self, arg0: typing.SupportsInt) -> None:
1715
+ pass
1716
+ @property
1717
+ def FontLoaderFlags(self) -> int:
1718
+ """
1719
+ :type: int
1720
+ """
1721
+ @FontLoaderFlags.setter
1722
+ def FontLoaderFlags(self, arg0: typing.SupportsInt) -> None:
1696
1723
  pass
1697
1724
  @property
1698
1725
  def FontNo(self) -> int:
@@ -1700,15 +1727,15 @@ class ImFontConfig():
1700
1727
  :type: int
1701
1728
  """
1702
1729
  @FontNo.setter
1703
- def FontNo(self, arg0: int) -> None:
1730
+ def FontNo(self, arg0: typing.SupportsInt) -> None:
1704
1731
  pass
1705
1732
  @property
1706
- def GlyphExtraSpacing(self) -> Vec2:
1733
+ def GlyphExtraAdvanceX(self) -> float:
1707
1734
  """
1708
- :type: Vec2
1735
+ :type: float
1709
1736
  """
1710
- @GlyphExtraSpacing.setter
1711
- def GlyphExtraSpacing(self, arg0: Vec2) -> None:
1737
+ @GlyphExtraAdvanceX.setter
1738
+ def GlyphExtraAdvanceX(self, arg0: typing.SupportsFloat) -> None:
1712
1739
  pass
1713
1740
  @property
1714
1741
  def GlyphMaxAdvanceX(self) -> float:
@@ -1716,7 +1743,7 @@ class ImFontConfig():
1716
1743
  :type: float
1717
1744
  """
1718
1745
  @GlyphMaxAdvanceX.setter
1719
- def GlyphMaxAdvanceX(self, arg0: float) -> None:
1746
+ def GlyphMaxAdvanceX(self, arg0: typing.SupportsFloat) -> None:
1720
1747
  pass
1721
1748
  @property
1722
1749
  def GlyphMinAdvanceX(self) -> float:
@@ -1724,7 +1751,7 @@ class ImFontConfig():
1724
1751
  :type: float
1725
1752
  """
1726
1753
  @GlyphMinAdvanceX.setter
1727
- def GlyphMinAdvanceX(self, arg0: float) -> None:
1754
+ def GlyphMinAdvanceX(self, arg0: typing.SupportsFloat) -> None:
1728
1755
  pass
1729
1756
  @property
1730
1757
  def GlyphOffset(self) -> Vec2:
@@ -1748,7 +1775,7 @@ class ImFontConfig():
1748
1775
  :type: int
1749
1776
  """
1750
1777
  @OversampleH.setter
1751
- def OversampleH(self, arg0: int) -> None:
1778
+ def OversampleH(self, arg0: typing.SupportsInt) -> None:
1752
1779
  pass
1753
1780
  @property
1754
1781
  def OversampleV(self) -> int:
@@ -1756,7 +1783,7 @@ class ImFontConfig():
1756
1783
  :type: int
1757
1784
  """
1758
1785
  @OversampleV.setter
1759
- def OversampleV(self, arg0: int) -> None:
1786
+ def OversampleV(self, arg0: typing.SupportsInt) -> None:
1760
1787
  pass
1761
1788
  @property
1762
1789
  def PixelSnapH(self) -> bool:
@@ -1767,12 +1794,20 @@ class ImFontConfig():
1767
1794
  def PixelSnapH(self, arg0: bool) -> None:
1768
1795
  pass
1769
1796
  @property
1797
+ def PixelSnapV(self) -> bool:
1798
+ """
1799
+ :type: bool
1800
+ """
1801
+ @PixelSnapV.setter
1802
+ def PixelSnapV(self, arg0: bool) -> None:
1803
+ pass
1804
+ @property
1770
1805
  def RasterizerDensity(self) -> float:
1771
1806
  """
1772
1807
  :type: float
1773
1808
  """
1774
1809
  @RasterizerDensity.setter
1775
- def RasterizerDensity(self, arg0: float) -> None:
1810
+ def RasterizerDensity(self, arg0: typing.SupportsFloat) -> None:
1776
1811
  pass
1777
1812
  @property
1778
1813
  def RasterizerMultiply(self) -> float:
@@ -1780,7 +1815,7 @@ class ImFontConfig():
1780
1815
  :type: float
1781
1816
  """
1782
1817
  @RasterizerMultiply.setter
1783
- def RasterizerMultiply(self, arg0: float) -> None:
1818
+ def RasterizerMultiply(self, arg0: typing.SupportsFloat) -> None:
1784
1819
  pass
1785
1820
  @property
1786
1821
  def SizePixels(self) -> float:
@@ -1788,7 +1823,7 @@ class ImFontConfig():
1788
1823
  :type: float
1789
1824
  """
1790
1825
  @SizePixels.setter
1791
- def SizePixels(self, arg0: float) -> None:
1826
+ def SizePixels(self, arg0: typing.SupportsFloat) -> None:
1792
1827
  pass
1793
1828
  pass
1794
1829
  class ImFontGlyph():
@@ -1798,7 +1833,7 @@ class ImFontGlyph():
1798
1833
  :type: float
1799
1834
  """
1800
1835
  @AdvanceX.setter
1801
- def AdvanceX(self, arg0: float) -> None:
1836
+ def AdvanceX(self, arg0: typing.SupportsFloat) -> None:
1802
1837
  pass
1803
1838
  @property
1804
1839
  def Codepoint(self) -> int:
@@ -1806,7 +1841,7 @@ class ImFontGlyph():
1806
1841
  :type: int
1807
1842
  """
1808
1843
  @Codepoint.setter
1809
- def Codepoint(self, arg1: int) -> None:
1844
+ def Codepoint(self, arg1: typing.SupportsInt) -> None:
1810
1845
  pass
1811
1846
  @property
1812
1847
  def Colored(self) -> int:
@@ -1814,7 +1849,7 @@ class ImFontGlyph():
1814
1849
  :type: int
1815
1850
  """
1816
1851
  @Colored.setter
1817
- def Colored(self, arg1: int) -> None:
1852
+ def Colored(self, arg1: typing.SupportsInt) -> None:
1818
1853
  pass
1819
1854
  @property
1820
1855
  def U0(self) -> float:
@@ -1822,7 +1857,7 @@ class ImFontGlyph():
1822
1857
  :type: float
1823
1858
  """
1824
1859
  @U0.setter
1825
- def U0(self, arg0: float) -> None:
1860
+ def U0(self, arg0: typing.SupportsFloat) -> None:
1826
1861
  pass
1827
1862
  @property
1828
1863
  def U1(self) -> float:
@@ -1830,7 +1865,7 @@ class ImFontGlyph():
1830
1865
  :type: float
1831
1866
  """
1832
1867
  @U1.setter
1833
- def U1(self, arg0: float) -> None:
1868
+ def U1(self, arg0: typing.SupportsFloat) -> None:
1834
1869
  pass
1835
1870
  @property
1836
1871
  def V0(self) -> float:
@@ -1838,7 +1873,7 @@ class ImFontGlyph():
1838
1873
  :type: float
1839
1874
  """
1840
1875
  @V0.setter
1841
- def V0(self, arg0: float) -> None:
1876
+ def V0(self, arg0: typing.SupportsFloat) -> None:
1842
1877
  pass
1843
1878
  @property
1844
1879
  def V1(self) -> float:
@@ -1846,7 +1881,7 @@ class ImFontGlyph():
1846
1881
  :type: float
1847
1882
  """
1848
1883
  @V1.setter
1849
- def V1(self, arg0: float) -> None:
1884
+ def V1(self, arg0: typing.SupportsFloat) -> None:
1850
1885
  pass
1851
1886
  @property
1852
1887
  def Visible(self) -> int:
@@ -1854,7 +1889,7 @@ class ImFontGlyph():
1854
1889
  :type: int
1855
1890
  """
1856
1891
  @Visible.setter
1857
- def Visible(self, arg1: int) -> None:
1892
+ def Visible(self, arg1: typing.SupportsInt) -> None:
1858
1893
  pass
1859
1894
  @property
1860
1895
  def X0(self) -> float:
@@ -1862,7 +1897,7 @@ class ImFontGlyph():
1862
1897
  :type: float
1863
1898
  """
1864
1899
  @X0.setter
1865
- def X0(self, arg0: float) -> None:
1900
+ def X0(self, arg0: typing.SupportsFloat) -> None:
1866
1901
  pass
1867
1902
  @property
1868
1903
  def X1(self) -> float:
@@ -1870,7 +1905,7 @@ class ImFontGlyph():
1870
1905
  :type: float
1871
1906
  """
1872
1907
  @X1.setter
1873
- def X1(self, arg0: float) -> None:
1908
+ def X1(self, arg0: typing.SupportsFloat) -> None:
1874
1909
  pass
1875
1910
  @property
1876
1911
  def Y0(self) -> float:
@@ -1878,7 +1913,7 @@ class ImFontGlyph():
1878
1913
  :type: float
1879
1914
  """
1880
1915
  @Y0.setter
1881
- def Y0(self, arg0: float) -> None:
1916
+ def Y0(self, arg0: typing.SupportsFloat) -> None:
1882
1917
  pass
1883
1918
  @property
1884
1919
  def Y1(self) -> float:
@@ -1886,7 +1921,7 @@ class ImFontGlyph():
1886
1921
  :type: float
1887
1922
  """
1888
1923
  @Y1.setter
1889
- def Y1(self, arg0: float) -> None:
1924
+ def Y1(self, arg0: typing.SupportsFloat) -> None:
1890
1925
  pass
1891
1926
  pass
1892
1927
  class ImKey():
@@ -2133,6 +2168,8 @@ class ImKey():
2133
2168
 
2134
2169
  AppForward
2135
2170
 
2171
+ Oem102
2172
+
2136
2173
  GamepadStart
2137
2174
 
2138
2175
  GamepadBack
@@ -2211,16 +2248,16 @@ class ImKey():
2211
2248
 
2212
2249
  NamedKey_END
2213
2250
  """
2214
- def __eq__(self, other: object) -> bool: ...
2215
- def __getstate__(self) -> int: ...
2216
- def __hash__(self) -> int: ...
2217
- def __index__(self) -> int: ...
2218
- def __init__(self, value: int) -> None: ...
2219
- def __int__(self) -> int: ...
2220
- def __ne__(self, other: object) -> bool: ...
2221
- def __repr__(self) -> str: ...
2222
- def __setstate__(self, state: int) -> None: ...
2223
- def __str__(self) -> str: ...
2251
+ def __eq__(self, other: object, /) -> bool: ...
2252
+ def __getstate__(self, /) -> int: ...
2253
+ def __hash__(self, /) -> int: ...
2254
+ def __index__(self, /) -> int: ...
2255
+ def __init__(self, value: typing.SupportsInt) -> None: ...
2256
+ def __int__(self, /) -> int: ...
2257
+ def __ne__(self, other: object, /) -> bool: ...
2258
+ def __repr__(self, /) -> str: ...
2259
+ def __setstate__(self, state: typing.SupportsInt, /) -> None: ...
2260
+ def __str__(self, /) -> str: ...
2224
2261
  @property
2225
2262
  def name(self) -> str:
2226
2263
  """
@@ -2275,30 +2312,30 @@ class ImKey():
2275
2312
  F8: imgui.ImKey # value = <ImKey.F8: 579>
2276
2313
  F9: imgui.ImKey # value = <ImKey.F9: 580>
2277
2314
  G: imgui.ImKey # value = <ImKey.G: 552>
2278
- GamepadBack: imgui.ImKey # value = <ImKey.GamepadBack: 632>
2279
- GamepadDpadDown: imgui.ImKey # value = <ImKey.GamepadDpadDown: 640>
2280
- GamepadDpadLeft: imgui.ImKey # value = <ImKey.GamepadDpadLeft: 637>
2281
- GamepadDpadRight: imgui.ImKey # value = <ImKey.GamepadDpadRight: 638>
2282
- GamepadDpadUp: imgui.ImKey # value = <ImKey.GamepadDpadUp: 639>
2283
- GamepadFaceDown: imgui.ImKey # value = <ImKey.GamepadFaceDown: 636>
2284
- GamepadFaceLeft: imgui.ImKey # value = <ImKey.GamepadFaceLeft: 633>
2285
- GamepadFaceRight: imgui.ImKey # value = <ImKey.GamepadFaceRight: 634>
2286
- GamepadFaceUp: imgui.ImKey # value = <ImKey.GamepadFaceUp: 635>
2287
- GamepadL1: imgui.ImKey # value = <ImKey.GamepadL1: 641>
2288
- GamepadL2: imgui.ImKey # value = <ImKey.GamepadL2: 643>
2289
- GamepadL3: imgui.ImKey # value = <ImKey.GamepadL3: 645>
2290
- GamepadLStickDown: imgui.ImKey # value = <ImKey.GamepadLStickDown: 650>
2291
- GamepadLStickLeft: imgui.ImKey # value = <ImKey.GamepadLStickLeft: 647>
2292
- GamepadLStickRight: imgui.ImKey # value = <ImKey.GamepadLStickRight: 648>
2293
- GamepadLStickUp: imgui.ImKey # value = <ImKey.GamepadLStickUp: 649>
2294
- GamepadR1: imgui.ImKey # value = <ImKey.GamepadR1: 642>
2295
- GamepadR2: imgui.ImKey # value = <ImKey.GamepadR2: 644>
2296
- GamepadR3: imgui.ImKey # value = <ImKey.GamepadR3: 646>
2297
- GamepadRStickDown: imgui.ImKey # value = <ImKey.GamepadRStickDown: 654>
2298
- GamepadRStickLeft: imgui.ImKey # value = <ImKey.GamepadRStickLeft: 651>
2299
- GamepadRStickRight: imgui.ImKey # value = <ImKey.GamepadRStickRight: 652>
2300
- GamepadRStickUp: imgui.ImKey # value = <ImKey.GamepadRStickUp: 653>
2301
- GamepadStart: imgui.ImKey # value = <ImKey.GamepadStart: 631>
2315
+ GamepadBack: imgui.ImKey # value = <ImKey.GamepadBack: 633>
2316
+ GamepadDpadDown: imgui.ImKey # value = <ImKey.GamepadDpadDown: 641>
2317
+ GamepadDpadLeft: imgui.ImKey # value = <ImKey.GamepadDpadLeft: 638>
2318
+ GamepadDpadRight: imgui.ImKey # value = <ImKey.GamepadDpadRight: 639>
2319
+ GamepadDpadUp: imgui.ImKey # value = <ImKey.GamepadDpadUp: 640>
2320
+ GamepadFaceDown: imgui.ImKey # value = <ImKey.GamepadFaceDown: 637>
2321
+ GamepadFaceLeft: imgui.ImKey # value = <ImKey.GamepadFaceLeft: 634>
2322
+ GamepadFaceRight: imgui.ImKey # value = <ImKey.GamepadFaceRight: 635>
2323
+ GamepadFaceUp: imgui.ImKey # value = <ImKey.GamepadFaceUp: 636>
2324
+ GamepadL1: imgui.ImKey # value = <ImKey.GamepadL1: 642>
2325
+ GamepadL2: imgui.ImKey # value = <ImKey.GamepadL2: 644>
2326
+ GamepadL3: imgui.ImKey # value = <ImKey.GamepadL3: 646>
2327
+ GamepadLStickDown: imgui.ImKey # value = <ImKey.GamepadLStickDown: 651>
2328
+ GamepadLStickLeft: imgui.ImKey # value = <ImKey.GamepadLStickLeft: 648>
2329
+ GamepadLStickRight: imgui.ImKey # value = <ImKey.GamepadLStickRight: 649>
2330
+ GamepadLStickUp: imgui.ImKey # value = <ImKey.GamepadLStickUp: 650>
2331
+ GamepadR1: imgui.ImKey # value = <ImKey.GamepadR1: 643>
2332
+ GamepadR2: imgui.ImKey # value = <ImKey.GamepadR2: 645>
2333
+ GamepadR3: imgui.ImKey # value = <ImKey.GamepadR3: 647>
2334
+ GamepadRStickDown: imgui.ImKey # value = <ImKey.GamepadRStickDown: 655>
2335
+ GamepadRStickLeft: imgui.ImKey # value = <ImKey.GamepadRStickLeft: 652>
2336
+ GamepadRStickRight: imgui.ImKey # value = <ImKey.GamepadRStickRight: 653>
2337
+ GamepadRStickUp: imgui.ImKey # value = <ImKey.GamepadRStickUp: 654>
2338
+ GamepadStart: imgui.ImKey # value = <ImKey.GamepadStart: 632>
2302
2339
  GraveAccent: imgui.ImKey # value = <ImKey.GraveAccent: 606>
2303
2340
  H: imgui.ImKey # value = <ImKey.H: 553>
2304
2341
  Home: imgui.ImKey # value = <ImKey.Home: 519>
@@ -2339,19 +2376,20 @@ class ImKey():
2339
2376
  Mod_None: imgui.ImKey # value = <ImKey.None_: 0>
2340
2377
  Mod_Shift: imgui.ImKey # value = <ImKey.Mod_Shift: 8192>
2341
2378
  Mod_Super: imgui.ImKey # value = <ImKey.Mod_Super: 32768>
2342
- MouseLeft: imgui.ImKey # value = <ImKey.MouseLeft: 655>
2343
- MouseMiddle: imgui.ImKey # value = <ImKey.MouseMiddle: 657>
2344
- MouseRight: imgui.ImKey # value = <ImKey.MouseRight: 656>
2345
- MouseWheelX: imgui.ImKey # value = <ImKey.MouseWheelX: 660>
2346
- MouseWheelY: imgui.ImKey # value = <ImKey.MouseWheelY: 661>
2347
- MouseX1: imgui.ImKey # value = <ImKey.MouseX1: 658>
2348
- MouseX2: imgui.ImKey # value = <ImKey.MouseX2: 659>
2379
+ MouseLeft: imgui.ImKey # value = <ImKey.MouseLeft: 656>
2380
+ MouseMiddle: imgui.ImKey # value = <ImKey.MouseMiddle: 658>
2381
+ MouseRight: imgui.ImKey # value = <ImKey.MouseRight: 657>
2382
+ MouseWheelX: imgui.ImKey # value = <ImKey.MouseWheelX: 661>
2383
+ MouseWheelY: imgui.ImKey # value = <ImKey.MouseWheelY: 662>
2384
+ MouseX1: imgui.ImKey # value = <ImKey.MouseX1: 659>
2385
+ MouseX2: imgui.ImKey # value = <ImKey.MouseX2: 660>
2349
2386
  N: imgui.ImKey # value = <ImKey.N: 559>
2350
2387
  NamedKey_BEGIN: imgui.ImKey # value = <ImKey.Tab: 512>
2351
- NamedKey_END: imgui.ImKey # value = <ImKey.NamedKey_END: 666>
2388
+ NamedKey_END: imgui.ImKey # value = <ImKey.NamedKey_END: 667>
2352
2389
  None_: imgui.ImKey # value = <ImKey.None_: 0>
2353
2390
  NumLock: imgui.ImKey # value = <ImKey.NumLock: 609>
2354
2391
  O: imgui.ImKey # value = <ImKey.O: 560>
2392
+ Oem102: imgui.ImKey # value = <ImKey.Oem102: 631>
2355
2393
  P: imgui.ImKey # value = <ImKey.P: 561>
2356
2394
  PageDown: imgui.ImKey # value = <ImKey.PageDown: 518>
2357
2395
  PageUp: imgui.ImKey # value = <ImKey.PageUp: 517>
@@ -2390,7 +2428,7 @@ class ImKey():
2390
2428
  _7: imgui.ImKey # value = <ImKey._7: 543>
2391
2429
  _8: imgui.ImKey # value = <ImKey._8: 544>
2392
2430
  _9: imgui.ImKey # value = <ImKey._9: 545>
2393
- __members__: dict # value = {'None_': <ImKey.None_: 0>, 'Tab': <ImKey.Tab: 512>, 'LeftArrow': <ImKey.LeftArrow: 513>, 'RightArrow': <ImKey.RightArrow: 514>, 'UpArrow': <ImKey.UpArrow: 515>, 'DownArrow': <ImKey.DownArrow: 516>, 'PageUp': <ImKey.PageUp: 517>, 'PageDown': <ImKey.PageDown: 518>, 'Home': <ImKey.Home: 519>, 'End': <ImKey.End: 520>, 'Insert': <ImKey.Insert: 521>, 'Delete': <ImKey.Delete: 522>, 'Backspace': <ImKey.Backspace: 523>, 'Space': <ImKey.Space: 524>, 'Enter': <ImKey.Enter: 525>, 'Escape': <ImKey.Escape: 526>, 'LeftCtrl': <ImKey.LeftCtrl: 527>, 'LeftShift': <ImKey.LeftShift: 528>, 'LeftAlt': <ImKey.LeftAlt: 529>, 'LeftSuper': <ImKey.LeftSuper: 530>, 'RightCtrl': <ImKey.RightCtrl: 531>, 'RightShift': <ImKey.RightShift: 532>, 'RightAlt': <ImKey.RightAlt: 533>, 'RightSuper': <ImKey.RightSuper: 534>, 'Menu': <ImKey.Menu: 535>, '_0': <ImKey._0: 536>, '_1': <ImKey._1: 537>, '_2': <ImKey._2: 538>, '_3': <ImKey._3: 539>, '_4': <ImKey._4: 540>, '_5': <ImKey._5: 541>, '_6': <ImKey._6: 542>, '_7': <ImKey._7: 543>, '_8': <ImKey._8: 544>, '_9': <ImKey._9: 545>, 'A': <ImKey.A: 546>, 'B': <ImKey.B: 547>, 'C': <ImKey.C: 548>, 'D': <ImKey.D: 549>, 'E': <ImKey.E: 550>, 'F': <ImKey.F: 551>, 'G': <ImKey.G: 552>, 'H': <ImKey.H: 553>, 'I': <ImKey.I: 554>, 'J': <ImKey.J: 555>, 'K': <ImKey.K: 556>, 'L': <ImKey.L: 557>, 'M': <ImKey.M: 558>, 'N': <ImKey.N: 559>, 'O': <ImKey.O: 560>, 'P': <ImKey.P: 561>, 'Q': <ImKey.Q: 562>, 'R': <ImKey.R: 563>, 'S': <ImKey.S: 564>, 'T': <ImKey.T: 565>, 'U': <ImKey.U: 566>, 'V': <ImKey.V: 567>, 'W': <ImKey.W: 568>, 'X': <ImKey.X: 569>, 'Y': <ImKey.Y: 570>, 'Z': <ImKey.Z: 571>, 'F1': <ImKey.F1: 572>, 'F2': <ImKey.F2: 573>, 'F3': <ImKey.F3: 574>, 'F4': <ImKey.F4: 575>, 'F5': <ImKey.F5: 576>, 'F6': <ImKey.F6: 577>, 'F7': <ImKey.F7: 578>, 'F8': <ImKey.F8: 579>, 'F9': <ImKey.F9: 580>, 'F10': <ImKey.F10: 581>, 'F11': <ImKey.F11: 582>, 'F12': <ImKey.F12: 583>, 'F13': <ImKey.F13: 584>, 'F14': <ImKey.F14: 585>, 'F15': <ImKey.F15: 586>, 'F16': <ImKey.F16: 587>, 'F17': <ImKey.F17: 588>, 'F18': <ImKey.F18: 589>, 'F19': <ImKey.F19: 590>, 'F20': <ImKey.F20: 591>, 'F21': <ImKey.F21: 592>, 'F22': <ImKey.F22: 593>, 'F23': <ImKey.F23: 594>, 'F24': <ImKey.F24: 595>, 'Apostrophe': <ImKey.Apostrophe: 596>, 'Comma': <ImKey.Comma: 597>, 'Minus': <ImKey.Minus: 598>, 'Period': <ImKey.Period: 599>, 'Slash': <ImKey.Slash: 600>, 'Semicolon': <ImKey.Semicolon: 601>, 'Equal': <ImKey.Equal: 602>, 'LeftBracket': <ImKey.LeftBracket: 603>, 'Backslash': <ImKey.Backslash: 604>, 'RightBracket': <ImKey.RightBracket: 605>, 'GraveAccent': <ImKey.GraveAccent: 606>, 'CapsLock': <ImKey.CapsLock: 607>, 'ScrollLock': <ImKey.ScrollLock: 608>, 'NumLock': <ImKey.NumLock: 609>, 'PrintScreen': <ImKey.PrintScreen: 610>, 'Pause': <ImKey.Pause: 611>, 'Keypad0': <ImKey.Keypad0: 612>, 'Keypad1': <ImKey.Keypad1: 613>, 'Keypad2': <ImKey.Keypad2: 614>, 'Keypad3': <ImKey.Keypad3: 615>, 'Keypad4': <ImKey.Keypad4: 616>, 'Keypad5': <ImKey.Keypad5: 617>, 'Keypad6': <ImKey.Keypad6: 618>, 'Keypad7': <ImKey.Keypad7: 619>, 'Keypad8': <ImKey.Keypad8: 620>, 'Keypad9': <ImKey.Keypad9: 621>, 'KeypadDecimal': <ImKey.KeypadDecimal: 622>, 'KeypadDivide': <ImKey.KeypadDivide: 623>, 'KeypadMultiply': <ImKey.KeypadMultiply: 624>, 'KeypadSubtract': <ImKey.KeypadSubtract: 625>, 'KeypadAdd': <ImKey.KeypadAdd: 626>, 'KeypadEnter': <ImKey.KeypadEnter: 627>, 'KeypadEqual': <ImKey.KeypadEqual: 628>, 'AppBack': <ImKey.AppBack: 629>, 'AppForward': <ImKey.AppForward: 630>, 'GamepadStart': <ImKey.GamepadStart: 631>, 'GamepadBack': <ImKey.GamepadBack: 632>, 'GamepadFaceLeft': <ImKey.GamepadFaceLeft: 633>, 'GamepadFaceRight': <ImKey.GamepadFaceRight: 634>, 'GamepadFaceUp': <ImKey.GamepadFaceUp: 635>, 'GamepadFaceDown': <ImKey.GamepadFaceDown: 636>, 'GamepadDpadLeft': <ImKey.GamepadDpadLeft: 637>, 'GamepadDpadRight': <ImKey.GamepadDpadRight: 638>, 'GamepadDpadUp': <ImKey.GamepadDpadUp: 639>, 'GamepadDpadDown': <ImKey.GamepadDpadDown: 640>, 'GamepadL1': <ImKey.GamepadL1: 641>, 'GamepadR1': <ImKey.GamepadR1: 642>, 'GamepadL2': <ImKey.GamepadL2: 643>, 'GamepadR2': <ImKey.GamepadR2: 644>, 'GamepadL3': <ImKey.GamepadL3: 645>, 'GamepadR3': <ImKey.GamepadR3: 646>, 'GamepadLStickLeft': <ImKey.GamepadLStickLeft: 647>, 'GamepadLStickRight': <ImKey.GamepadLStickRight: 648>, 'GamepadLStickUp': <ImKey.GamepadLStickUp: 649>, 'GamepadLStickDown': <ImKey.GamepadLStickDown: 650>, 'GamepadRStickLeft': <ImKey.GamepadRStickLeft: 651>, 'GamepadRStickRight': <ImKey.GamepadRStickRight: 652>, 'GamepadRStickUp': <ImKey.GamepadRStickUp: 653>, 'GamepadRStickDown': <ImKey.GamepadRStickDown: 654>, 'MouseLeft': <ImKey.MouseLeft: 655>, 'MouseRight': <ImKey.MouseRight: 656>, 'MouseMiddle': <ImKey.MouseMiddle: 657>, 'MouseX1': <ImKey.MouseX1: 658>, 'MouseX2': <ImKey.MouseX2: 659>, 'MouseWheelX': <ImKey.MouseWheelX: 660>, 'MouseWheelY': <ImKey.MouseWheelY: 661>, 'Mod_None': <ImKey.None_: 0>, 'Mod_Ctrl': <ImKey.Mod_Ctrl: 4096>, 'Mod_Shift': <ImKey.Mod_Shift: 8192>, 'Mod_Alt': <ImKey.Mod_Alt: 16384>, 'Mod_Super': <ImKey.Mod_Super: 32768>, 'Mod_Mask_': <ImKey.Mod_Mask_: 61440>, 'NamedKey_BEGIN': <ImKey.Tab: 512>, 'NamedKey_END': <ImKey.NamedKey_END: 666>}
2431
+ __members__: dict # value = {'None_': <ImKey.None_: 0>, 'Tab': <ImKey.Tab: 512>, 'LeftArrow': <ImKey.LeftArrow: 513>, 'RightArrow': <ImKey.RightArrow: 514>, 'UpArrow': <ImKey.UpArrow: 515>, 'DownArrow': <ImKey.DownArrow: 516>, 'PageUp': <ImKey.PageUp: 517>, 'PageDown': <ImKey.PageDown: 518>, 'Home': <ImKey.Home: 519>, 'End': <ImKey.End: 520>, 'Insert': <ImKey.Insert: 521>, 'Delete': <ImKey.Delete: 522>, 'Backspace': <ImKey.Backspace: 523>, 'Space': <ImKey.Space: 524>, 'Enter': <ImKey.Enter: 525>, 'Escape': <ImKey.Escape: 526>, 'LeftCtrl': <ImKey.LeftCtrl: 527>, 'LeftShift': <ImKey.LeftShift: 528>, 'LeftAlt': <ImKey.LeftAlt: 529>, 'LeftSuper': <ImKey.LeftSuper: 530>, 'RightCtrl': <ImKey.RightCtrl: 531>, 'RightShift': <ImKey.RightShift: 532>, 'RightAlt': <ImKey.RightAlt: 533>, 'RightSuper': <ImKey.RightSuper: 534>, 'Menu': <ImKey.Menu: 535>, '_0': <ImKey._0: 536>, '_1': <ImKey._1: 537>, '_2': <ImKey._2: 538>, '_3': <ImKey._3: 539>, '_4': <ImKey._4: 540>, '_5': <ImKey._5: 541>, '_6': <ImKey._6: 542>, '_7': <ImKey._7: 543>, '_8': <ImKey._8: 544>, '_9': <ImKey._9: 545>, 'A': <ImKey.A: 546>, 'B': <ImKey.B: 547>, 'C': <ImKey.C: 548>, 'D': <ImKey.D: 549>, 'E': <ImKey.E: 550>, 'F': <ImKey.F: 551>, 'G': <ImKey.G: 552>, 'H': <ImKey.H: 553>, 'I': <ImKey.I: 554>, 'J': <ImKey.J: 555>, 'K': <ImKey.K: 556>, 'L': <ImKey.L: 557>, 'M': <ImKey.M: 558>, 'N': <ImKey.N: 559>, 'O': <ImKey.O: 560>, 'P': <ImKey.P: 561>, 'Q': <ImKey.Q: 562>, 'R': <ImKey.R: 563>, 'S': <ImKey.S: 564>, 'T': <ImKey.T: 565>, 'U': <ImKey.U: 566>, 'V': <ImKey.V: 567>, 'W': <ImKey.W: 568>, 'X': <ImKey.X: 569>, 'Y': <ImKey.Y: 570>, 'Z': <ImKey.Z: 571>, 'F1': <ImKey.F1: 572>, 'F2': <ImKey.F2: 573>, 'F3': <ImKey.F3: 574>, 'F4': <ImKey.F4: 575>, 'F5': <ImKey.F5: 576>, 'F6': <ImKey.F6: 577>, 'F7': <ImKey.F7: 578>, 'F8': <ImKey.F8: 579>, 'F9': <ImKey.F9: 580>, 'F10': <ImKey.F10: 581>, 'F11': <ImKey.F11: 582>, 'F12': <ImKey.F12: 583>, 'F13': <ImKey.F13: 584>, 'F14': <ImKey.F14: 585>, 'F15': <ImKey.F15: 586>, 'F16': <ImKey.F16: 587>, 'F17': <ImKey.F17: 588>, 'F18': <ImKey.F18: 589>, 'F19': <ImKey.F19: 590>, 'F20': <ImKey.F20: 591>, 'F21': <ImKey.F21: 592>, 'F22': <ImKey.F22: 593>, 'F23': <ImKey.F23: 594>, 'F24': <ImKey.F24: 595>, 'Apostrophe': <ImKey.Apostrophe: 596>, 'Comma': <ImKey.Comma: 597>, 'Minus': <ImKey.Minus: 598>, 'Period': <ImKey.Period: 599>, 'Slash': <ImKey.Slash: 600>, 'Semicolon': <ImKey.Semicolon: 601>, 'Equal': <ImKey.Equal: 602>, 'LeftBracket': <ImKey.LeftBracket: 603>, 'Backslash': <ImKey.Backslash: 604>, 'RightBracket': <ImKey.RightBracket: 605>, 'GraveAccent': <ImKey.GraveAccent: 606>, 'CapsLock': <ImKey.CapsLock: 607>, 'ScrollLock': <ImKey.ScrollLock: 608>, 'NumLock': <ImKey.NumLock: 609>, 'PrintScreen': <ImKey.PrintScreen: 610>, 'Pause': <ImKey.Pause: 611>, 'Keypad0': <ImKey.Keypad0: 612>, 'Keypad1': <ImKey.Keypad1: 613>, 'Keypad2': <ImKey.Keypad2: 614>, 'Keypad3': <ImKey.Keypad3: 615>, 'Keypad4': <ImKey.Keypad4: 616>, 'Keypad5': <ImKey.Keypad5: 617>, 'Keypad6': <ImKey.Keypad6: 618>, 'Keypad7': <ImKey.Keypad7: 619>, 'Keypad8': <ImKey.Keypad8: 620>, 'Keypad9': <ImKey.Keypad9: 621>, 'KeypadDecimal': <ImKey.KeypadDecimal: 622>, 'KeypadDivide': <ImKey.KeypadDivide: 623>, 'KeypadMultiply': <ImKey.KeypadMultiply: 624>, 'KeypadSubtract': <ImKey.KeypadSubtract: 625>, 'KeypadAdd': <ImKey.KeypadAdd: 626>, 'KeypadEnter': <ImKey.KeypadEnter: 627>, 'KeypadEqual': <ImKey.KeypadEqual: 628>, 'AppBack': <ImKey.AppBack: 629>, 'AppForward': <ImKey.AppForward: 630>, 'Oem102': <ImKey.Oem102: 631>, 'GamepadStart': <ImKey.GamepadStart: 632>, 'GamepadBack': <ImKey.GamepadBack: 633>, 'GamepadFaceLeft': <ImKey.GamepadFaceLeft: 634>, 'GamepadFaceRight': <ImKey.GamepadFaceRight: 635>, 'GamepadFaceUp': <ImKey.GamepadFaceUp: 636>, 'GamepadFaceDown': <ImKey.GamepadFaceDown: 637>, 'GamepadDpadLeft': <ImKey.GamepadDpadLeft: 638>, 'GamepadDpadRight': <ImKey.GamepadDpadRight: 639>, 'GamepadDpadUp': <ImKey.GamepadDpadUp: 640>, 'GamepadDpadDown': <ImKey.GamepadDpadDown: 641>, 'GamepadL1': <ImKey.GamepadL1: 642>, 'GamepadR1': <ImKey.GamepadR1: 643>, 'GamepadL2': <ImKey.GamepadL2: 644>, 'GamepadR2': <ImKey.GamepadR2: 645>, 'GamepadL3': <ImKey.GamepadL3: 646>, 'GamepadR3': <ImKey.GamepadR3: 647>, 'GamepadLStickLeft': <ImKey.GamepadLStickLeft: 648>, 'GamepadLStickRight': <ImKey.GamepadLStickRight: 649>, 'GamepadLStickUp': <ImKey.GamepadLStickUp: 650>, 'GamepadLStickDown': <ImKey.GamepadLStickDown: 651>, 'GamepadRStickLeft': <ImKey.GamepadRStickLeft: 652>, 'GamepadRStickRight': <ImKey.GamepadRStickRight: 653>, 'GamepadRStickUp': <ImKey.GamepadRStickUp: 654>, 'GamepadRStickDown': <ImKey.GamepadRStickDown: 655>, 'MouseLeft': <ImKey.MouseLeft: 656>, 'MouseRight': <ImKey.MouseRight: 657>, 'MouseMiddle': <ImKey.MouseMiddle: 658>, 'MouseX1': <ImKey.MouseX1: 659>, 'MouseX2': <ImKey.MouseX2: 660>, 'MouseWheelX': <ImKey.MouseWheelX: 661>, 'MouseWheelY': <ImKey.MouseWheelY: 662>, 'Mod_None': <ImKey.None_: 0>, 'Mod_Ctrl': <ImKey.Mod_Ctrl: 4096>, 'Mod_Shift': <ImKey.Mod_Shift: 8192>, 'Mod_Alt': <ImKey.Mod_Alt: 16384>, 'Mod_Super': <ImKey.Mod_Super: 32768>, 'Mod_Mask_': <ImKey.Mod_Mask_: 61440>, 'NamedKey_BEGIN': <ImKey.Tab: 512>, 'NamedKey_END': <ImKey.NamedKey_END: 667>}
2394
2432
  pass
2395
2433
  class InputFlags():
2396
2434
  None_ = 0
@@ -2436,15 +2474,15 @@ class IntList():
2436
2474
  """
2437
2475
  Thin wrapper over a std::vector<int>
2438
2476
  """
2439
- def __getitem__(self, index: int) -> int: ...
2477
+ def __getitem__(self, index: typing.SupportsInt) -> int: ...
2440
2478
  @typing.overload
2441
2479
  def __init__(self) -> None: ...
2442
2480
  @typing.overload
2443
- def __init__(self, vals: list[int] = []) -> None: ...
2444
- def __iter__(self) -> typing.Iterator: ...
2481
+ def __init__(self, vals: collections.abc.Sequence[typing.SupportsInt] = []) -> None: ...
2482
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2445
2483
  def __len__(self) -> int: ...
2446
- def __setitem__(self, index: int, val: int) -> None: ...
2447
- def append(self, val: int) -> None:
2484
+ def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsInt) -> None: ...
2485
+ def append(self, val: typing.SupportsInt) -> None:
2448
2486
  """
2449
2487
  Append a value to the end
2450
2488
  """
@@ -2453,7 +2491,7 @@ class IntList():
2453
2491
  """
2454
2492
  Pop a value from the end
2455
2493
  """
2456
- def resize(self, size: int) -> None:
2494
+ def resize(self, size: typing.SupportsInt) -> None:
2457
2495
  """
2458
2496
  Resize the vector, dropping any lost values
2459
2497
  """
@@ -2462,7 +2500,7 @@ class IntRef():
2462
2500
  """
2463
2501
  A pass-by-ref wrapper for an int
2464
2502
  """
2465
- def __init__(self, val: int = 0) -> None: ...
2503
+ def __init__(self, val: typing.SupportsInt = 0) -> None: ...
2466
2504
  def __str__(self) -> str: ...
2467
2505
  @property
2468
2506
  def val(self) -> int:
@@ -2472,7 +2510,7 @@ class IntRef():
2472
2510
  :type: int
2473
2511
  """
2474
2512
  @val.setter
2475
- def val(self, arg0: int) -> None:
2513
+ def val(self, arg0: typing.SupportsInt) -> None:
2476
2514
  """
2477
2515
  The wrapped value
2478
2516
  """
@@ -2509,11 +2547,11 @@ class KeyData():
2509
2547
  """
2510
2548
  pass
2511
2549
  class ListClipper():
2512
- def Begin(self, items_count: int, items_height: float = -1.0) -> None: ...
2550
+ def Begin(self, items_count: typing.SupportsInt, items_height: typing.SupportsFloat = -1.0) -> None: ...
2513
2551
  def End(self) -> None: ...
2514
- def IncludeItemByIndex(self, item_index: int) -> None: ...
2515
- def IncludeItemsByIndex(self, item_begin: int, item_end: int) -> None: ...
2516
- def SeekCursorForItem(self, item_index: int) -> None: ...
2552
+ def IncludeItemByIndex(self, item_index: typing.SupportsInt) -> None: ...
2553
+ def IncludeItemsByIndex(self, item_begin: typing.SupportsInt, item_end: typing.SupportsInt) -> None: ...
2554
+ def SeekCursorForItem(self, item_index: typing.SupportsInt) -> None: ...
2517
2555
  def Step(self) -> bool: ...
2518
2556
  def __init__(self) -> None: ...
2519
2557
  @property
@@ -2528,23 +2566,23 @@ class ListClipper():
2528
2566
  """
2529
2567
  pass
2530
2568
  class ListWrapperBool():
2531
- def __getitem__(self, arg0: int) -> bool: ...
2532
- def __iter__(self) -> typing.Iterator: ...
2569
+ def __getitem__(self, arg0: typing.SupportsInt) -> bool: ...
2570
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2533
2571
  def __len__(self) -> int: ...
2534
2572
  pass
2535
2573
  class ListWrapperDouble():
2536
- def __getitem__(self, arg0: int) -> float: ...
2537
- def __iter__(self) -> typing.Iterator: ...
2574
+ def __getitem__(self, arg0: typing.SupportsInt) -> float: ...
2575
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2538
2576
  def __len__(self) -> int: ...
2539
2577
  pass
2540
2578
  class ListWrapperImVec2():
2541
- def __getitem__(self, arg0: int) -> ImVec2: ...
2542
- def __iter__(self) -> typing.Iterator: ...
2579
+ def __getitem__(self, arg0: typing.SupportsInt) -> ImVec2: ...
2580
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2543
2581
  def __len__(self) -> int: ...
2544
2582
  pass
2545
2583
  class ListWrapperTCSS():
2546
- def __getitem__(self, arg0: int) -> ImGuiTableColumnSortSpecs: ...
2547
- def __iter__(self) -> typing.Iterator: ...
2584
+ def __getitem__(self, arg0: typing.SupportsInt) -> ImGuiTableColumnSortSpecs: ...
2585
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2548
2586
  def __len__(self) -> int: ...
2549
2587
  pass
2550
2588
  class MouseButton():
@@ -2556,13 +2594,15 @@ class MouseCursor():
2556
2594
  Arrow = 0
2557
2595
  Hand = 7
2558
2596
  None_ = -1
2559
- NotAllowed = 8
2597
+ NotAllowed = 10
2598
+ Progress = 9
2560
2599
  ResizeAll = 2
2561
2600
  ResizeEW = 4
2562
2601
  ResizeNESW = 5
2563
2602
  ResizeNS = 3
2564
2603
  ResizeNWSE = 6
2565
2604
  TextInput = 1
2605
+ Wait = 8
2566
2606
  pass
2567
2607
  class MouseSource():
2568
2608
  Mouse = 0
@@ -2581,7 +2621,6 @@ class MultiSelectFlags():
2581
2621
  NoAutoSelect = 8
2582
2622
  NoRangeSelect = 4
2583
2623
  NoSelectAll = 2
2584
- None = 0
2585
2624
  None_ = 0
2586
2625
  ScopeRect = 4096
2587
2626
  ScopeWindow = 2048
@@ -2700,14 +2739,14 @@ class StrList():
2700
2739
  """
2701
2740
  Thin wrapper over a std::vector<const char*>
2702
2741
  """
2703
- def __getitem__(self, index: int) -> str: ...
2742
+ def __getitem__(self, index: typing.SupportsInt) -> str: ...
2704
2743
  @typing.overload
2705
2744
  def __init__(self) -> None: ...
2706
2745
  @typing.overload
2707
- def __init__(self, vals: list[str] = []) -> None: ...
2708
- def __iter__(self) -> typing.Iterator: ...
2746
+ def __init__(self, vals: collections.abc.Sequence[str] = []) -> None: ...
2747
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
2709
2748
  def __len__(self) -> int: ...
2710
- def __setitem__(self, index: int, val: str) -> None: ...
2749
+ def __setitem__(self, index: typing.SupportsInt, val: str) -> None: ...
2711
2750
  def append(self, val: str) -> None:
2712
2751
  """
2713
2752
  Append a value to the end
@@ -2717,7 +2756,7 @@ class StrList():
2717
2756
  """
2718
2757
  Pop a value from the end
2719
2758
  """
2720
- def resize(self, size: int) -> None:
2759
+ def resize(self, size: typing.SupportsInt) -> None:
2721
2760
  """
2722
2761
  Resize the vector, dropping any lost values
2723
2762
  """
@@ -2727,14 +2766,14 @@ class StrRef():
2727
2766
  Thin wrapper over a std::vector<char>
2728
2767
  """
2729
2768
  @typing.overload
2730
- def __init__(self, maxSize: int) -> None:
2769
+ def __init__(self, maxSize: typing.SupportsInt) -> None:
2731
2770
  """
2732
2771
  Initialize an empty string with reserved size
2733
2772
 
2734
2773
  Initialize with an input string. If maxSize=0, then maxSize=len(val)
2735
2774
  """
2736
2775
  @typing.overload
2737
- def __init__(self, value: str, maxSize: int = 0) -> None: ...
2776
+ def __init__(self, value: str, maxSize: typing.SupportsInt = 0) -> None: ...
2738
2777
  def __len__(self) -> int: ...
2739
2778
  def __str__(self) -> str: ...
2740
2779
  def append(self, val: str) -> None:
@@ -2749,11 +2788,11 @@ class StrRef():
2749
2788
  """
2750
2789
  Pop a value from the end
2751
2790
  """
2752
- def resize(self, size: int) -> None:
2791
+ def resize(self, size: typing.SupportsInt) -> None:
2753
2792
  """
2754
2793
  Resize the vector, dropping any lost values
2755
2794
  """
2756
- def set(self, newVal: str, maxSize: int = 0) -> None:
2795
+ def set(self, newVal: str, maxSize: typing.SupportsInt = 0) -> None:
2757
2796
  """
2758
2797
  Assign a new value to the string. If maxSize=0,the maxSize will remain unchanged and extra chars will be dropped
2759
2798
  """
@@ -2763,7 +2802,7 @@ class StrRef():
2763
2802
  """
2764
2803
  pass
2765
2804
  class Style():
2766
- def ScaleAllSizes(self, scale_factor: float) -> None: ...
2805
+ def ScaleAllSizes(self, scale_factor: typing.SupportsFloat) -> None: ...
2767
2806
  def __init__(self) -> None: ...
2768
2807
  @property
2769
2808
  def Alpha(self) -> float:
@@ -2771,7 +2810,7 @@ class Style():
2771
2810
  :type: float
2772
2811
  """
2773
2812
  @Alpha.setter
2774
- def Alpha(self, arg0: float) -> None:
2813
+ def Alpha(self, arg0: typing.SupportsFloat) -> None:
2775
2814
  pass
2776
2815
  @property
2777
2816
  def AntiAliasedFill(self) -> bool:
@@ -2819,7 +2858,7 @@ class Style():
2819
2858
  :type: float
2820
2859
  """
2821
2860
  @ChildBorderSize.setter
2822
- def ChildBorderSize(self, arg0: float) -> None:
2861
+ def ChildBorderSize(self, arg0: typing.SupportsFloat) -> None:
2823
2862
  pass
2824
2863
  @property
2825
2864
  def ChildRounding(self) -> float:
@@ -2827,7 +2866,7 @@ class Style():
2827
2866
  :type: float
2828
2867
  """
2829
2868
  @ChildRounding.setter
2830
- def ChildRounding(self, arg0: float) -> None:
2869
+ def ChildRounding(self, arg0: typing.SupportsFloat) -> None:
2831
2870
  pass
2832
2871
  @property
2833
2872
  def CircleTessellationMaxError(self) -> float:
@@ -2835,7 +2874,7 @@ class Style():
2835
2874
  :type: float
2836
2875
  """
2837
2876
  @CircleTessellationMaxError.setter
2838
- def CircleTessellationMaxError(self, arg0: float) -> None:
2877
+ def CircleTessellationMaxError(self, arg0: typing.SupportsFloat) -> None:
2839
2878
  pass
2840
2879
  @property
2841
2880
  def ColorButtonPosition(self) -> ImGuiDir:
@@ -2856,7 +2895,7 @@ class Style():
2856
2895
  :type: float
2857
2896
  """
2858
2897
  @ColumnsMinSpacing.setter
2859
- def ColumnsMinSpacing(self, arg0: float) -> None:
2898
+ def ColumnsMinSpacing(self, arg0: typing.SupportsFloat) -> None:
2860
2899
  pass
2861
2900
  @property
2862
2901
  def CurveTessellationTol(self) -> float:
@@ -2864,7 +2903,7 @@ class Style():
2864
2903
  :type: float
2865
2904
  """
2866
2905
  @CurveTessellationTol.setter
2867
- def CurveTessellationTol(self, arg0: float) -> None:
2906
+ def CurveTessellationTol(self, arg0: typing.SupportsFloat) -> None:
2868
2907
  pass
2869
2908
  @property
2870
2909
  def DisabledAlpha(self) -> float:
@@ -2872,7 +2911,7 @@ class Style():
2872
2911
  :type: float
2873
2912
  """
2874
2913
  @DisabledAlpha.setter
2875
- def DisabledAlpha(self, arg0: float) -> None:
2914
+ def DisabledAlpha(self, arg0: typing.SupportsFloat) -> None:
2876
2915
  pass
2877
2916
  @property
2878
2917
  def DisplaySafeAreaPadding(self) -> Vec2:
@@ -2891,12 +2930,36 @@ class Style():
2891
2930
  def DisplayWindowPadding(self, arg0: Vec2) -> None:
2892
2931
  pass
2893
2932
  @property
2933
+ def FontScaleDpi(self) -> float:
2934
+ """
2935
+ :type: float
2936
+ """
2937
+ @FontScaleDpi.setter
2938
+ def FontScaleDpi(self, arg0: typing.SupportsFloat) -> None:
2939
+ pass
2940
+ @property
2941
+ def FontScaleMain(self) -> float:
2942
+ """
2943
+ :type: float
2944
+ """
2945
+ @FontScaleMain.setter
2946
+ def FontScaleMain(self, arg0: typing.SupportsFloat) -> None:
2947
+ pass
2948
+ @property
2949
+ def FontSizeBase(self) -> float:
2950
+ """
2951
+ :type: float
2952
+ """
2953
+ @FontSizeBase.setter
2954
+ def FontSizeBase(self, arg0: typing.SupportsFloat) -> None:
2955
+ pass
2956
+ @property
2894
2957
  def FrameBorderSize(self) -> float:
2895
2958
  """
2896
2959
  :type: float
2897
2960
  """
2898
2961
  @FrameBorderSize.setter
2899
- def FrameBorderSize(self, arg0: float) -> None:
2962
+ def FrameBorderSize(self, arg0: typing.SupportsFloat) -> None:
2900
2963
  pass
2901
2964
  @property
2902
2965
  def FramePadding(self) -> Vec2:
@@ -2912,7 +2975,7 @@ class Style():
2912
2975
  :type: float
2913
2976
  """
2914
2977
  @FrameRounding.setter
2915
- def FrameRounding(self, arg0: float) -> None:
2978
+ def FrameRounding(self, arg0: typing.SupportsFloat) -> None:
2916
2979
  pass
2917
2980
  @property
2918
2981
  def GrabMinSize(self) -> float:
@@ -2920,7 +2983,7 @@ class Style():
2920
2983
  :type: float
2921
2984
  """
2922
2985
  @GrabMinSize.setter
2923
- def GrabMinSize(self, arg0: float) -> None:
2986
+ def GrabMinSize(self, arg0: typing.SupportsFloat) -> None:
2924
2987
  pass
2925
2988
  @property
2926
2989
  def GrabRounding(self) -> float:
@@ -2928,7 +2991,7 @@ class Style():
2928
2991
  :type: float
2929
2992
  """
2930
2993
  @GrabRounding.setter
2931
- def GrabRounding(self, arg0: float) -> None:
2994
+ def GrabRounding(self, arg0: typing.SupportsFloat) -> None:
2932
2995
  pass
2933
2996
  @property
2934
2997
  def HoverDelayNormal(self) -> float:
@@ -2936,7 +2999,7 @@ class Style():
2936
2999
  :type: float
2937
3000
  """
2938
3001
  @HoverDelayNormal.setter
2939
- def HoverDelayNormal(self, arg0: float) -> None:
3002
+ def HoverDelayNormal(self, arg0: typing.SupportsFloat) -> None:
2940
3003
  pass
2941
3004
  @property
2942
3005
  def HoverDelayShort(self) -> float:
@@ -2944,7 +3007,7 @@ class Style():
2944
3007
  :type: float
2945
3008
  """
2946
3009
  @HoverDelayShort.setter
2947
- def HoverDelayShort(self, arg0: float) -> None:
3010
+ def HoverDelayShort(self, arg0: typing.SupportsFloat) -> None:
2948
3011
  pass
2949
3012
  @property
2950
3013
  def HoverFlagsForTooltipMouse(self) -> int:
@@ -2952,7 +3015,7 @@ class Style():
2952
3015
  :type: int
2953
3016
  """
2954
3017
  @HoverFlagsForTooltipMouse.setter
2955
- def HoverFlagsForTooltipMouse(self, arg0: int) -> None:
3018
+ def HoverFlagsForTooltipMouse(self, arg0: typing.SupportsInt) -> None:
2956
3019
  pass
2957
3020
  @property
2958
3021
  def HoverFlagsForTooltipNav(self) -> int:
@@ -2960,7 +3023,7 @@ class Style():
2960
3023
  :type: int
2961
3024
  """
2962
3025
  @HoverFlagsForTooltipNav.setter
2963
- def HoverFlagsForTooltipNav(self, arg0: int) -> None:
3026
+ def HoverFlagsForTooltipNav(self, arg0: typing.SupportsInt) -> None:
2964
3027
  pass
2965
3028
  @property
2966
3029
  def HoverStationaryDelay(self) -> float:
@@ -2968,7 +3031,15 @@ class Style():
2968
3031
  :type: float
2969
3032
  """
2970
3033
  @HoverStationaryDelay.setter
2971
- def HoverStationaryDelay(self, arg0: float) -> None:
3034
+ def HoverStationaryDelay(self, arg0: typing.SupportsFloat) -> None:
3035
+ pass
3036
+ @property
3037
+ def ImageBorderSize(self) -> float:
3038
+ """
3039
+ :type: float
3040
+ """
3041
+ @ImageBorderSize.setter
3042
+ def ImageBorderSize(self, arg0: typing.SupportsFloat) -> None:
2972
3043
  pass
2973
3044
  @property
2974
3045
  def IndentSpacing(self) -> float:
@@ -2976,7 +3047,7 @@ class Style():
2976
3047
  :type: float
2977
3048
  """
2978
3049
  @IndentSpacing.setter
2979
- def IndentSpacing(self, arg0: float) -> None:
3050
+ def IndentSpacing(self, arg0: typing.SupportsFloat) -> None:
2980
3051
  pass
2981
3052
  @property
2982
3053
  def ItemInnerSpacing(self) -> Vec2:
@@ -3000,7 +3071,7 @@ class Style():
3000
3071
  :type: float
3001
3072
  """
3002
3073
  @LogSliderDeadzone.setter
3003
- def LogSliderDeadzone(self, arg0: float) -> None:
3074
+ def LogSliderDeadzone(self, arg0: typing.SupportsFloat) -> None:
3004
3075
  pass
3005
3076
  @property
3006
3077
  def MouseCursorScale(self) -> float:
@@ -3008,7 +3079,7 @@ class Style():
3008
3079
  :type: float
3009
3080
  """
3010
3081
  @MouseCursorScale.setter
3011
- def MouseCursorScale(self, arg0: float) -> None:
3082
+ def MouseCursorScale(self, arg0: typing.SupportsFloat) -> None:
3012
3083
  pass
3013
3084
  @property
3014
3085
  def PopupBorderSize(self) -> float:
@@ -3016,7 +3087,7 @@ class Style():
3016
3087
  :type: float
3017
3088
  """
3018
3089
  @PopupBorderSize.setter
3019
- def PopupBorderSize(self, arg0: float) -> None:
3090
+ def PopupBorderSize(self, arg0: typing.SupportsFloat) -> None:
3020
3091
  pass
3021
3092
  @property
3022
3093
  def PopupRounding(self) -> float:
@@ -3024,7 +3095,7 @@ class Style():
3024
3095
  :type: float
3025
3096
  """
3026
3097
  @PopupRounding.setter
3027
- def PopupRounding(self, arg0: float) -> None:
3098
+ def PopupRounding(self, arg0: typing.SupportsFloat) -> None:
3028
3099
  pass
3029
3100
  @property
3030
3101
  def ScrollbarRounding(self) -> float:
@@ -3032,7 +3103,7 @@ class Style():
3032
3103
  :type: float
3033
3104
  """
3034
3105
  @ScrollbarRounding.setter
3035
- def ScrollbarRounding(self, arg0: float) -> None:
3106
+ def ScrollbarRounding(self, arg0: typing.SupportsFloat) -> None:
3036
3107
  pass
3037
3108
  @property
3038
3109
  def ScrollbarSize(self) -> float:
@@ -3040,7 +3111,7 @@ class Style():
3040
3111
  :type: float
3041
3112
  """
3042
3113
  @ScrollbarSize.setter
3043
- def ScrollbarSize(self, arg0: float) -> None:
3114
+ def ScrollbarSize(self, arg0: typing.SupportsFloat) -> None:
3044
3115
  pass
3045
3116
  @property
3046
3117
  def SelectableTextAlign(self) -> Vec2:
@@ -3064,7 +3135,7 @@ class Style():
3064
3135
  :type: float
3065
3136
  """
3066
3137
  @SeparatorTextBorderSize.setter
3067
- def SeparatorTextBorderSize(self, arg0: float) -> None:
3138
+ def SeparatorTextBorderSize(self, arg0: typing.SupportsFloat) -> None:
3068
3139
  pass
3069
3140
  @property
3070
3141
  def SeparatorTextPadding(self) -> Vec2:
@@ -3080,7 +3151,7 @@ class Style():
3080
3151
  :type: float
3081
3152
  """
3082
3153
  @TabBarBorderSize.setter
3083
- def TabBarBorderSize(self, arg0: float) -> None:
3154
+ def TabBarBorderSize(self, arg0: typing.SupportsFloat) -> None:
3084
3155
  pass
3085
3156
  @property
3086
3157
  def TabBarOverlineSize(self) -> float:
@@ -3088,7 +3159,7 @@ class Style():
3088
3159
  :type: float
3089
3160
  """
3090
3161
  @TabBarOverlineSize.setter
3091
- def TabBarOverlineSize(self, arg0: float) -> None:
3162
+ def TabBarOverlineSize(self, arg0: typing.SupportsFloat) -> None:
3092
3163
  pass
3093
3164
  @property
3094
3165
  def TabBorderSize(self) -> float:
@@ -3096,15 +3167,23 @@ class Style():
3096
3167
  :type: float
3097
3168
  """
3098
3169
  @TabBorderSize.setter
3099
- def TabBorderSize(self, arg0: float) -> None:
3170
+ def TabBorderSize(self, arg0: typing.SupportsFloat) -> None:
3100
3171
  pass
3101
3172
  @property
3102
- def TabMinWidthForCloseButton(self) -> float:
3173
+ def TabCloseButtonMinWidthSelected(self) -> float:
3103
3174
  """
3104
3175
  :type: float
3105
3176
  """
3106
- @TabMinWidthForCloseButton.setter
3107
- def TabMinWidthForCloseButton(self, arg0: float) -> None:
3177
+ @TabCloseButtonMinWidthSelected.setter
3178
+ def TabCloseButtonMinWidthSelected(self, arg0: typing.SupportsFloat) -> None:
3179
+ pass
3180
+ @property
3181
+ def TabCloseButtonMinWidthUnselected(self) -> float:
3182
+ """
3183
+ :type: float
3184
+ """
3185
+ @TabCloseButtonMinWidthUnselected.setter
3186
+ def TabCloseButtonMinWidthUnselected(self, arg0: typing.SupportsFloat) -> None:
3108
3187
  pass
3109
3188
  @property
3110
3189
  def TabRounding(self) -> float:
@@ -3112,7 +3191,7 @@ class Style():
3112
3191
  :type: float
3113
3192
  """
3114
3193
  @TabRounding.setter
3115
- def TabRounding(self, arg0: float) -> None:
3194
+ def TabRounding(self, arg0: typing.SupportsFloat) -> None:
3116
3195
  pass
3117
3196
  @property
3118
3197
  def TableAngledHeadersAngle(self) -> float:
@@ -3120,7 +3199,7 @@ class Style():
3120
3199
  :type: float
3121
3200
  """
3122
3201
  @TableAngledHeadersAngle.setter
3123
- def TableAngledHeadersAngle(self, arg0: float) -> None:
3202
+ def TableAngledHeadersAngle(self, arg0: typing.SupportsFloat) -> None:
3124
3203
  pass
3125
3204
  @property
3126
3205
  def TableAngledHeadersTextAlign(self) -> Vec2:
@@ -3139,12 +3218,44 @@ class Style():
3139
3218
  def TouchExtraPadding(self, arg0: Vec2) -> None:
3140
3219
  pass
3141
3220
  @property
3221
+ def TreeLinesFlags(self) -> int:
3222
+ """
3223
+ :type: int
3224
+ """
3225
+ @TreeLinesFlags.setter
3226
+ def TreeLinesFlags(self, arg0: typing.SupportsInt) -> None:
3227
+ pass
3228
+ @property
3229
+ def TreeLinesRounding(self) -> float:
3230
+ """
3231
+ :type: float
3232
+ """
3233
+ @TreeLinesRounding.setter
3234
+ def TreeLinesRounding(self, arg0: typing.SupportsFloat) -> None:
3235
+ pass
3236
+ @property
3237
+ def TreeLinesSize(self) -> float:
3238
+ """
3239
+ :type: float
3240
+ """
3241
+ @TreeLinesSize.setter
3242
+ def TreeLinesSize(self, arg0: typing.SupportsFloat) -> None:
3243
+ pass
3244
+ @property
3245
+ def WindowBorderHoverPadding(self) -> float:
3246
+ """
3247
+ :type: float
3248
+ """
3249
+ @WindowBorderHoverPadding.setter
3250
+ def WindowBorderHoverPadding(self, arg0: typing.SupportsFloat) -> None:
3251
+ pass
3252
+ @property
3142
3253
  def WindowBorderSize(self) -> float:
3143
3254
  """
3144
3255
  :type: float
3145
3256
  """
3146
3257
  @WindowBorderSize.setter
3147
- def WindowBorderSize(self, arg0: float) -> None:
3258
+ def WindowBorderSize(self, arg0: typing.SupportsFloat) -> None:
3148
3259
  pass
3149
3260
  @property
3150
3261
  def WindowMenuButtonPosition(self) -> ImGuiDir:
@@ -3176,7 +3287,7 @@ class Style():
3176
3287
  :type: float
3177
3288
  """
3178
3289
  @WindowRounding.setter
3179
- def WindowRounding(self, arg0: float) -> None:
3290
+ def WindowRounding(self, arg0: typing.SupportsFloat) -> None:
3180
3291
  pass
3181
3292
  @property
3182
3293
  def WindowTitleAlign(self) -> Vec2:
@@ -3189,7 +3300,7 @@ class Style():
3189
3300
  pass
3190
3301
  class StyleVar():
3191
3302
  Alpha = 0
3192
- ButtonTextAlign = 28
3303
+ ButtonTextAlign = 31
3193
3304
  CellPadding = 17
3194
3305
  ChildBorderSize = 8
3195
3306
  ChildRounding = 7
@@ -3199,6 +3310,7 @@ class StyleVar():
3199
3310
  FrameRounding = 12
3200
3311
  GrabMinSize = 20
3201
3312
  GrabRounding = 21
3313
+ ImageBorderSize = 22
3202
3314
  IndentSpacing = 16
3203
3315
  ItemInnerSpacing = 15
3204
3316
  ItemSpacing = 14
@@ -3206,15 +3318,15 @@ class StyleVar():
3206
3318
  PopupRounding = 9
3207
3319
  ScrollbarRounding = 19
3208
3320
  ScrollbarSize = 18
3209
- SelectableTextAlign = 29
3210
- SeparatorTextAlign = 31
3211
- SeparatorTextBorderSize = 30
3212
- SeparatorTextPadding = 32
3213
- TabBarBorderSize = 24
3214
- TabBorderSize = 23
3215
- TabRounding = 22
3216
- TableAngledHeadersAngle = 26
3217
- TableAngledHeadersTextAlign = 27
3321
+ SelectableTextAlign = 32
3322
+ SeparatorTextAlign = 34
3323
+ SeparatorTextBorderSize = 33
3324
+ SeparatorTextPadding = 35
3325
+ TabBarBorderSize = 25
3326
+ TabBorderSize = 24
3327
+ TabRounding = 23
3328
+ TableAngledHeadersAngle = 27
3329
+ TableAngledHeadersTextAlign = 28
3218
3330
  WindowBorderSize = 4
3219
3331
  WindowMinSize = 5
3220
3332
  WindowPadding = 2
@@ -3285,7 +3397,7 @@ class TableColumnSortSpecs():
3285
3397
  :type: int
3286
3398
  """
3287
3399
  @ColumnIndex.setter
3288
- def ColumnIndex(self, arg0: int) -> None:
3400
+ def ColumnIndex(self, arg0: typing.SupportsInt) -> None:
3289
3401
  pass
3290
3402
  @property
3291
3403
  def ColumnUserID(self) -> int:
@@ -3293,7 +3405,7 @@ class TableColumnSortSpecs():
3293
3405
  :type: int
3294
3406
  """
3295
3407
  @ColumnUserID.setter
3296
- def ColumnUserID(self, arg0: int) -> None:
3408
+ def ColumnUserID(self, arg0: typing.SupportsInt) -> None:
3297
3409
  pass
3298
3410
  @property
3299
3411
  def SortDirection(self) -> ImGuiSortDirection:
@@ -3309,7 +3421,7 @@ class TableColumnSortSpecs():
3309
3421
  :type: int
3310
3422
  """
3311
3423
  @SortOrder.setter
3312
- def SortOrder(self, arg0: int) -> None:
3424
+ def SortOrder(self, arg0: typing.SupportsInt) -> None:
3313
3425
  pass
3314
3426
  pass
3315
3427
  class TableFlags():
@@ -3376,7 +3488,7 @@ class Texture():
3376
3488
  :type: int
3377
3489
  """
3378
3490
  @height.setter
3379
- def height(self, arg0: int) -> None:
3491
+ def height(self, arg0: typing.SupportsInt) -> None:
3380
3492
  pass
3381
3493
  @property
3382
3494
  def texID(self) -> int:
@@ -3384,7 +3496,7 @@ class Texture():
3384
3496
  :type: int
3385
3497
  """
3386
3498
  @texID.setter
3387
- def texID(self, arg0: int) -> None:
3499
+ def texID(self, arg0: typing.SupportsInt) -> None:
3388
3500
  pass
3389
3501
  @property
3390
3502
  def width(self) -> int:
@@ -3392,19 +3504,33 @@ class Texture():
3392
3504
  :type: int
3393
3505
  """
3394
3506
  @width.setter
3395
- def width(self, arg0: int) -> None:
3507
+ def width(self, arg0: typing.SupportsInt) -> None:
3396
3508
  pass
3397
3509
  pass
3510
+ class TextureFormat():
3511
+ Alpha8 = 1
3512
+ RGBA32 = 0
3513
+ pass
3514
+ class TextureStatus():
3515
+ Destroyed = 1
3516
+ OK = 0
3517
+ WantCreate = 2
3518
+ WantDestroy = 4
3519
+ WantUpdates = 3
3520
+ pass
3398
3521
  class TreeNodeFlags():
3399
3522
  AllowOverlap = 4
3400
3523
  Bullet = 512
3401
3524
  CollapsingHeader = 26
3402
3525
  DefaultOpen = 32
3526
+ DrawLinesFull = 524288
3527
+ DrawLinesNone = 262144
3528
+ DrawLinesToNodes = 1048576
3403
3529
  FramePadding = 1024
3404
3530
  Framed = 2
3405
3531
  LabelSpanAllColumns = 32768
3406
3532
  Leaf = 256
3407
- NavLeftJumpsBackHere = 131072
3533
+ NavLeftJumpsToParent = 131072
3408
3534
  NoAutoOpenOnLog = 16
3409
3535
  NoTreePushOnOpen = 8
3410
3536
  None_ = 0
@@ -3420,14 +3546,15 @@ class Vec2():
3420
3546
  @typing.overload
3421
3547
  def __init__(self) -> None: ...
3422
3548
  @typing.overload
3423
- def __init__(self, x: float, y: float) -> None: ...
3549
+ def __init__(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> None: ...
3550
+ def __str__(self) -> str: ...
3424
3551
  @property
3425
3552
  def x(self) -> float:
3426
3553
  """
3427
3554
  :type: float
3428
3555
  """
3429
3556
  @x.setter
3430
- def x(self, arg0: float) -> None:
3557
+ def x(self, arg0: typing.SupportsFloat) -> None:
3431
3558
  pass
3432
3559
  @property
3433
3560
  def y(self) -> float:
@@ -3435,21 +3562,21 @@ class Vec2():
3435
3562
  :type: float
3436
3563
  """
3437
3564
  @y.setter
3438
- def y(self, arg0: float) -> None:
3565
+ def y(self, arg0: typing.SupportsFloat) -> None:
3439
3566
  pass
3440
3567
  pass
3441
3568
  class Vec2List():
3442
3569
  """
3443
3570
  Thin wrapper over a std::vector<ImVec2>
3444
3571
  """
3445
- def __getitem__(self, index: int) -> ImVec2: ...
3572
+ def __getitem__(self, index: typing.SupportsInt) -> ImVec2: ...
3446
3573
  @typing.overload
3447
3574
  def __init__(self) -> None: ...
3448
3575
  @typing.overload
3449
- def __init__(self, vals: list[ImVec2] = []) -> None: ...
3450
- def __iter__(self) -> typing.Iterator: ...
3576
+ def __init__(self, vals: collections.abc.Sequence[ImVec2] = []) -> None: ...
3577
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
3451
3578
  def __len__(self) -> int: ...
3452
- def __setitem__(self, index: int, val: ImVec2) -> None: ...
3579
+ def __setitem__(self, index: typing.SupportsInt, val: ImVec2) -> None: ...
3453
3580
  def append(self, val: ImVec2) -> None:
3454
3581
  """
3455
3582
  Append a value to the end
@@ -3459,7 +3586,7 @@ class Vec2List():
3459
3586
  """
3460
3587
  Pop a value from the end
3461
3588
  """
3462
- def resize(self, size: int) -> None:
3589
+ def resize(self, size: typing.SupportsInt) -> None:
3463
3590
  """
3464
3591
  Resize the vector, dropping any lost values
3465
3592
  """
@@ -3468,14 +3595,15 @@ class Vec4():
3468
3595
  @typing.overload
3469
3596
  def __init__(self) -> None: ...
3470
3597
  @typing.overload
3471
- def __init__(self, x: float, y: float, z: float, w: float) -> None: ...
3598
+ def __init__(self, x: typing.SupportsFloat, y: typing.SupportsFloat, z: typing.SupportsFloat, w: typing.SupportsFloat) -> None: ...
3599
+ def __str__(self) -> str: ...
3472
3600
  @property
3473
3601
  def w(self) -> float:
3474
3602
  """
3475
3603
  :type: float
3476
3604
  """
3477
3605
  @w.setter
3478
- def w(self, arg0: float) -> None:
3606
+ def w(self, arg0: typing.SupportsFloat) -> None:
3479
3607
  pass
3480
3608
  @property
3481
3609
  def x(self) -> float:
@@ -3483,7 +3611,7 @@ class Vec4():
3483
3611
  :type: float
3484
3612
  """
3485
3613
  @x.setter
3486
- def x(self, arg0: float) -> None:
3614
+ def x(self, arg0: typing.SupportsFloat) -> None:
3487
3615
  pass
3488
3616
  @property
3489
3617
  def y(self) -> float:
@@ -3491,7 +3619,7 @@ class Vec4():
3491
3619
  :type: float
3492
3620
  """
3493
3621
  @y.setter
3494
- def y(self, arg0: float) -> None:
3622
+ def y(self, arg0: typing.SupportsFloat) -> None:
3495
3623
  pass
3496
3624
  @property
3497
3625
  def z(self) -> float:
@@ -3499,35 +3627,52 @@ class Vec4():
3499
3627
  :type: float
3500
3628
  """
3501
3629
  @z.setter
3502
- def z(self, arg0: float) -> None:
3630
+ def z(self, arg0: typing.SupportsFloat) -> None:
3503
3631
  pass
3504
3632
  pass
3505
3633
  class Viewport():
3634
+ def GetCenter(self) -> Vec2: ...
3635
+ def GetWorkCenter(self) -> Vec2: ...
3506
3636
  @property
3507
3637
  def Flags(self) -> int:
3508
3638
  """
3509
3639
  :type: int
3510
3640
  """
3641
+ @Flags.setter
3642
+ def Flags(self, arg0: typing.SupportsInt) -> None:
3643
+ pass
3511
3644
  @property
3512
3645
  def Pos(self) -> Vec2:
3513
3646
  """
3514
3647
  :type: Vec2
3515
3648
  """
3649
+ @Pos.setter
3650
+ def Pos(self, arg0: Vec2) -> None:
3651
+ pass
3516
3652
  @property
3517
3653
  def Size(self) -> Vec2:
3518
3654
  """
3519
3655
  :type: Vec2
3520
3656
  """
3657
+ @Size.setter
3658
+ def Size(self, arg0: Vec2) -> None:
3659
+ pass
3521
3660
  @property
3522
3661
  def WorkPos(self) -> Vec2:
3523
3662
  """
3524
3663
  :type: Vec2
3525
3664
  """
3665
+ @WorkPos.setter
3666
+ def WorkPos(self, arg0: Vec2) -> None:
3667
+ pass
3526
3668
  @property
3527
3669
  def WorkSize(self) -> Vec2:
3528
3670
  """
3529
3671
  :type: Vec2
3530
3672
  """
3673
+ @WorkSize.setter
3674
+ def WorkSize(self, arg0: Vec2) -> None:
3675
+ pass
3531
3676
  pass
3532
3677
  class ViewportFlags():
3533
3678
  IsPlatformMonitor = 2
@@ -3539,15 +3684,15 @@ class WCharList():
3539
3684
  """
3540
3685
  Thin wrapper over a std::vector<ImWchar>
3541
3686
  """
3542
- def __getitem__(self, index: int) -> int: ...
3687
+ def __getitem__(self, index: typing.SupportsInt) -> int: ...
3543
3688
  @typing.overload
3544
3689
  def __init__(self) -> None: ...
3545
3690
  @typing.overload
3546
- def __init__(self, vals: list[int] = []) -> None: ...
3547
- def __iter__(self) -> typing.Iterator: ...
3691
+ def __init__(self, vals: collections.abc.Sequence[typing.SupportsInt] = []) -> None: ...
3692
+ def __iter__(self) -> collections.abc.typing.Iterator: ...
3548
3693
  def __len__(self) -> int: ...
3549
- def __setitem__(self, index: int, val: int) -> None: ...
3550
- def append(self, val: int) -> None:
3694
+ def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsInt) -> None: ...
3695
+ def append(self, val: typing.SupportsInt) -> None:
3551
3696
  """
3552
3697
  Append a value to the end
3553
3698
  """
@@ -3556,7 +3701,7 @@ class WCharList():
3556
3701
  """
3557
3702
  Pop a value from the end
3558
3703
  """
3559
- def resize(self, size: int) -> None:
3704
+ def resize(self, size: typing.SupportsInt) -> None:
3560
3705
  """
3561
3706
  Resize the vector, dropping any lost values
3562
3707
  """
@@ -3586,25 +3731,25 @@ class WindowFlags():
3586
3731
  None_ = 0
3587
3732
  UnsavedDocument = 262144
3588
3733
  pass
3589
- def AcceptDragDropPayload(type: str, flags: int = 0) -> ImGuiPayload:
3734
+ def AcceptDragDropPayload(type: str, flags: typing.SupportsInt = 0) -> ImGuiPayload:
3590
3735
  pass
3591
3736
  def AlignTextToFramePadding() -> None:
3592
3737
  pass
3593
- def ArrowButton(str_id: str, dir: int) -> bool:
3738
+ def ArrowButton(str_id: str, dir: typing.SupportsInt) -> bool:
3594
3739
  pass
3595
- def Begin(name: str, p_open: typing.Optional[BoolRef] = None, flags: int = 0) -> bool:
3740
+ def Begin(name: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
3596
3741
  pass
3597
3742
  @typing.overload
3598
- def BeginChild(id: int, size: Vec2 = Vec2(0, 0), child_flags: int = 0, window_flags: int = 0) -> bool:
3743
+ def BeginChild(id: typing.SupportsInt, size: Vec2 = Vec2(0, 0), child_flags: typing.SupportsInt = 0, window_flags: typing.SupportsInt = 0) -> bool:
3599
3744
  pass
3600
3745
  @typing.overload
3601
- def BeginChild(str_id: str, size: Vec2 = Vec2(0, 0), child_flags: int = 0, window_flags: int = 0) -> bool:
3746
+ def BeginChild(str_id: str, size: Vec2 = Vec2(0, 0), child_flags: typing.SupportsInt = 0, window_flags: typing.SupportsInt = 0) -> bool:
3602
3747
  pass
3603
- def BeginCombo(label: str, preview_value: str, flags: int = 0) -> bool:
3748
+ def BeginCombo(label: str, preview_value: str, flags: typing.SupportsInt = 0) -> bool:
3604
3749
  pass
3605
3750
  def BeginDisabled(disabled: bool = True) -> None:
3606
3751
  pass
3607
- def BeginDragDropSource(flags: int = 0) -> bool:
3752
+ def BeginDragDropSource(flags: typing.SupportsInt = 0) -> bool:
3608
3753
  pass
3609
3754
  def BeginDragDropTarget() -> bool:
3610
3755
  pass
@@ -3620,21 +3765,21 @@ def BeginMenu(label: str, enabled: bool = True) -> bool:
3620
3765
  pass
3621
3766
  def BeginMenuBar() -> bool:
3622
3767
  pass
3623
- def BeginPopup(str_id: str, flags: int = 0) -> bool:
3768
+ def BeginPopup(str_id: str, flags: typing.SupportsInt = 0) -> bool:
3624
3769
  pass
3625
- def BeginPopupContextItem(str_id: typing.Optional[str] = None, popup_flags: int = 1) -> bool:
3770
+ def BeginPopupContextItem(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
3626
3771
  pass
3627
- def BeginPopupContextVoid(str_id: typing.Optional[str] = None, popup_flags: int = 1) -> bool:
3772
+ def BeginPopupContextVoid(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
3628
3773
  pass
3629
- def BeginPopupContextWindow(str_id: typing.Optional[str] = None, popup_flags: int = 1) -> bool:
3774
+ def BeginPopupContextWindow(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
3630
3775
  pass
3631
- def BeginPopupModal(name: str, p_open: typing.Optional[BoolRef] = None, flags: int = 0) -> bool:
3776
+ def BeginPopupModal(name: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
3632
3777
  pass
3633
- def BeginTabBar(str_id: str, flags: int = 0) -> bool:
3778
+ def BeginTabBar(str_id: str, flags: typing.SupportsInt = 0) -> bool:
3634
3779
  pass
3635
- def BeginTabItem(label: str, p_open: typing.Optional[BoolRef] = None, flags: int = 0) -> bool:
3780
+ def BeginTabItem(label: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
3636
3781
  pass
3637
- def BeginTable(str_id: str, column: int, flags: int = 0, outer_size: Vec2 = Vec2(0, 0), inner_width: float = 0.0) -> bool:
3782
+ def BeginTable(str_id: str, column: typing.SupportsInt, flags: typing.SupportsInt = 0, outer_size: Vec2 = Vec2(0, 0), inner_width: typing.SupportsFloat = 0.0) -> bool:
3638
3783
  pass
3639
3784
  def BeginTooltip() -> bool:
3640
3785
  pass
@@ -3646,41 +3791,41 @@ def Button(label: str, size: Vec2 = Vec2(0, 0)) -> bool:
3646
3791
  pass
3647
3792
  def CalcItemWidth() -> float:
3648
3793
  pass
3649
- def CalcTextSize(text: str, hide_text_after_double_hash: bool = False, wrap_width: float = -1.0) -> Vec2:
3794
+ def CalcTextSize(text: str, hide_text_after_double_hash: bool = False, wrap_width: typing.SupportsFloat = -1.0) -> Vec2:
3650
3795
  pass
3651
3796
  def CheckBox(label: str, cur_state: BoolRef) -> bool:
3652
3797
  pass
3653
- def CheckBoxFlags(label: str, cur_flags: IntRef, flags_value: int) -> bool:
3798
+ def CheckBoxFlags(label: str, cur_flags: IntRef, flags_value: typing.SupportsInt) -> bool:
3654
3799
  pass
3655
3800
  def CloseCurrentPopup() -> None:
3656
3801
  pass
3657
3802
  @typing.overload
3658
- def CollapsingHeader(label: str, flags: int = 0) -> bool:
3803
+ def CollapsingHeader(label: str, flags: typing.SupportsInt = 0) -> bool:
3659
3804
  pass
3660
3805
  @typing.overload
3661
- def CollapsingHeader(label: str, p_visible: BoolRef, flags: int = 0) -> bool:
3806
+ def CollapsingHeader(label: str, p_visible: BoolRef, flags: typing.SupportsInt = 0) -> bool:
3662
3807
  pass
3663
- def ColorButton(desc_id: str, col: Vec4, flags: int = 0, size: Vec2 = Vec2(0, 0)) -> bool:
3808
+ def ColorButton(desc_id: str, col: Vec4, flags: typing.SupportsInt = 0, size: Vec2 = Vec2(0, 0)) -> bool:
3664
3809
  pass
3665
3810
  def ColorConvertFloat4ToU32(inColor: Vec4) -> int:
3666
3811
  pass
3667
- def ColorConvertHSVtoRGB(h: float, s: float, v: float) -> tuple:
3812
+ def ColorConvertHSVtoRGB(h: typing.SupportsFloat, s: typing.SupportsFloat, v: typing.SupportsFloat) -> tuple:
3668
3813
  pass
3669
- def ColorConvertRGBtoHSV(r: float, g: float, b: float) -> tuple:
3814
+ def ColorConvertRGBtoHSV(r: typing.SupportsFloat, g: typing.SupportsFloat, b: typing.SupportsFloat) -> tuple:
3670
3815
  pass
3671
- def ColorConvertU32ToFloat4(inColor: int) -> Vec4:
3816
+ def ColorConvertU32ToFloat4(inColor: typing.SupportsInt) -> Vec4:
3672
3817
  pass
3673
- def ColorEdit3(label: str, col: Vec4, flags: int = 0) -> bool:
3818
+ def ColorEdit3(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
3674
3819
  pass
3675
- def ColorEdit4(label: str, col: Vec4, flags: int = 0) -> bool:
3820
+ def ColorEdit4(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
3676
3821
  pass
3677
- def ColorPicker3(label: str, col: Vec4, flags: int = 0) -> bool:
3822
+ def ColorPicker3(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
3678
3823
  pass
3679
- def ColorPicker4(label: str, col: Vec4, flags: int = 0, ref_col: typing.Optional[Vec4] = None) -> bool:
3824
+ def ColorPicker4(label: str, col: Vec4, flags: typing.SupportsInt = 0, ref_col: typing.Optional[Vec4] = None) -> bool:
3680
3825
  pass
3681
3826
  def CreateContext(shared_font_atlas: typing.Optional[ImFontAtlas] = None) -> Context:
3682
3827
  pass
3683
- def DebugFlashStyleColor(idx: int) -> None:
3828
+ def DebugFlashStyleColor(idx: typing.SupportsInt) -> None:
3684
3829
  pass
3685
3830
  def DebugStartItemPicker() -> None:
3686
3831
  pass
@@ -3688,25 +3833,25 @@ def DebugTextEncoding(text: str) -> None:
3688
3833
  pass
3689
3834
  def DestroyContext(ctx: typing.Optional[Context] = None) -> None:
3690
3835
  pass
3691
- def DragFloat(label: str, value: FloatRef, v_speed: float = 1.0, v_min: float = 0.0, v_max: float = 0.0, format: str = '%.3f', flags: int = 0) -> bool:
3836
+ def DragFloat(label: str, value: FloatRef, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsFloat = 0.0, v_max: typing.SupportsFloat = 0.0, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3692
3837
  pass
3693
- def DragFloat2(label: str, value: FloatList, v_speed: float = 1.0, v_min: float = 0.0, v_max: float = 0.0, format: str = '%.3f', flags: int = 0) -> bool:
3838
+ def DragFloat2(label: str, value: FloatList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsFloat = 0.0, v_max: typing.SupportsFloat = 0.0, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3694
3839
  pass
3695
- def DragFloat3(label: str, value: FloatList, v_speed: float = 1.0, v_min: float = 0.0, v_max: float = 0.0, format: str = '%.3f', flags: int = 0) -> bool:
3840
+ def DragFloat3(label: str, value: FloatList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsFloat = 0.0, v_max: typing.SupportsFloat = 0.0, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3696
3841
  pass
3697
- def DragFloat4(label: str, value: FloatList, v_speed: float = 1.0, v_min: float = 0.0, v_max: float = 0.0, format: str = '%.3f', flags: int = 0) -> bool:
3842
+ def DragFloat4(label: str, value: FloatList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsFloat = 0.0, v_max: typing.SupportsFloat = 0.0, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3698
3843
  pass
3699
- def DragFloatRange2(label: str, v_current_min: FloatRef, v_current_max: FloatRef, v_speed: float = 1.0, v_min: float = 0.0, v_max: float = 0.0, format: str = '%.3f', format_max: typing.Optional[str] = None, flags: int = 0) -> bool:
3844
+ def DragFloatRange2(label: str, v_current_min: FloatRef, v_current_max: FloatRef, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsFloat = 0.0, v_max: typing.SupportsFloat = 0.0, format: str = '%.3f', format_max: typing.Optional[str] = None, flags: typing.SupportsInt = 0) -> bool:
3700
3845
  pass
3701
- def DragInt(label: str, value: IntRef, v_speed: float = 1.0, v_min: int = 0, v_max: int = 0, format: str = '%d', flags: int = 0) -> bool:
3846
+ def DragInt(label: str, value: IntRef, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsInt = 0, v_max: typing.SupportsInt = 0, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
3702
3847
  pass
3703
- def DragInt2(label: str, value: IntList, v_speed: float = 1.0, v_min: int = 0, v_max: int = 0, format: str = '%d', flags: int = 0) -> bool:
3848
+ def DragInt2(label: str, value: IntList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsInt = 0, v_max: typing.SupportsInt = 0, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
3704
3849
  pass
3705
- def DragInt3(label: str, value: IntList, v_speed: float = 1.0, v_min: int = 0, v_max: int = 0, format: str = '%d', flags: int = 0) -> bool:
3850
+ def DragInt3(label: str, value: IntList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsInt = 0, v_max: typing.SupportsInt = 0, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
3706
3851
  pass
3707
- def DragInt4(label: str, value: IntList, v_speed: float = 1.0, v_min: int = 0, v_max: int = 0, format: str = '%d', flags: int = 0) -> bool:
3852
+ def DragInt4(label: str, value: IntList, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsInt = 0, v_max: typing.SupportsInt = 0, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
3708
3853
  pass
3709
- def DragIntRange2(label: str, v_current_min: IntRef, v_current_max: IntRef, v_speed: float = 1.0, v_min: int = 0, v_max: int = 0, format: str = '%d', format_max: typing.Optional[str] = None, flags: int = 0) -> tuple:
3854
+ def DragIntRange2(label: str, v_current_min: IntRef, v_current_max: IntRef, v_speed: typing.SupportsFloat = 1.0, v_min: typing.SupportsInt = 0, v_max: typing.SupportsInt = 0, format: str = '%d', format_max: typing.Optional[str] = None, flags: typing.SupportsInt = 0) -> tuple:
3710
3855
  pass
3711
3856
  def Dummy(size: Vec2) -> None:
3712
3857
  pass
@@ -3752,10 +3897,10 @@ def GetClipboardText() -> str:
3752
3897
  def GetColorU32(col: Vec4) -> int:
3753
3898
  pass
3754
3899
  @typing.overload
3755
- def GetColorU32(col: int, alpha_mul: float = 1.0) -> int:
3900
+ def GetColorU32(col: typing.SupportsInt, alpha_mul: typing.SupportsFloat = 1.0) -> int:
3756
3901
  pass
3757
3902
  @typing.overload
3758
- def GetColorU32(idx: int, alpha_mul: float = 1.0) -> int:
3903
+ def GetColorU32(idx: typing.SupportsInt, alpha_mul: typing.SupportsFloat = 1.0) -> int:
3759
3904
  pass
3760
3905
  def GetContentRegionAvail() -> Vec2:
3761
3906
  pass
@@ -3773,7 +3918,7 @@ def GetCursorStartPos() -> Vec2:
3773
3918
  pass
3774
3919
  def GetDragDropPayload() -> ImGuiPayload:
3775
3920
  pass
3776
- def GetDrawData() -> ImDrawData:
3921
+ def GetDrawData() -> DrawData:
3777
3922
  pass
3778
3923
  def GetDrawListSharedData() -> ImDrawListSharedData:
3779
3924
  pass
@@ -3792,10 +3937,10 @@ def GetFrameHeight() -> float:
3792
3937
  def GetFrameHeightWithSpacing() -> float:
3793
3938
  pass
3794
3939
  @typing.overload
3795
- def GetID(int_id: int) -> int:
3940
+ def GetID(int_id: typing.SupportsInt) -> int:
3796
3941
  pass
3797
3942
  @typing.overload
3798
- def GetID(ptr_id: capsule) -> int:
3943
+ def GetID(ptr_id: types.CapsuleType) -> int:
3799
3944
  pass
3800
3945
  @typing.overload
3801
3946
  def GetID(str_id: str) -> int:
@@ -3815,13 +3960,13 @@ def GetItemRectSize() -> Vec2:
3815
3960
  pass
3816
3961
  def GetKeyName(key: ImKey) -> str:
3817
3962
  pass
3818
- def GetKeyPressedAmount(key: ImKey, repeat_delay: float, rate: float) -> int:
3963
+ def GetKeyPressedAmount(key: ImKey, repeat_delay: typing.SupportsFloat, rate: typing.SupportsFloat) -> int:
3819
3964
  pass
3820
3965
  def GetMainViewport() -> Viewport:
3821
3966
  pass
3822
3967
  def GetMouseCursor() -> int:
3823
3968
  pass
3824
- def GetMouseDragDelta(button: int = 0, locl_threshold: float = -1.0) -> Vec2:
3969
+ def GetMouseDragDelta(button: typing.SupportsInt = 0, locl_threshold: typing.SupportsFloat = -1.0) -> Vec2:
3825
3970
  pass
3826
3971
  def GetMousePos() -> Vec2:
3827
3972
  pass
@@ -3839,9 +3984,9 @@ def GetStateStorage() -> ImGuiStorage:
3839
3984
  pass
3840
3985
  def GetStyle() -> Style:
3841
3986
  pass
3842
- def GetStyleColorName(idx: int) -> str:
3987
+ def GetStyleColorName(idx: typing.SupportsInt) -> str:
3843
3988
  pass
3844
- def GetStyleColorVec4(idx: int) -> Vec4:
3989
+ def GetStyleColorVec4(idx: typing.SupportsInt) -> Vec4:
3845
3990
  pass
3846
3991
  def GetTextLineHeight() -> float:
3847
3992
  pass
@@ -3863,59 +4008,61 @@ def GetWindowSize() -> Vec2:
3863
4008
  pass
3864
4009
  def GetWindowWidth() -> float:
3865
4010
  pass
3866
- def Image(texID: Texture, size: Vec2, uv0: Vec2 = Vec2(0, 0), uv1: Vec2 = Vec2(1, 1), tint_col: Vec4 = Vec4(1, 1, 1, 1), border_col: Vec4 = Vec4(0, 0, 0, 0)) -> None:
4011
+ def Image(texID: Texture, size: Vec2, uv0: Vec2 = Vec2(0, 0), uv1: Vec2 = Vec2(1, 1)) -> None:
3867
4012
  pass
3868
4013
  def ImageButton(str_id: str, texID: Texture, size: Vec2, uv0: Vec2 = Vec2(0, 0), uv1: Vec2 = Vec2(1, 1), bg_col: Vec4 = Vec4(0, 0, 0, 0), tint_col: Vec4 = Vec4(1, 1, 1, 1)) -> bool:
3869
4014
  pass
3870
- def Indent(indent_w: float = 0.0) -> None:
4015
+ def ImageWithBg(texID: Texture, image_size: Vec2, uv0: Vec2 = Vec2(0, 0), uv1: Vec2 = Vec2(1, 1), ubg_col: Vec4 = Vec4(0, 0, 0, 0), uv1: Vec4 = Vec4(1, 1, 1, 1)) -> None:
4016
+ pass
4017
+ def Indent(indent_w: typing.SupportsFloat = 0.0) -> None:
3871
4018
  pass
3872
- def InitContextForGLFW(window: capsule, glsl_version: typing.Optional[str] = None) -> None:
4019
+ def InitContextForGLFW(window: types.CapsuleType, glsl_version: typing.Optional[str] = None) -> None:
3873
4020
  pass
3874
- def InputFloat(label: str, v: FloatRef, step: float = 0.0, step_fast: float = 0.0, format: str = '%.3f', flags: int = 0) -> bool:
4021
+ def InputFloat(label: str, v: FloatRef, step: typing.SupportsFloat = 0.0, step_fast: typing.SupportsFloat = 0.0, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3875
4022
  """
3876
4023
  Input for a single float value
3877
4024
  """
3878
- def InputFloat2(label: str, v: FloatList, format: str = '%.3f', flags: int = 0) -> bool:
4025
+ def InputFloat2(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3879
4026
  """
3880
4027
  Input for a pair of float values
3881
4028
  """
3882
- def InputFloat3(label: str, v: FloatList, format: str = '%.3f', flags: int = 0) -> bool:
4029
+ def InputFloat3(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3883
4030
  """
3884
4031
  Input for a triplet of floats
3885
4032
  """
3886
- def InputFloat4(label: str, v: FloatList, format: str = '%.3f', flags: int = 0) -> bool:
4033
+ def InputFloat4(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
3887
4034
  """
3888
4035
  Input for four floats
3889
4036
  """
3890
- def InputInt(label: str, v: IntRef, step: int = 1, step_fast: int = 100, flags: int = 0) -> bool:
4037
+ def InputInt(label: str, v: IntRef, step: typing.SupportsInt = 1, step_fast: typing.SupportsInt = 100, flags: typing.SupportsInt = 0) -> bool:
3891
4038
  """
3892
4039
  Input for a single int
3893
4040
  """
3894
- def InputInt2(label: str, v: IntList, flags: int = 0) -> bool:
4041
+ def InputInt2(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
3895
4042
  """
3896
4043
  Input for a pair of ints
3897
4044
  """
3898
- def InputInt3(label: str, v: IntList, flags: int = 0) -> bool:
4045
+ def InputInt3(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
3899
4046
  """
3900
4047
  Input for a triplet of ints
3901
4048
  """
3902
- def InputInt4(label: str, v: IntList, flags: int = 0) -> bool:
4049
+ def InputInt4(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
3903
4050
  """
3904
4051
  Input for four ints
3905
4052
  """
3906
- def InputText(label: str, value: StrRef, flags: int = 0) -> bool:
4053
+ def InputText(label: str, value: StrRef, flags: typing.SupportsInt = 0) -> bool:
3907
4054
  """
3908
4055
  Single line text input
3909
4056
  """
3910
- def InputTextMultiline(label: str, value: StrRef, size: Vec2 = Vec2(0, 0), flags: int = 0) -> bool:
4057
+ def InputTextMultiline(label: str, value: StrRef, size: Vec2 = Vec2(0, 0), flags: typing.SupportsInt = 0) -> bool:
3911
4058
  """
3912
4059
  Multiline text input
3913
4060
  """
3914
- def InputTextWithHint(label: str, hint: str, value: StrRef, flags: int = 0) -> bool:
4061
+ def InputTextWithHint(label: str, hint: str, value: StrRef, flags: typing.SupportsInt = 0) -> bool:
3915
4062
  """
3916
4063
  Single line text input with placeholder hint
3917
4064
  """
3918
- def InvisibleButton(str_id: str, size: Vec2, flags: int = 0) -> bool:
4065
+ def InvisibleButton(str_id: str, size: Vec2, flags: typing.SupportsInt = 0) -> bool:
3919
4066
  pass
3920
4067
  def IsAnyItemActive() -> bool:
3921
4068
  pass
@@ -3927,7 +4074,7 @@ def IsItemActivated() -> bool:
3927
4074
  pass
3928
4075
  def IsItemActive() -> bool:
3929
4076
  pass
3930
- def IsItemClicked(mouse_button: int = 0) -> bool:
4077
+ def IsItemClicked(mouse_button: typing.SupportsInt = 0) -> bool:
3931
4078
  pass
3932
4079
  def IsItemDeactivated() -> bool:
3933
4080
  pass
@@ -3937,13 +4084,13 @@ def IsItemEdited() -> bool:
3937
4084
  pass
3938
4085
  def IsItemFocused() -> bool:
3939
4086
  pass
3940
- def IsItemHovered(flags: int = 0) -> bool:
4087
+ def IsItemHovered(flags: typing.SupportsInt = 0) -> bool:
3941
4088
  pass
3942
4089
  def IsItemToggledOpen() -> bool:
3943
4090
  pass
3944
4091
  def IsItemVisible() -> bool:
3945
4092
  pass
3946
- def IsKeyChordPressed(key_chord: int) -> bool:
4093
+ def IsKeyChordPressed(key_chord: typing.SupportsInt) -> bool:
3947
4094
  pass
3948
4095
  def IsKeyDown(key: ImKey) -> bool:
3949
4096
  pass
@@ -3951,23 +4098,23 @@ def IsKeyPressed(key: ImKey, repeat: bool = True) -> bool:
3951
4098
  pass
3952
4099
  def IsKeyReleased(key: ImKey) -> bool:
3953
4100
  pass
3954
- def IsMouseClicked(button: int, repeat: bool) -> bool:
4101
+ def IsMouseClicked(button: typing.SupportsInt, repeat: bool) -> bool:
3955
4102
  pass
3956
- def IsMouseDoubleClicked(button: int) -> bool:
4103
+ def IsMouseDoubleClicked(button: typing.SupportsInt) -> bool:
3957
4104
  pass
3958
- def IsMouseDown(button: int) -> bool:
4105
+ def IsMouseDown(button: typing.SupportsInt) -> bool:
3959
4106
  pass
3960
- def IsMouseDragging(button: int, lock_threshold: float = -1.0) -> bool:
4107
+ def IsMouseDragging(button: typing.SupportsInt, lock_threshold: typing.SupportsFloat = -1.0) -> bool:
3961
4108
  pass
3962
4109
  def IsMouseHoveringRect(r_min: Vec2, r_max: Vec2, clip: bool = True) -> bool:
3963
4110
  pass
3964
4111
  def IsMousePosValid(mouse_pos: typing.Optional[Vec2] = None) -> bool:
3965
4112
  pass
3966
- def IsMouseReleased(button: int) -> bool:
4113
+ def IsMouseReleased(button: typing.SupportsInt) -> bool:
3967
4114
  pass
3968
- def IsMouseReleasedWithDelay(button: int, delay: float) -> bool:
4115
+ def IsMouseReleasedWithDelay(button: typing.SupportsInt, delay: typing.SupportsFloat) -> bool:
3969
4116
  pass
3970
- def IsPopupOpen(str_id: str, flags: int = 0) -> bool:
4117
+ def IsPopupOpen(str_id: str, flags: typing.SupportsInt = 0) -> bool:
3971
4118
  pass
3972
4119
  @typing.overload
3973
4120
  def IsRectVisible(rect_min: Vec2, rect_max: Vec2) -> bool:
@@ -3979,9 +4126,9 @@ def IsWindowAppearing() -> bool:
3979
4126
  pass
3980
4127
  def IsWindowCollapsed() -> bool:
3981
4128
  pass
3982
- def IsWindowFocused(flags: int = 0) -> bool:
4129
+ def IsWindowFocused(flags: typing.SupportsInt = 0) -> bool:
3983
4130
  pass
3984
- def IsWindowHovered(flags: int = 0) -> bool:
4131
+ def IsWindowHovered(flags: typing.SupportsInt = 0) -> bool:
3985
4132
  pass
3986
4133
  def LabelText(label: str, text: str) -> None:
3987
4134
  pass
@@ -3989,9 +4136,9 @@ def LoadIniSettingsFromDisk(filename: str) -> None:
3989
4136
  pass
3990
4137
  def LoadIniSettingsFromMemory(data: str) -> None:
3991
4138
  pass
3992
- def LoadTexture(data: bytes, width: int, height: int, numChannels: int = 3, mipMapLevel: int = 0) -> Texture:
4139
+ def LoadTexture(data: bytes, width: typing.SupportsInt, height: typing.SupportsInt, numChannels: typing.SupportsInt = 3, mipMapLevel: typing.SupportsInt = 0) -> Texture:
3993
4140
  pass
3994
- def LoadTextureFile(filename: str, requestedChannels: int = 0, mipMapLevel: int = 0) -> Texture:
4141
+ def LoadTextureFile(filename: str, requestedChannels: typing.SupportsInt = 0, mipMapLevel: typing.SupportsInt = 0) -> Texture:
3995
4142
  pass
3996
4143
  def LogButtons() -> None:
3997
4144
  pass
@@ -3999,11 +4146,11 @@ def LogFinish() -> None:
3999
4146
  pass
4000
4147
  def LogText(text: str) -> None:
4001
4148
  pass
4002
- def LogToClipboard(auto_open_depth: int = -1) -> None:
4149
+ def LogToClipboard(auto_open_depth: typing.SupportsInt = -1) -> None:
4003
4150
  pass
4004
- def LogToFile(auto_open_depth: int = -1, filename: typing.Optional[str] = None) -> None:
4151
+ def LogToFile(auto_open_depth: typing.SupportsInt = -1, filename: typing.Optional[str] = None) -> None:
4005
4152
  pass
4006
- def LogToTTY(auto_open_depth: int = -1) -> None:
4153
+ def LogToTTY(auto_open_depth: typing.SupportsInt = -1) -> None:
4007
4154
  pass
4008
4155
  def MenuItem(label: str, shortcut: typing.Optional[str] = None, selected: bool = False, enabled: bool = True) -> bool:
4009
4156
  pass
@@ -4012,12 +4159,12 @@ def NewFrame() -> None:
4012
4159
  def NewLine() -> None:
4013
4160
  pass
4014
4161
  @typing.overload
4015
- def OpenPopup(id: int, popup_flags: int = 0) -> None:
4162
+ def OpenPopup(id: typing.SupportsInt, popup_flags: typing.SupportsInt = 0) -> None:
4016
4163
  pass
4017
4164
  @typing.overload
4018
- def OpenPopup(str_id: str, popup_flags: int = 0) -> None:
4165
+ def OpenPopup(str_id: str, popup_flags: typing.SupportsInt = 0) -> None:
4019
4166
  pass
4020
- def OpenPopupOnItemClick(str_id: typing.Optional[str] = None, popup_flags: int = 1) -> None:
4167
+ def OpenPopupOnItemClick(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> None:
4021
4168
  pass
4022
4169
  def PopClipRect() -> None:
4023
4170
  pass
@@ -4029,23 +4176,23 @@ def PopItemFlag() -> None:
4029
4176
  pass
4030
4177
  def PopItemWidth() -> None:
4031
4178
  pass
4032
- def PopStyleColor(arg0: int) -> None:
4179
+ def PopStyleColor(arg0: typing.SupportsInt) -> None:
4033
4180
  pass
4034
- def PopStyleVar(count: int = 1) -> None:
4181
+ def PopStyleVar(count: typing.SupportsInt = 1) -> None:
4035
4182
  pass
4036
4183
  def PopTextWrapPos() -> None:
4037
4184
  pass
4038
- def ProgressBar(fraction: float, size_arg: Vec2 = Vec2(-FLT_MIN, 0), overlay: typing.Optional[str] = None) -> None:
4185
+ def ProgressBar(fraction: typing.SupportsFloat, size_arg: Vec2 = Vec2(-FLT_MIN, 0), overlay: typing.Optional[str] = None) -> None:
4039
4186
  pass
4040
4187
  def PushClipRect(clip_rect_min: Vec2, clip_rect_max: Vec2, intersect_with_current_clip_rect: bool) -> None:
4041
4188
  pass
4042
- def PushFont(font: ImFont) -> None:
4189
+ def PushFont(font: ImFont, font_size_base_unscaled: typing.SupportsFloat) -> None:
4043
4190
  pass
4044
4191
  @typing.overload
4045
- def PushID(int_id: int) -> None:
4192
+ def PushID(int_id: typing.SupportsInt) -> None:
4046
4193
  pass
4047
4194
  @typing.overload
4048
- def PushID(ptr_id: capsule) -> None:
4195
+ def PushID(ptr_id: types.CapsuleType) -> None:
4049
4196
  pass
4050
4197
  @typing.overload
4051
4198
  def PushID(str_id: str) -> None:
@@ -4053,30 +4200,30 @@ def PushID(str_id: str) -> None:
4053
4200
  @typing.overload
4054
4201
  def PushID(str_id_begin: str, str_id_end: str) -> None:
4055
4202
  pass
4056
- def PushItemFlag(option: int, enabled: bool) -> None:
4203
+ def PushItemFlag(option: typing.SupportsInt, enabled: bool) -> None:
4057
4204
  pass
4058
- def PushItemWidth(item_width: float) -> None:
4205
+ def PushItemWidth(item_width: typing.SupportsFloat) -> None:
4059
4206
  pass
4060
4207
  @typing.overload
4061
- def PushStyleColor(idx: int, col: Vec4) -> None:
4208
+ def PushStyleColor(idx: typing.SupportsInt, col: Vec4) -> None:
4062
4209
  pass
4063
4210
  @typing.overload
4064
- def PushStyleColor(idx: int, col: int) -> None:
4211
+ def PushStyleColor(idx: typing.SupportsInt, col: typing.SupportsInt) -> None:
4065
4212
  pass
4066
4213
  @typing.overload
4067
- def PushStyleVar(idx: int, val: Vec2) -> None:
4214
+ def PushStyleVar(idx: typing.SupportsInt, val: Vec2) -> None:
4068
4215
  pass
4069
4216
  @typing.overload
4070
- def PushStyleVar(idx: int, val: float) -> None:
4217
+ def PushStyleVar(idx: typing.SupportsInt, val: float) -> None:
4071
4218
  pass
4072
- def PushStyleVarX(idx: int, val: float) -> None:
4219
+ def PushStyleVarX(idx: typing.SupportsInt, val: typing.SupportsFloat) -> None:
4073
4220
  pass
4074
- def PushStyleVarY(idx: int, val: float) -> None:
4221
+ def PushStyleVarY(idx: typing.SupportsInt, val: typing.SupportsFloat) -> None:
4075
4222
  pass
4076
- def PushTextWrapPos(wrap_local_pos_x: float = 0.0) -> None:
4223
+ def PushTextWrapPos(wrap_local_pos_x: typing.SupportsFloat = 0.0) -> None:
4077
4224
  pass
4078
4225
  @typing.overload
4079
- def RadioButton(label: str, v: IntRef, v_button: int) -> bool:
4226
+ def RadioButton(label: str, v: IntRef, v_button: typing.SupportsInt) -> bool:
4080
4227
  """
4081
4228
  Create a radio button, returns true if pressed
4082
4229
 
@@ -4092,17 +4239,17 @@ def RadioButton(label: str, v: IntRef, v_button: int) -> bool:
4092
4239
  @typing.overload
4093
4240
  def RadioButton(label: str, value: bool) -> bool:
4094
4241
  pass
4095
- def Render(window: capsule, clear_color: Vec4) -> None:
4242
+ def Render(window: types.CapsuleType, clear_color: Vec4) -> None:
4096
4243
  pass
4097
- def ResetMouseDragDelta(button: int = 0) -> None:
4244
+ def ResetMouseDragDelta(button: typing.SupportsInt = 0) -> None:
4098
4245
  pass
4099
- def SameLine(offset_from_start_x: float = 0.0, spacing: float = 1.0) -> None:
4246
+ def SameLine(offset_from_start_x: typing.SupportsFloat = 0.0, spacing: typing.SupportsFloat = 1.0) -> None:
4100
4247
  pass
4101
4248
  def SaveIniSettingsToDisk(filename: str) -> None:
4102
4249
  pass
4103
4250
  def SaveIniSettingsToMemory() -> str:
4104
4251
  pass
4105
- def Selectable(label: str, selected: bool = False, flags: int = 0, size: Vec2 = Vec2(0, 0)) -> bool:
4252
+ def Selectable(label: str, selected: bool = False, flags: typing.SupportsInt = 0, size: Vec2 = Vec2(0, 0)) -> bool:
4106
4253
  pass
4107
4254
  def Separator() -> None:
4108
4255
  pass
@@ -4110,19 +4257,19 @@ def SeparatorText(label: str) -> None:
4110
4257
  pass
4111
4258
  def SetClipboardText(text: str) -> None:
4112
4259
  pass
4113
- def SetColorEditOptions(flags: int) -> None:
4260
+ def SetColorEditOptions(flags: typing.SupportsInt) -> None:
4114
4261
  pass
4115
4262
  def SetCurrentContext(ctx: Context) -> None:
4116
4263
  pass
4117
4264
  def SetCursorPos(pos: Vec2) -> None:
4118
4265
  pass
4119
- def SetCursorPosX(local_x: float) -> None:
4266
+ def SetCursorPosX(local_x: typing.SupportsFloat) -> None:
4120
4267
  pass
4121
- def SetCursorPosY(local_y: float) -> None:
4268
+ def SetCursorPosY(local_y: typing.SupportsFloat) -> None:
4122
4269
  pass
4123
4270
  def SetCursorScreenPos(arg0: Vec2) -> None:
4124
4271
  pass
4125
- def SetDragDropPayload(type: str, data: capsule, size: int, cond: int = 0) -> bool:
4272
+ def SetDragDropPayload(type: str, data: types.CapsuleType, size: typing.SupportsInt, cond: typing.SupportsInt = 0) -> bool:
4126
4273
  pass
4127
4274
  def SetItemDefaultFocus() -> None:
4128
4275
  pass
@@ -4130,9 +4277,9 @@ def SetItemKeyOwner(key: ImKey) -> None:
4130
4277
  pass
4131
4278
  def SetItemTooltip(value: str) -> None:
4132
4279
  pass
4133
- def SetKeyboardFocusHere(offset: int = 0) -> None:
4280
+ def SetKeyboardFocusHere(offset: typing.SupportsInt = 0) -> None:
4134
4281
  pass
4135
- def SetMouseCursor(cursor_type: int) -> None:
4282
+ def SetMouseCursor(cursor_type: typing.SupportsInt) -> None:
4136
4283
  pass
4137
4284
  def SetNextFrameWantCaptureKeyboard(want_capture_keyboard: bool) -> None:
4138
4285
  pass
@@ -4140,39 +4287,39 @@ def SetNextFrameWantCaptureMouse(want_capture_mouse: bool) -> None:
4140
4287
  pass
4141
4288
  def SetNextItemAllowOverlap() -> None:
4142
4289
  pass
4143
- def SetNextItemOpen(is_open: bool, cond: int = 0) -> None:
4290
+ def SetNextItemOpen(is_open: bool, cond: typing.SupportsInt = 0) -> None:
4144
4291
  pass
4145
- def SetNextItemShortcut(key_chord: int, flags: int = 0) -> None:
4292
+ def SetNextItemShortcut(key_chord: typing.SupportsInt, flags: typing.SupportsInt = 0) -> None:
4146
4293
  pass
4147
- def SetNextItemStorageID(storage_id: int) -> None:
4294
+ def SetNextItemStorageID(storage_id: typing.SupportsInt) -> None:
4148
4295
  pass
4149
- def SetNextItemWidth(item_width: float) -> None:
4296
+ def SetNextItemWidth(item_width: typing.SupportsFloat) -> None:
4150
4297
  pass
4151
- def SetNextWindowBgAlpha(alpha: float) -> None:
4298
+ def SetNextWindowBgAlpha(alpha: typing.SupportsFloat) -> None:
4152
4299
  pass
4153
- def SetNextWindowCollapsed(collapsed: bool, cond: int = 0) -> None:
4300
+ def SetNextWindowCollapsed(collapsed: bool, cond: typing.SupportsInt = 0) -> None:
4154
4301
  pass
4155
4302
  def SetNextWindowContentSize(size: Vec2) -> None:
4156
4303
  pass
4157
4304
  def SetNextWindowFocus() -> None:
4158
4305
  pass
4159
- def SetNextWindowPos(pos: Vec2, cond: int = 0, pivot: Vec2 = Vec2(0, 0)) -> None:
4306
+ def SetNextWindowPos(pos: Vec2, cond: typing.SupportsInt = 0, pivot: Vec2 = Vec2(0, 0)) -> None:
4160
4307
  pass
4161
4308
  def SetNextWindowScroll(scroll: Vec2) -> None:
4162
4309
  pass
4163
- def SetNextWindowSize(size: Vec2, cond: int = 0) -> None:
4310
+ def SetNextWindowSize(size: Vec2, cond: typing.SupportsInt = 0) -> None:
4164
4311
  pass
4165
- def SetScrollFromPosX(local_x: float, center_x_ratio: float = 0.5) -> None:
4312
+ def SetScrollFromPosX(local_x: typing.SupportsFloat, center_x_ratio: typing.SupportsFloat = 0.5) -> None:
4166
4313
  pass
4167
- def SetScrollFromPosY(local_x: float, center_y_ratio: float = 0.5) -> None:
4314
+ def SetScrollFromPosY(local_x: typing.SupportsFloat, center_y_ratio: typing.SupportsFloat = 0.5) -> None:
4168
4315
  pass
4169
- def SetScrollHereX(center_x_ratio: float = 0.5) -> None:
4316
+ def SetScrollHereX(center_x_ratio: typing.SupportsFloat = 0.5) -> None:
4170
4317
  pass
4171
- def SetScrollHereY(center_y_ratio: float = 0.5) -> None:
4318
+ def SetScrollHereY(center_y_ratio: typing.SupportsFloat = 0.5) -> None:
4172
4319
  pass
4173
- def SetScrollX(scroll_x: float) -> None:
4320
+ def SetScrollX(scroll_x: typing.SupportsFloat) -> None:
4174
4321
  pass
4175
- def SetScrollY(scroll_y: float) -> None:
4322
+ def SetScrollY(scroll_y: typing.SupportsFloat) -> None:
4176
4323
  pass
4177
4324
  def SetStateStorage(storage: ImGuiStorage) -> None:
4178
4325
  pass
@@ -4181,10 +4328,10 @@ def SetTabItemClosed(tab_or_docked_window_label: str) -> None:
4181
4328
  def SetTooltip(value: str) -> None:
4182
4329
  pass
4183
4330
  @typing.overload
4184
- def SetWindowCollapsed(collapsed: bool, cond: int = 0) -> None:
4331
+ def SetWindowCollapsed(collapsed: bool, cond: typing.SupportsInt = 0) -> None:
4185
4332
  pass
4186
4333
  @typing.overload
4187
- def SetWindowCollapsed(name: str, collapsed: bool, cond: int = 0) -> None:
4334
+ def SetWindowCollapsed(name: str, collapsed: bool, cond: typing.SupportsInt = 0) -> None:
4188
4335
  pass
4189
4336
  @typing.overload
4190
4337
  def SetWindowFocus() -> None:
@@ -4193,18 +4340,18 @@ def SetWindowFocus() -> None:
4193
4340
  def SetWindowFocus(name: str) -> None:
4194
4341
  pass
4195
4342
  @typing.overload
4196
- def SetWindowPos(name: str, pos: Vec2, cond: int = 0) -> None:
4343
+ def SetWindowPos(name: str, pos: Vec2, cond: typing.SupportsInt = 0) -> None:
4197
4344
  pass
4198
4345
  @typing.overload
4199
- def SetWindowPos(pos: Vec2, cond: int = 0) -> None:
4346
+ def SetWindowPos(pos: Vec2, cond: typing.SupportsInt = 0) -> None:
4200
4347
  pass
4201
4348
  @typing.overload
4202
- def SetWindowSize(name: str, pos: Vec2, cond: int = 0) -> None:
4349
+ def SetWindowSize(name: str, pos: Vec2, cond: typing.SupportsInt = 0) -> None:
4203
4350
  pass
4204
4351
  @typing.overload
4205
- def SetWindowSize(size: Vec2, cond: int = 0) -> None:
4352
+ def SetWindowSize(size: Vec2, cond: typing.SupportsInt = 0) -> None:
4206
4353
  pass
4207
- def Shortcut(key_chord: int, flags: int = 0) -> bool:
4354
+ def Shortcut(key_chord: typing.SupportsInt, flags: typing.SupportsInt = 0) -> bool:
4208
4355
  pass
4209
4356
  def ShowAboutWindow(p_open: typing.Optional[BoolRef] = None) -> None:
4210
4357
  pass
@@ -4226,23 +4373,23 @@ def ShowUserGuide() -> None:
4226
4373
  pass
4227
4374
  def Shutdown() -> None:
4228
4375
  pass
4229
- def SliderAngle(label: str, v_rad: float, v_deg_min: float = -360.0, v_deg_max: float = 360.0, format: str = '%.0f deg', flags: int = 0) -> tuple:
4376
+ def SliderAngle(label: str, v_rad: typing.SupportsFloat, v_deg_min: typing.SupportsFloat = -360.0, v_deg_max: typing.SupportsFloat = 360.0, format: str = '%.0f deg', flags: typing.SupportsInt = 0) -> tuple:
4230
4377
  pass
4231
- def SliderFloat(label: str, v: FloatRef, v_min: float, v_max: float, format: str = '%.3f', flags: int = 0) -> bool:
4378
+ def SliderFloat(label: str, v: FloatRef, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
4232
4379
  pass
4233
- def SliderFloat2(label: str, v: FloatList, v_min: float, v_max: float, format: str = '%.3f', flags: int = 0) -> bool:
4380
+ def SliderFloat2(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
4234
4381
  pass
4235
- def SliderFloat3(label: str, v: FloatList, v_min: float, v_max: float, format: str = '%.3f', flags: int = 0) -> bool:
4382
+ def SliderFloat3(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
4236
4383
  pass
4237
- def SliderFloat4(label: str, v: FloatList, v_min: float, v_max: float, format: str = '%.3f', flags: int = 0) -> tuple:
4384
+ def SliderFloat4(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> tuple:
4238
4385
  pass
4239
- def SliderInt(label: str, v: IntRef, v_min: int, v_max: int, format: str = '%d', flags: int = 0) -> bool:
4386
+ def SliderInt(label: str, v: IntRef, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
4240
4387
  pass
4241
- def SliderInt2(label: str, v: IntList, v_min: int, v_max: int, format: str = '%d', flags: int = 0) -> bool:
4388
+ def SliderInt2(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
4242
4389
  pass
4243
- def SliderInt3(label: str, v: IntList, v_min: int, v_max: int, format: str = '%d', flags: int = 0) -> bool:
4390
+ def SliderInt3(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
4244
4391
  pass
4245
- def SliderInt4(label: str, v: IntList, v_min: int, v_max: int, format: str = '%d', flags: int = 0) -> bool:
4392
+ def SliderInt4(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
4246
4393
  pass
4247
4394
  def SmallButton(label: str) -> bool:
4248
4395
  pass
@@ -4254,15 +4401,15 @@ def StyleColorsDark(dst: typing.Optional[Style] = None) -> None:
4254
4401
  pass
4255
4402
  def StyleColorsLight(dst: typing.Optional[Style] = None) -> None:
4256
4403
  pass
4257
- def TabItemButton(label: str, flags: int = 0) -> bool:
4404
+ def TabItemButton(label: str, flags: typing.SupportsInt = 0) -> bool:
4258
4405
  pass
4259
4406
  def TableGetColumnCount() -> int:
4260
4407
  pass
4261
- def TableGetColumnFlags(column_n: int = -1) -> int:
4408
+ def TableGetColumnFlags(column_n: typing.SupportsInt = -1) -> int:
4262
4409
  pass
4263
4410
  def TableGetColumnIndex() -> int:
4264
4411
  pass
4265
- def TableGetColumnName(column_n: int = -1) -> str:
4412
+ def TableGetColumnName(column_n: typing.SupportsInt = -1) -> str:
4266
4413
  pass
4267
4414
  def TableGetHoveredColumn() -> int:
4268
4415
  pass
@@ -4276,17 +4423,17 @@ def TableHeadersRow() -> None:
4276
4423
  pass
4277
4424
  def TableNextColumn() -> bool:
4278
4425
  pass
4279
- def TableNextRow(row_flags: int = 0, mind_row_height: float = 0.0) -> None:
4426
+ def TableNextRow(row_flags: typing.SupportsInt = 0, mind_row_height: typing.SupportsFloat = 0.0) -> None:
4280
4427
  pass
4281
- def TableSetBgColor(target: int, color: int, column_n: int = -1) -> None:
4428
+ def TableSetBgColor(target: typing.SupportsInt, color: typing.SupportsInt, column_n: typing.SupportsInt = -1) -> None:
4282
4429
  pass
4283
- def TableSetColumnEnabled(column_n: int, v: bool) -> None:
4430
+ def TableSetColumnEnabled(column_n: typing.SupportsInt, v: bool) -> None:
4284
4431
  pass
4285
- def TableSetColumnIndex(column_n: int) -> bool:
4432
+ def TableSetColumnIndex(column_n: typing.SupportsInt) -> bool:
4286
4433
  pass
4287
- def TableSetupColumn(label: str, flags: int = 0, init_width_or_weight: float = 0.0, user_id: int = 0) -> None:
4434
+ def TableSetupColumn(label: str, flags: typing.SupportsInt = 0, init_width_or_weight: typing.SupportsFloat = 0.0, user_id: typing.SupportsInt = 0) -> None:
4288
4435
  pass
4289
- def TableSetupScrollFreeze(cols: int, rows: int) -> None:
4436
+ def TableSetupScrollFreeze(cols: typing.SupportsInt, rows: typing.SupportsInt) -> None:
4290
4437
  pass
4291
4438
  def Text(text: str) -> None:
4292
4439
  pass
@@ -4296,7 +4443,7 @@ def TextDisabled(text: str) -> None:
4296
4443
  pass
4297
4444
  def TextLink(label: str) -> bool:
4298
4445
  pass
4299
- def TextLinkOpenURL(label: str, url: str) -> None:
4446
+ def TextLinkOpenURL(label: str, url: str) -> bool:
4300
4447
  pass
4301
4448
  def TextWrapped(text: str) -> None:
4302
4449
  pass
@@ -4307,21 +4454,21 @@ def TreeNode(label: str) -> bool:
4307
4454
  def TreeNode(str_id: str, fmt: str) -> bool:
4308
4455
  pass
4309
4456
  @typing.overload
4310
- def TreeNodeEx(label: str, flags: int = 0) -> bool:
4457
+ def TreeNodeEx(label: str, flags: typing.SupportsInt = 0) -> bool:
4311
4458
  pass
4312
4459
  @typing.overload
4313
- def TreeNodeEx(str_id: str, flags: int, fmt: str) -> bool:
4460
+ def TreeNodeEx(str_id: str, flags: typing.SupportsInt, fmt: str) -> bool:
4314
4461
  pass
4315
4462
  def TreePop() -> None:
4316
4463
  pass
4317
4464
  def TreePush(str_id: str) -> None:
4318
4465
  pass
4319
- def Unindent(indent_w: float = 0.0) -> None:
4466
+ def Unindent(indent_w: typing.SupportsFloat = 0.0) -> None:
4320
4467
  pass
4321
4468
  def UnloadTexture(texture: Texture) -> None:
4322
4469
  pass
4323
- def VSliderFloat(label: str, size: Vec2, v: float, v_min: float, v_max: float, format: str = '%.3f', flags: int = 0) -> tuple:
4470
+ def VSliderFloat(label: str, size: Vec2, v: typing.SupportsFloat, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> tuple:
4324
4471
  pass
4325
- def VSliderInt(label: str, size: Vec2, v: IntRef, v_min: int, v_max: int, format: str = '%.3f', flags: int = 0) -> bool:
4472
+ def VSliderInt(label: str, size: Vec2, v: IntRef, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
4326
4473
  pass
4327
4474
  FLT_MAX = 3.4028234663852886e+38