py-imgui-redux 3.3.0__cp38-cp38-win_amd64.whl → 3.4.1__cp38-cp38-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 +177 -36
- imgui/implot/__init__.pyi +2 -0
- imgui.cp38-win_amd64.pyd +0 -0
- {py_imgui_redux-3.3.0.dist-info → py_imgui_redux-3.4.1.dist-info}/METADATA +1 -1
- py_imgui_redux-3.4.1.dist-info/RECORD +10 -0
- {py_imgui_redux-3.3.0.dist-info → py_imgui_redux-3.4.1.dist-info}/WHEEL +1 -1
- py_imgui_redux-3.3.0.dist-info/RECORD +0 -10
- {py_imgui_redux-3.3.0.dist-info → py_imgui_redux-3.4.1.dist-info}/LICENSE +0 -0
- {py_imgui_redux-3.3.0.dist-info → py_imgui_redux-3.4.1.dist-info}/top_level.txt +0 -0
imgui/__init__.pyi
CHANGED
|
@@ -203,6 +203,7 @@ __all__ = [
|
|
|
203
203
|
"IsMouseHoveringRect",
|
|
204
204
|
"IsMousePosValid",
|
|
205
205
|
"IsMouseReleased",
|
|
206
|
+
"IsMouseReleasedWithDelay",
|
|
206
207
|
"IsPopupOpen",
|
|
207
208
|
"IsRectVisible",
|
|
208
209
|
"IsWindowAppearing",
|
|
@@ -254,6 +255,8 @@ __all__ = [
|
|
|
254
255
|
"PushItemWidth",
|
|
255
256
|
"PushStyleColor",
|
|
256
257
|
"PushStyleVar",
|
|
258
|
+
"PushStyleVarX",
|
|
259
|
+
"PushStyleVarY",
|
|
257
260
|
"PushTextWrapPos",
|
|
258
261
|
"RadioButton",
|
|
259
262
|
"Render",
|
|
@@ -368,7 +371,7 @@ __all__ = [
|
|
|
368
371
|
"TextDisabled",
|
|
369
372
|
"TextLink",
|
|
370
373
|
"TextLinkOpenURL",
|
|
371
|
-
"
|
|
374
|
+
"TextWrapped",
|
|
372
375
|
"Texture",
|
|
373
376
|
"TreeNode",
|
|
374
377
|
"TreeNodeEx",
|
|
@@ -384,6 +387,7 @@ __all__ = [
|
|
|
384
387
|
"Vec4",
|
|
385
388
|
"Viewport",
|
|
386
389
|
"ViewportFlags",
|
|
390
|
+
"WCharList",
|
|
387
391
|
"WindowFlags",
|
|
388
392
|
"glfw",
|
|
389
393
|
"imnodes",
|
|
@@ -418,7 +422,9 @@ class BoolRef():
|
|
|
418
422
|
"""
|
|
419
423
|
pass
|
|
420
424
|
class ButtonFlags():
|
|
425
|
+
EnableNav = 8
|
|
421
426
|
MouseButtonLeft = 1
|
|
427
|
+
MouseButtonMask_ = 7
|
|
422
428
|
MouseButtonMiddle = 4
|
|
423
429
|
MouseButtonRight = 2
|
|
424
430
|
None_ = 0
|
|
@@ -428,7 +434,7 @@ class ChildFlags():
|
|
|
428
434
|
AlwaysUseWindowPadding = 2
|
|
429
435
|
AutoResizeX = 16
|
|
430
436
|
AutoResizeY = 32
|
|
431
|
-
|
|
437
|
+
Borders = 1
|
|
432
438
|
FrameStyle = 128
|
|
433
439
|
NavFlattened = 256
|
|
434
440
|
None_ = 0
|
|
@@ -452,7 +458,7 @@ class Col():
|
|
|
452
458
|
HeaderHovered = 25
|
|
453
459
|
MenuBarBg = 13
|
|
454
460
|
ModalWindowDimBg = 55
|
|
455
|
-
|
|
461
|
+
NavCursor = 52
|
|
456
462
|
NavWindowingDimBg = 54
|
|
457
463
|
NavWindowingHighlight = 53
|
|
458
464
|
PlotHistogram = 42
|
|
@@ -514,8 +520,9 @@ class Color():
|
|
|
514
520
|
pass
|
|
515
521
|
class ColorEditFlags():
|
|
516
522
|
AlphaBar = 65536
|
|
517
|
-
|
|
518
|
-
|
|
523
|
+
AlphaNoBg = 4096
|
|
524
|
+
AlphaOpaque = 2048
|
|
525
|
+
AlphaPreviewHalf = 8192
|
|
519
526
|
DefaultOptions_ = 177209344
|
|
520
527
|
DisplayHSV = 2097152
|
|
521
528
|
DisplayHex = 4194304
|
|
@@ -563,8 +570,6 @@ class ConfigFlags():
|
|
|
563
570
|
IsTouchScreen = 2097152
|
|
564
571
|
NavEnableGamepad = 2
|
|
565
572
|
NavEnableKeyboard = 1
|
|
566
|
-
NavEnableSetMousePos = 4
|
|
567
|
-
NavNoCaptureKeyboard = 8
|
|
568
573
|
NoMouse = 16
|
|
569
574
|
NoMouseCursorChange = 32
|
|
570
575
|
None_ = 0
|
|
@@ -818,22 +823,6 @@ class IO():
|
|
|
818
823
|
def BackendRendererUserData(self, arg0: capsule) -> None:
|
|
819
824
|
pass
|
|
820
825
|
@property
|
|
821
|
-
def BackendUsingLegacyKeyArrays(self) -> int:
|
|
822
|
-
"""
|
|
823
|
-
:type: int
|
|
824
|
-
"""
|
|
825
|
-
@BackendUsingLegacyKeyArrays.setter
|
|
826
|
-
def BackendUsingLegacyKeyArrays(self, arg0: int) -> None:
|
|
827
|
-
pass
|
|
828
|
-
@property
|
|
829
|
-
def BackendUsingLegacyNavInputArray(self) -> bool:
|
|
830
|
-
"""
|
|
831
|
-
:type: bool
|
|
832
|
-
"""
|
|
833
|
-
@BackendUsingLegacyNavInputArray.setter
|
|
834
|
-
def BackendUsingLegacyNavInputArray(self, arg0: bool) -> None:
|
|
835
|
-
pass
|
|
836
|
-
@property
|
|
837
826
|
def ConfigDebugBeginReturnValueLoop(self) -> bool:
|
|
838
827
|
"""
|
|
839
828
|
:type: bool
|
|
@@ -850,6 +839,14 @@ class IO():
|
|
|
850
839
|
def ConfigDebugBeginReturnValueOnce(self, arg0: bool) -> None:
|
|
851
840
|
pass
|
|
852
841
|
@property
|
|
842
|
+
def ConfigDebugHighlightIdConflicts(self) -> bool:
|
|
843
|
+
"""
|
|
844
|
+
:type: bool
|
|
845
|
+
"""
|
|
846
|
+
@ConfigDebugHighlightIdConflicts.setter
|
|
847
|
+
def ConfigDebugHighlightIdConflicts(self, arg0: bool) -> None:
|
|
848
|
+
pass
|
|
849
|
+
@property
|
|
853
850
|
def ConfigDebugIgnoreFocusLoss(self) -> bool:
|
|
854
851
|
"""
|
|
855
852
|
:type: bool
|
|
@@ -882,6 +879,38 @@ class IO():
|
|
|
882
879
|
def ConfigDragClickToInputText(self, arg0: bool) -> None:
|
|
883
880
|
pass
|
|
884
881
|
@property
|
|
882
|
+
def ConfigErrorRecovery(self) -> bool:
|
|
883
|
+
"""
|
|
884
|
+
:type: bool
|
|
885
|
+
"""
|
|
886
|
+
@ConfigErrorRecovery.setter
|
|
887
|
+
def ConfigErrorRecovery(self, arg0: bool) -> None:
|
|
888
|
+
pass
|
|
889
|
+
@property
|
|
890
|
+
def ConfigErrorRecoveryEnableAssert(self) -> bool:
|
|
891
|
+
"""
|
|
892
|
+
:type: bool
|
|
893
|
+
"""
|
|
894
|
+
@ConfigErrorRecoveryEnableAssert.setter
|
|
895
|
+
def ConfigErrorRecoveryEnableAssert(self, arg0: bool) -> None:
|
|
896
|
+
pass
|
|
897
|
+
@property
|
|
898
|
+
def ConfigErrorRecoveryEnableDebugLog(self) -> bool:
|
|
899
|
+
"""
|
|
900
|
+
:type: bool
|
|
901
|
+
"""
|
|
902
|
+
@ConfigErrorRecoveryEnableDebugLog.setter
|
|
903
|
+
def ConfigErrorRecoveryEnableDebugLog(self, arg0: bool) -> None:
|
|
904
|
+
pass
|
|
905
|
+
@property
|
|
906
|
+
def ConfigErrorRecoveryEnableTooltip(self) -> bool:
|
|
907
|
+
"""
|
|
908
|
+
:type: bool
|
|
909
|
+
"""
|
|
910
|
+
@ConfigErrorRecoveryEnableTooltip.setter
|
|
911
|
+
def ConfigErrorRecoveryEnableTooltip(self, arg0: bool) -> None:
|
|
912
|
+
pass
|
|
913
|
+
@property
|
|
885
914
|
def ConfigFlags(self) -> int:
|
|
886
915
|
"""
|
|
887
916
|
:type: int
|
|
@@ -930,6 +959,54 @@ class IO():
|
|
|
930
959
|
def ConfigMemoryCompactTimer(self, arg0: float) -> None:
|
|
931
960
|
pass
|
|
932
961
|
@property
|
|
962
|
+
def ConfigNavCaptureKeyboard(self) -> bool:
|
|
963
|
+
"""
|
|
964
|
+
:type: bool
|
|
965
|
+
"""
|
|
966
|
+
@ConfigNavCaptureKeyboard.setter
|
|
967
|
+
def ConfigNavCaptureKeyboard(self, arg0: bool) -> None:
|
|
968
|
+
pass
|
|
969
|
+
@property
|
|
970
|
+
def ConfigNavCursorVisibleAlways(self) -> bool:
|
|
971
|
+
"""
|
|
972
|
+
:type: bool
|
|
973
|
+
"""
|
|
974
|
+
@ConfigNavCursorVisibleAlways.setter
|
|
975
|
+
def ConfigNavCursorVisibleAlways(self, arg0: bool) -> None:
|
|
976
|
+
pass
|
|
977
|
+
@property
|
|
978
|
+
def ConfigNavCursorVisibleAuto(self) -> bool:
|
|
979
|
+
"""
|
|
980
|
+
:type: bool
|
|
981
|
+
"""
|
|
982
|
+
@ConfigNavCursorVisibleAuto.setter
|
|
983
|
+
def ConfigNavCursorVisibleAuto(self, arg0: bool) -> None:
|
|
984
|
+
pass
|
|
985
|
+
@property
|
|
986
|
+
def ConfigNavEscapeClearFocusItem(self) -> bool:
|
|
987
|
+
"""
|
|
988
|
+
:type: bool
|
|
989
|
+
"""
|
|
990
|
+
@ConfigNavEscapeClearFocusItem.setter
|
|
991
|
+
def ConfigNavEscapeClearFocusItem(self, arg0: bool) -> None:
|
|
992
|
+
pass
|
|
993
|
+
@property
|
|
994
|
+
def ConfigNavEscapeClearFocusWindow(self) -> bool:
|
|
995
|
+
"""
|
|
996
|
+
:type: bool
|
|
997
|
+
"""
|
|
998
|
+
@ConfigNavEscapeClearFocusWindow.setter
|
|
999
|
+
def ConfigNavEscapeClearFocusWindow(self, arg0: bool) -> None:
|
|
1000
|
+
pass
|
|
1001
|
+
@property
|
|
1002
|
+
def ConfigNavMoveSetMousePos(self) -> bool:
|
|
1003
|
+
"""
|
|
1004
|
+
:type: bool
|
|
1005
|
+
"""
|
|
1006
|
+
@ConfigNavMoveSetMousePos.setter
|
|
1007
|
+
def ConfigNavMoveSetMousePos(self, arg0: bool) -> None:
|
|
1008
|
+
pass
|
|
1009
|
+
@property
|
|
933
1010
|
def ConfigNavSwapGamepadButtons(self) -> bool:
|
|
934
1011
|
"""
|
|
935
1012
|
:type: bool
|
|
@@ -938,6 +1015,22 @@ class IO():
|
|
|
938
1015
|
def ConfigNavSwapGamepadButtons(self, arg0: bool) -> None:
|
|
939
1016
|
pass
|
|
940
1017
|
@property
|
|
1018
|
+
def ConfigScrollbarScrollByPage(self) -> bool:
|
|
1019
|
+
"""
|
|
1020
|
+
:type: bool
|
|
1021
|
+
"""
|
|
1022
|
+
@ConfigScrollbarScrollByPage.setter
|
|
1023
|
+
def ConfigScrollbarScrollByPage(self, arg0: bool) -> None:
|
|
1024
|
+
pass
|
|
1025
|
+
@property
|
|
1026
|
+
def ConfigWindowsCopyContentsWithCtrlC(self) -> bool:
|
|
1027
|
+
"""
|
|
1028
|
+
:type: bool
|
|
1029
|
+
"""
|
|
1030
|
+
@ConfigWindowsCopyContentsWithCtrlC.setter
|
|
1031
|
+
def ConfigWindowsCopyContentsWithCtrlC(self, arg0: bool) -> None:
|
|
1032
|
+
pass
|
|
1033
|
+
@property
|
|
941
1034
|
def ConfigWindowsMoveFromTitleBarOnly(self) -> bool:
|
|
942
1035
|
"""
|
|
943
1036
|
:type: bool
|
|
@@ -1148,6 +1241,14 @@ class IO():
|
|
|
1148
1241
|
:type: ListWrapperDouble
|
|
1149
1242
|
"""
|
|
1150
1243
|
@property
|
|
1244
|
+
def MouseCtrlLeftAsRightClick(self) -> bool:
|
|
1245
|
+
"""
|
|
1246
|
+
:type: bool
|
|
1247
|
+
"""
|
|
1248
|
+
@MouseCtrlLeftAsRightClick.setter
|
|
1249
|
+
def MouseCtrlLeftAsRightClick(self, arg0: bool) -> None:
|
|
1250
|
+
pass
|
|
1251
|
+
@property
|
|
1151
1252
|
def MouseDelta(self) -> Vec2:
|
|
1152
1253
|
"""
|
|
1153
1254
|
:type: Vec2
|
|
@@ -1374,7 +1475,7 @@ class ImDrawList():
|
|
|
1374
1475
|
def PopTextureID(self) -> None: ...
|
|
1375
1476
|
def PushClipRect(self, clip_rect_min: Vec2, clip_rect_max: Vec2, intersect_with_current_clip_rect: bool = False) -> None: ...
|
|
1376
1477
|
def PushClipRectFullScreen(self) -> None: ...
|
|
1377
|
-
def PushTextureID(self, arg0:
|
|
1478
|
+
def PushTextureID(self, arg0: int) -> None: ...
|
|
1378
1479
|
@property
|
|
1379
1480
|
def Flags(self) -> int:
|
|
1380
1481
|
"""
|
|
@@ -1550,14 +1651,14 @@ class ImFontAtlas():
|
|
|
1550
1651
|
def AddCustomRectRegular(self, width: int, height: int) -> int: ...
|
|
1551
1652
|
def AddFont(self, font_cfg: ImFontConfig) -> ImFont: ...
|
|
1552
1653
|
def AddFontDefault(self, font_cfg: typing.Optional[ImFontConfig] = None) -> ImFont: ...
|
|
1553
|
-
def AddFontFromFileTTF(self, filename: str, size_pixels: float, font_cfg: typing.Optional[ImFontConfig] = None) -> ImFont: ...
|
|
1654
|
+
def AddFontFromFileTTF(self, filename: str, size_pixels: float, font_cfg: typing.Optional[ImFontConfig] = None, glyph_ranges: typing.Optional[WCharList] = None) -> ImFont: ...
|
|
1554
1655
|
def Build(self) -> bool: ...
|
|
1555
1656
|
def Clear(self) -> None: ...
|
|
1556
1657
|
def ClearFonts(self) -> None: ...
|
|
1557
1658
|
def ClearInputData(self) -> None: ...
|
|
1558
1659
|
def ClearTexData(self) -> None: ...
|
|
1559
1660
|
def IsBuilt(self) -> bool: ...
|
|
1560
|
-
def SetTexID(self, id:
|
|
1661
|
+
def SetTexID(self, id: int) -> None: ...
|
|
1561
1662
|
pass
|
|
1562
1663
|
class ImFontConfig():
|
|
1563
1664
|
def __init__(self) -> None: ...
|
|
@@ -2308,23 +2409,26 @@ class InputTextFlags():
|
|
|
2308
2409
|
AllowTabInput = 32
|
|
2309
2410
|
AlwaysOverwrite = 2048
|
|
2310
2411
|
AutoSelectAll = 4096
|
|
2311
|
-
CallbackAlways =
|
|
2312
|
-
CallbackCharFilter =
|
|
2313
|
-
CallbackCompletion =
|
|
2314
|
-
CallbackEdit =
|
|
2315
|
-
CallbackHistory =
|
|
2316
|
-
CallbackResize =
|
|
2412
|
+
CallbackAlways = 1048576
|
|
2413
|
+
CallbackCharFilter = 2097152
|
|
2414
|
+
CallbackCompletion = 262144
|
|
2415
|
+
CallbackEdit = 8388608
|
|
2416
|
+
CallbackHistory = 524288
|
|
2417
|
+
CallbackResize = 4194304
|
|
2317
2418
|
CharsDecimal = 1
|
|
2318
2419
|
CharsHexadecimal = 2
|
|
2319
2420
|
CharsNoBlank = 16
|
|
2320
2421
|
CharsScientific = 4
|
|
2321
2422
|
CharsUppercase = 8
|
|
2322
2423
|
CtrlEnterForNewLine = 256
|
|
2424
|
+
DisplayEmptyRefVal = 16384
|
|
2425
|
+
ElideLeft = 131072
|
|
2323
2426
|
EnterReturnsTrue = 64
|
|
2324
2427
|
EscapeClearsAll = 128
|
|
2325
2428
|
NoHorizontalScroll = 32768
|
|
2326
2429
|
NoUndoRedo = 65536
|
|
2327
2430
|
None_ = 0
|
|
2431
|
+
ParseEmptyRefVal = 8192
|
|
2328
2432
|
Password = 1024
|
|
2329
2433
|
ReadOnly = 512
|
|
2330
2434
|
pass
|
|
@@ -2374,6 +2478,7 @@ class IntRef():
|
|
|
2374
2478
|
"""
|
|
2375
2479
|
pass
|
|
2376
2480
|
class ItemFlags():
|
|
2481
|
+
AllowDuplicateId = 32
|
|
2377
2482
|
AutoClosePopups = 16
|
|
2378
2483
|
ButtonRepeat = 8
|
|
2379
2484
|
NoNav = 2
|
|
@@ -2575,11 +2680,14 @@ class SelectionRequestType():
|
|
|
2575
2680
|
SetRange = 2
|
|
2576
2681
|
pass
|
|
2577
2682
|
class SliderFlags():
|
|
2578
|
-
AlwaysClamp =
|
|
2683
|
+
AlwaysClamp = 1536
|
|
2684
|
+
ClampOnInput = 512
|
|
2685
|
+
ClampZeroRange = 1024
|
|
2579
2686
|
InvalidMask_ = 1879048207
|
|
2580
2687
|
Logarithmic = 32
|
|
2581
2688
|
NoInput = 128
|
|
2582
2689
|
NoRoundToFormat = 64
|
|
2690
|
+
NoSpeedTweaks = 2048
|
|
2583
2691
|
None_ = 0
|
|
2584
2692
|
WrapAround = 256
|
|
2585
2693
|
pass
|
|
@@ -3294,8 +3402,9 @@ class TreeNodeFlags():
|
|
|
3294
3402
|
DefaultOpen = 32
|
|
3295
3403
|
FramePadding = 1024
|
|
3296
3404
|
Framed = 2
|
|
3405
|
+
LabelSpanAllColumns = 32768
|
|
3297
3406
|
Leaf = 256
|
|
3298
|
-
NavLeftJumpsBackHere =
|
|
3407
|
+
NavLeftJumpsBackHere = 131072
|
|
3299
3408
|
NoAutoOpenOnLog = 16
|
|
3300
3409
|
NoTreePushOnOpen = 8
|
|
3301
3410
|
None_ = 0
|
|
@@ -3305,7 +3414,7 @@ class TreeNodeFlags():
|
|
|
3305
3414
|
SpanAllColumns = 16384
|
|
3306
3415
|
SpanAvailWidth = 2048
|
|
3307
3416
|
SpanFullWidth = 4096
|
|
3308
|
-
|
|
3417
|
+
SpanLabelWidth = 8192
|
|
3309
3418
|
pass
|
|
3310
3419
|
class Vec2():
|
|
3311
3420
|
@typing.overload
|
|
@@ -3426,6 +3535,32 @@ class ViewportFlags():
|
|
|
3426
3535
|
None_ = 0
|
|
3427
3536
|
OwnedByApp = 4
|
|
3428
3537
|
pass
|
|
3538
|
+
class WCharList():
|
|
3539
|
+
"""
|
|
3540
|
+
Thin wrapper over a std::vector<ImWchar>
|
|
3541
|
+
"""
|
|
3542
|
+
def __getitem__(self, index: int) -> int: ...
|
|
3543
|
+
@typing.overload
|
|
3544
|
+
def __init__(self) -> None: ...
|
|
3545
|
+
@typing.overload
|
|
3546
|
+
def __init__(self, vals: list[int] = []) -> None: ...
|
|
3547
|
+
def __iter__(self) -> typing.Iterator: ...
|
|
3548
|
+
def __len__(self) -> int: ...
|
|
3549
|
+
def __setitem__(self, index: int, val: int) -> None: ...
|
|
3550
|
+
def append(self, val: int) -> None:
|
|
3551
|
+
"""
|
|
3552
|
+
Append a value to the end
|
|
3553
|
+
"""
|
|
3554
|
+
def clear(self) -> None: ...
|
|
3555
|
+
def pop(self) -> int:
|
|
3556
|
+
"""
|
|
3557
|
+
Pop a value from the end
|
|
3558
|
+
"""
|
|
3559
|
+
def resize(self, size: int) -> None:
|
|
3560
|
+
"""
|
|
3561
|
+
Resize the vector, dropping any lost values
|
|
3562
|
+
"""
|
|
3563
|
+
pass
|
|
3429
3564
|
class WindowFlags():
|
|
3430
3565
|
AlwaysAutoResize = 64
|
|
3431
3566
|
AlwaysHorizontalScrollbar = 32768
|
|
@@ -3830,6 +3965,8 @@ def IsMousePosValid(mouse_pos: typing.Optional[Vec2] = None) -> bool:
|
|
|
3830
3965
|
pass
|
|
3831
3966
|
def IsMouseReleased(button: int) -> bool:
|
|
3832
3967
|
pass
|
|
3968
|
+
def IsMouseReleasedWithDelay(button: int, delay: float) -> bool:
|
|
3969
|
+
pass
|
|
3833
3970
|
def IsPopupOpen(str_id: str, flags: int = 0) -> bool:
|
|
3834
3971
|
pass
|
|
3835
3972
|
@typing.overload
|
|
@@ -3932,6 +4069,10 @@ def PushStyleVar(idx: int, val: Vec2) -> None:
|
|
|
3932
4069
|
@typing.overload
|
|
3933
4070
|
def PushStyleVar(idx: int, val: float) -> None:
|
|
3934
4071
|
pass
|
|
4072
|
+
def PushStyleVarX(idx: int, val: float) -> None:
|
|
4073
|
+
pass
|
|
4074
|
+
def PushStyleVarY(idx: int, val: float) -> None:
|
|
4075
|
+
pass
|
|
3935
4076
|
def PushTextWrapPos(wrap_local_pos_x: float = 0.0) -> None:
|
|
3936
4077
|
pass
|
|
3937
4078
|
@typing.overload
|
|
@@ -4157,7 +4298,7 @@ def TextLink(label: str) -> bool:
|
|
|
4157
4298
|
pass
|
|
4158
4299
|
def TextLinkOpenURL(label: str, url: str) -> None:
|
|
4159
4300
|
pass
|
|
4160
|
-
def
|
|
4301
|
+
def TextWrapped(text: str) -> None:
|
|
4161
4302
|
pass
|
|
4162
4303
|
@typing.overload
|
|
4163
4304
|
def TreeNode(label: str) -> bool:
|
imgui/implot/__init__.pyi
CHANGED
imgui.cp38-win_amd64.pyd
CHANGED
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
imgui.cp38-win_amd64.pyd,sha256=cEYrecKGiioFolAKq7mNq20kZswF6keFcnxyK-x7QFw,3279360
|
|
2
|
+
imgui/__init__.pyi,sha256=L5E9FTTFXkMVyTgww7Y8xV5sSDAnnLbXiCLB7VraEEo,121229
|
|
3
|
+
imgui/glfw/__init__.pyi,sha256=2wBI1njFbZsL-s2TlZXSISQff-x0g-ynk7Q9_LiZaFQ,25485
|
|
4
|
+
imgui/imnodes/__init__.pyi,sha256=6hQaovVz7YOV4RgFOoJoEN59EAkDX1uzz6J_Ta8eRQU,13825
|
|
5
|
+
imgui/implot/__init__.pyi,sha256=dH5usFpnFRFWuTCwU2ASIuu1TZ3XHqC5cXhZ0F5Igj4,39444
|
|
6
|
+
py_imgui_redux-3.4.1.dist-info/LICENSE,sha256=fDrCLKI_lLbO88WTSx4QGbbOEZrWhcw0TBLOQxkydX4,1070
|
|
7
|
+
py_imgui_redux-3.4.1.dist-info/METADATA,sha256=5jiLqBammtX45x4fTBPnLt39kQnA6tWWT-n3BjYYqEI,8074
|
|
8
|
+
py_imgui_redux-3.4.1.dist-info/WHEEL,sha256=rTcqimtzpX3smAWAhGmiRSWAxTY4PqYPNE-p4kscHDQ,99
|
|
9
|
+
py_imgui_redux-3.4.1.dist-info/top_level.txt,sha256=15onHRujL1_V625VUUaELFCxh9bOaAi5IzpVBJIPyHI,6
|
|
10
|
+
py_imgui_redux-3.4.1.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
imgui.cp38-win_amd64.pyd,sha256=7kmdzLObjuY_dZCb8d6sYvfdSlCsm6yk0o1AV6i8tsk,3239936
|
|
2
|
-
imgui/__init__.pyi,sha256=PpDV5HkwLgXoGaJmKPyw-YsNbH17vN4A6tLs7T-ytsI,117058
|
|
3
|
-
imgui/glfw/__init__.pyi,sha256=2wBI1njFbZsL-s2TlZXSISQff-x0g-ynk7Q9_LiZaFQ,25485
|
|
4
|
-
imgui/imnodes/__init__.pyi,sha256=6hQaovVz7YOV4RgFOoJoEN59EAkDX1uzz6J_Ta8eRQU,13825
|
|
5
|
-
imgui/implot/__init__.pyi,sha256=1hKqT555eLFmu8pOupQWd2vkRjncnmdBw01mh0I1lIU,39397
|
|
6
|
-
py_imgui_redux-3.3.0.dist-info/LICENSE,sha256=fDrCLKI_lLbO88WTSx4QGbbOEZrWhcw0TBLOQxkydX4,1070
|
|
7
|
-
py_imgui_redux-3.3.0.dist-info/METADATA,sha256=oij_juv8W_aFiZoEPVbCcWqZ5tuudeblh79HKbrXWA0,8074
|
|
8
|
-
py_imgui_redux-3.3.0.dist-info/WHEEL,sha256=BiKefS7XHc6W0zY4ROW4fxXTZBRH27JLKtM6pqE4hBs,99
|
|
9
|
-
py_imgui_redux-3.3.0.dist-info/top_level.txt,sha256=15onHRujL1_V625VUUaELFCxh9bOaAi5IzpVBJIPyHI,6
|
|
10
|
-
py_imgui_redux-3.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|