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