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