py-imgui-redux 4.0.1__cp314-cp314-macosx_11_0_arm64.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 +4474 -0
- imgui/glfw/__init__.pyi +1032 -0
- imgui/imnodes/__init__.pyi +505 -0
- imgui/implot/__init__.pyi +1305 -0
- imgui.cpython-314-darwin.so +0 -0
- py_imgui_redux-4.0.1.dist-info/METADATA +276 -0
- py_imgui_redux-4.0.1.dist-info/RECORD +10 -0
- py_imgui_redux-4.0.1.dist-info/WHEEL +6 -0
- py_imgui_redux-4.0.1.dist-info/licenses/LICENSE +21 -0
- py_imgui_redux-4.0.1.dist-info/top_level.txt +1 -0
imgui/__init__.pyi
ADDED
|
@@ -0,0 +1,4474 @@
|
|
|
1
|
+
"""DearImGui Framework"""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
import imgui
|
|
4
|
+
import typing
|
|
5
|
+
import collections.abc
|
|
6
|
+
import types
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"AcceptDragDropPayload",
|
|
10
|
+
"AlignTextToFramePadding",
|
|
11
|
+
"ArrowButton",
|
|
12
|
+
"BackendFlags",
|
|
13
|
+
"Begin",
|
|
14
|
+
"BeginChild",
|
|
15
|
+
"BeginCombo",
|
|
16
|
+
"BeginDisabled",
|
|
17
|
+
"BeginDragDropSource",
|
|
18
|
+
"BeginDragDropTarget",
|
|
19
|
+
"BeginGroup",
|
|
20
|
+
"BeginItemTooltip",
|
|
21
|
+
"BeginListBox",
|
|
22
|
+
"BeginMainMenuBar",
|
|
23
|
+
"BeginMenu",
|
|
24
|
+
"BeginMenuBar",
|
|
25
|
+
"BeginPopup",
|
|
26
|
+
"BeginPopupContextItem",
|
|
27
|
+
"BeginPopupContextVoid",
|
|
28
|
+
"BeginPopupContextWindow",
|
|
29
|
+
"BeginPopupModal",
|
|
30
|
+
"BeginTabBar",
|
|
31
|
+
"BeginTabItem",
|
|
32
|
+
"BeginTable",
|
|
33
|
+
"BeginTooltip",
|
|
34
|
+
"BoolRef",
|
|
35
|
+
"Bullet",
|
|
36
|
+
"BulletText",
|
|
37
|
+
"Button",
|
|
38
|
+
"ButtonFlags",
|
|
39
|
+
"CalcItemWidth",
|
|
40
|
+
"CalcTextSize",
|
|
41
|
+
"CheckBox",
|
|
42
|
+
"CheckBoxFlags",
|
|
43
|
+
"ChildFlags",
|
|
44
|
+
"CloseCurrentPopup",
|
|
45
|
+
"Col",
|
|
46
|
+
"CollapsingHeader",
|
|
47
|
+
"Color",
|
|
48
|
+
"ColorButton",
|
|
49
|
+
"ColorConvertFloat4ToU32",
|
|
50
|
+
"ColorConvertHSVtoRGB",
|
|
51
|
+
"ColorConvertRGBtoHSV",
|
|
52
|
+
"ColorConvertU32ToFloat4",
|
|
53
|
+
"ColorEdit3",
|
|
54
|
+
"ColorEdit4",
|
|
55
|
+
"ColorEditFlags",
|
|
56
|
+
"ColorPicker3",
|
|
57
|
+
"ColorPicker4",
|
|
58
|
+
"ComboFlags",
|
|
59
|
+
"Cond",
|
|
60
|
+
"ConfigFlags",
|
|
61
|
+
"Context",
|
|
62
|
+
"CreateContext",
|
|
63
|
+
"DebugFlashStyleColor",
|
|
64
|
+
"DebugStartItemPicker",
|
|
65
|
+
"DebugTextEncoding",
|
|
66
|
+
"DestroyContext",
|
|
67
|
+
"Dir",
|
|
68
|
+
"DoubleList",
|
|
69
|
+
"DoubleRef",
|
|
70
|
+
"DragDropFlags",
|
|
71
|
+
"DragFloat",
|
|
72
|
+
"DragFloat2",
|
|
73
|
+
"DragFloat3",
|
|
74
|
+
"DragFloat4",
|
|
75
|
+
"DragFloatRange2",
|
|
76
|
+
"DragInt",
|
|
77
|
+
"DragInt2",
|
|
78
|
+
"DragInt3",
|
|
79
|
+
"DragInt4",
|
|
80
|
+
"DragIntRange2",
|
|
81
|
+
"DrawData",
|
|
82
|
+
"DrawFlags",
|
|
83
|
+
"DrawListFlags",
|
|
84
|
+
"Dummy",
|
|
85
|
+
"End",
|
|
86
|
+
"EndChild",
|
|
87
|
+
"EndCombo",
|
|
88
|
+
"EndDisabled",
|
|
89
|
+
"EndDragDropSource",
|
|
90
|
+
"EndDragDropTarget",
|
|
91
|
+
"EndFrame",
|
|
92
|
+
"EndGroup",
|
|
93
|
+
"EndListBox",
|
|
94
|
+
"EndMainMenuBar",
|
|
95
|
+
"EndMenu",
|
|
96
|
+
"EndMenuBar",
|
|
97
|
+
"EndPopup",
|
|
98
|
+
"EndTabBar",
|
|
99
|
+
"EndTabItem",
|
|
100
|
+
"EndTable",
|
|
101
|
+
"EndTooltip",
|
|
102
|
+
"FLT_MAX",
|
|
103
|
+
"FloatList",
|
|
104
|
+
"FloatRef",
|
|
105
|
+
"FocusedFlags",
|
|
106
|
+
"FontFlags",
|
|
107
|
+
"GetBackgroundDrawList",
|
|
108
|
+
"GetClipboardText",
|
|
109
|
+
"GetColorU32",
|
|
110
|
+
"GetContentRegionAvail",
|
|
111
|
+
"GetCurrentContext",
|
|
112
|
+
"GetCursorPos",
|
|
113
|
+
"GetCursorPosX",
|
|
114
|
+
"GetCursorPosY",
|
|
115
|
+
"GetCursorScreenPos",
|
|
116
|
+
"GetCursorStartPos",
|
|
117
|
+
"GetDragDropPayload",
|
|
118
|
+
"GetDrawData",
|
|
119
|
+
"GetDrawListSharedData",
|
|
120
|
+
"GetFont",
|
|
121
|
+
"GetFontSize",
|
|
122
|
+
"GetFontTexUvWhitePixel",
|
|
123
|
+
"GetForegroundDrawList",
|
|
124
|
+
"GetFrameCount",
|
|
125
|
+
"GetFrameHeight",
|
|
126
|
+
"GetFrameHeightWithSpacing",
|
|
127
|
+
"GetID",
|
|
128
|
+
"GetIO",
|
|
129
|
+
"GetItemID",
|
|
130
|
+
"GetItemRectMax",
|
|
131
|
+
"GetItemRectMin",
|
|
132
|
+
"GetItemRectSize",
|
|
133
|
+
"GetKeyName",
|
|
134
|
+
"GetKeyPressedAmount",
|
|
135
|
+
"GetMainViewport",
|
|
136
|
+
"GetMouseCursor",
|
|
137
|
+
"GetMouseDragDelta",
|
|
138
|
+
"GetMousePos",
|
|
139
|
+
"GetMousePosOnOpeningCurrentPopup",
|
|
140
|
+
"GetScrollMaxX",
|
|
141
|
+
"GetScrollMaxY",
|
|
142
|
+
"GetScrollX",
|
|
143
|
+
"GetScrollY",
|
|
144
|
+
"GetStateStorage",
|
|
145
|
+
"GetStyle",
|
|
146
|
+
"GetStyleColorName",
|
|
147
|
+
"GetStyleColorVec4",
|
|
148
|
+
"GetTextLineHeight",
|
|
149
|
+
"GetTextLineHeightWithSpacing",
|
|
150
|
+
"GetTime",
|
|
151
|
+
"GetTreeNodeToLabelSpacing",
|
|
152
|
+
"GetVersion",
|
|
153
|
+
"GetWindowDrawList",
|
|
154
|
+
"GetWindowHeight",
|
|
155
|
+
"GetWindowPos",
|
|
156
|
+
"GetWindowSize",
|
|
157
|
+
"GetWindowWidth",
|
|
158
|
+
"HoveredFlags",
|
|
159
|
+
"IO",
|
|
160
|
+
"ImDrawList",
|
|
161
|
+
"ImFont",
|
|
162
|
+
"ImFontAtlas",
|
|
163
|
+
"ImFontAtlasRect",
|
|
164
|
+
"ImFontBaked",
|
|
165
|
+
"ImFontConfig",
|
|
166
|
+
"ImFontGlyph",
|
|
167
|
+
"ImKey",
|
|
168
|
+
"Image",
|
|
169
|
+
"ImageButton",
|
|
170
|
+
"ImageWithBg",
|
|
171
|
+
"Indent",
|
|
172
|
+
"InitContextForGLFW",
|
|
173
|
+
"InputFlags",
|
|
174
|
+
"InputFloat",
|
|
175
|
+
"InputFloat2",
|
|
176
|
+
"InputFloat3",
|
|
177
|
+
"InputFloat4",
|
|
178
|
+
"InputInt",
|
|
179
|
+
"InputInt2",
|
|
180
|
+
"InputInt3",
|
|
181
|
+
"InputInt4",
|
|
182
|
+
"InputText",
|
|
183
|
+
"InputTextFlags",
|
|
184
|
+
"InputTextMultiline",
|
|
185
|
+
"InputTextWithHint",
|
|
186
|
+
"IntList",
|
|
187
|
+
"IntRef",
|
|
188
|
+
"InvisibleButton",
|
|
189
|
+
"IsAnyItemActive",
|
|
190
|
+
"IsAnyItemFocused",
|
|
191
|
+
"IsAnyItemHovered",
|
|
192
|
+
"IsItemActivated",
|
|
193
|
+
"IsItemActive",
|
|
194
|
+
"IsItemClicked",
|
|
195
|
+
"IsItemDeactivated",
|
|
196
|
+
"IsItemDeactivatedAfterEdit",
|
|
197
|
+
"IsItemEdited",
|
|
198
|
+
"IsItemFocused",
|
|
199
|
+
"IsItemHovered",
|
|
200
|
+
"IsItemToggledOpen",
|
|
201
|
+
"IsItemVisible",
|
|
202
|
+
"IsKeyChordPressed",
|
|
203
|
+
"IsKeyDown",
|
|
204
|
+
"IsKeyPressed",
|
|
205
|
+
"IsKeyReleased",
|
|
206
|
+
"IsMouseClicked",
|
|
207
|
+
"IsMouseDoubleClicked",
|
|
208
|
+
"IsMouseDown",
|
|
209
|
+
"IsMouseDragging",
|
|
210
|
+
"IsMouseHoveringRect",
|
|
211
|
+
"IsMousePosValid",
|
|
212
|
+
"IsMouseReleased",
|
|
213
|
+
"IsMouseReleasedWithDelay",
|
|
214
|
+
"IsPopupOpen",
|
|
215
|
+
"IsRectVisible",
|
|
216
|
+
"IsWindowAppearing",
|
|
217
|
+
"IsWindowCollapsed",
|
|
218
|
+
"IsWindowFocused",
|
|
219
|
+
"IsWindowHovered",
|
|
220
|
+
"ItemFlags",
|
|
221
|
+
"KeyData",
|
|
222
|
+
"LabelText",
|
|
223
|
+
"ListClipper",
|
|
224
|
+
"ListWrapperBool",
|
|
225
|
+
"ListWrapperDouble",
|
|
226
|
+
"ListWrapperImVec2",
|
|
227
|
+
"ListWrapperTCSS",
|
|
228
|
+
"LoadIniSettingsFromDisk",
|
|
229
|
+
"LoadIniSettingsFromMemory",
|
|
230
|
+
"LoadTexture",
|
|
231
|
+
"LoadTextureFile",
|
|
232
|
+
"LogButtons",
|
|
233
|
+
"LogFinish",
|
|
234
|
+
"LogText",
|
|
235
|
+
"LogToClipboard",
|
|
236
|
+
"LogToFile",
|
|
237
|
+
"LogToTTY",
|
|
238
|
+
"MenuItem",
|
|
239
|
+
"MouseButton",
|
|
240
|
+
"MouseCursor",
|
|
241
|
+
"MouseSource",
|
|
242
|
+
"MultiSelectFlags",
|
|
243
|
+
"MultiSelectIO",
|
|
244
|
+
"NewFrame",
|
|
245
|
+
"NewLine",
|
|
246
|
+
"OpenPopup",
|
|
247
|
+
"OpenPopupOnItemClick",
|
|
248
|
+
"PopClipRect",
|
|
249
|
+
"PopFont",
|
|
250
|
+
"PopID",
|
|
251
|
+
"PopItemFlag",
|
|
252
|
+
"PopItemWidth",
|
|
253
|
+
"PopStyleColor",
|
|
254
|
+
"PopStyleVar",
|
|
255
|
+
"PopTextWrapPos",
|
|
256
|
+
"PopupFlags",
|
|
257
|
+
"ProgressBar",
|
|
258
|
+
"PushClipRect",
|
|
259
|
+
"PushFont",
|
|
260
|
+
"PushID",
|
|
261
|
+
"PushItemFlag",
|
|
262
|
+
"PushItemWidth",
|
|
263
|
+
"PushStyleColor",
|
|
264
|
+
"PushStyleVar",
|
|
265
|
+
"PushStyleVarX",
|
|
266
|
+
"PushStyleVarY",
|
|
267
|
+
"PushTextWrapPos",
|
|
268
|
+
"RadioButton",
|
|
269
|
+
"Render",
|
|
270
|
+
"ResetMouseDragDelta",
|
|
271
|
+
"SameLine",
|
|
272
|
+
"SaveIniSettingsToDisk",
|
|
273
|
+
"SaveIniSettingsToMemory",
|
|
274
|
+
"Selectable",
|
|
275
|
+
"SelectableFlags",
|
|
276
|
+
"SelectionRequest",
|
|
277
|
+
"SelectionRequestType",
|
|
278
|
+
"Separator",
|
|
279
|
+
"SeparatorText",
|
|
280
|
+
"SetClipboardText",
|
|
281
|
+
"SetColorEditOptions",
|
|
282
|
+
"SetCurrentContext",
|
|
283
|
+
"SetCursorPos",
|
|
284
|
+
"SetCursorPosX",
|
|
285
|
+
"SetCursorPosY",
|
|
286
|
+
"SetCursorScreenPos",
|
|
287
|
+
"SetDragDropPayload",
|
|
288
|
+
"SetItemDefaultFocus",
|
|
289
|
+
"SetItemKeyOwner",
|
|
290
|
+
"SetItemTooltip",
|
|
291
|
+
"SetKeyboardFocusHere",
|
|
292
|
+
"SetMouseCursor",
|
|
293
|
+
"SetNextFrameWantCaptureKeyboard",
|
|
294
|
+
"SetNextFrameWantCaptureMouse",
|
|
295
|
+
"SetNextItemAllowOverlap",
|
|
296
|
+
"SetNextItemOpen",
|
|
297
|
+
"SetNextItemShortcut",
|
|
298
|
+
"SetNextItemStorageID",
|
|
299
|
+
"SetNextItemWidth",
|
|
300
|
+
"SetNextWindowBgAlpha",
|
|
301
|
+
"SetNextWindowCollapsed",
|
|
302
|
+
"SetNextWindowContentSize",
|
|
303
|
+
"SetNextWindowFocus",
|
|
304
|
+
"SetNextWindowPos",
|
|
305
|
+
"SetNextWindowScroll",
|
|
306
|
+
"SetNextWindowSize",
|
|
307
|
+
"SetScrollFromPosX",
|
|
308
|
+
"SetScrollFromPosY",
|
|
309
|
+
"SetScrollHereX",
|
|
310
|
+
"SetScrollHereY",
|
|
311
|
+
"SetScrollX",
|
|
312
|
+
"SetScrollY",
|
|
313
|
+
"SetStateStorage",
|
|
314
|
+
"SetTabItemClosed",
|
|
315
|
+
"SetTooltip",
|
|
316
|
+
"SetWindowCollapsed",
|
|
317
|
+
"SetWindowFocus",
|
|
318
|
+
"SetWindowPos",
|
|
319
|
+
"SetWindowSize",
|
|
320
|
+
"Shortcut",
|
|
321
|
+
"ShowAboutWindow",
|
|
322
|
+
"ShowDebugLogWindow",
|
|
323
|
+
"ShowDemoWindow",
|
|
324
|
+
"ShowFontSelector",
|
|
325
|
+
"ShowMetricsWindow",
|
|
326
|
+
"ShowStackToolWindow",
|
|
327
|
+
"ShowStyleEditor",
|
|
328
|
+
"ShowStyleSelector",
|
|
329
|
+
"ShowUserGuide",
|
|
330
|
+
"Shutdown",
|
|
331
|
+
"SliderAngle",
|
|
332
|
+
"SliderFlags",
|
|
333
|
+
"SliderFloat",
|
|
334
|
+
"SliderFloat2",
|
|
335
|
+
"SliderFloat3",
|
|
336
|
+
"SliderFloat4",
|
|
337
|
+
"SliderInt",
|
|
338
|
+
"SliderInt2",
|
|
339
|
+
"SliderInt3",
|
|
340
|
+
"SliderInt4",
|
|
341
|
+
"SmallButton",
|
|
342
|
+
"SortDirection",
|
|
343
|
+
"Spacing",
|
|
344
|
+
"StrList",
|
|
345
|
+
"StrRef",
|
|
346
|
+
"Style",
|
|
347
|
+
"StyleColorsClassic",
|
|
348
|
+
"StyleColorsDark",
|
|
349
|
+
"StyleColorsLight",
|
|
350
|
+
"StyleVar",
|
|
351
|
+
"TabBarFlags",
|
|
352
|
+
"TabItemButton",
|
|
353
|
+
"TabItemFlags",
|
|
354
|
+
"TableBgTarget",
|
|
355
|
+
"TableColumnFlags",
|
|
356
|
+
"TableColumnSortSpecs",
|
|
357
|
+
"TableFlags",
|
|
358
|
+
"TableGetColumnCount",
|
|
359
|
+
"TableGetColumnFlags",
|
|
360
|
+
"TableGetColumnIndex",
|
|
361
|
+
"TableGetColumnName",
|
|
362
|
+
"TableGetHoveredColumn",
|
|
363
|
+
"TableGetRowIndex",
|
|
364
|
+
"TableGetSortSpecs",
|
|
365
|
+
"TableHeader",
|
|
366
|
+
"TableHeadersRow",
|
|
367
|
+
"TableNextColumn",
|
|
368
|
+
"TableNextRow",
|
|
369
|
+
"TableRowFlags",
|
|
370
|
+
"TableSetBgColor",
|
|
371
|
+
"TableSetColumnEnabled",
|
|
372
|
+
"TableSetColumnIndex",
|
|
373
|
+
"TableSetupColumn",
|
|
374
|
+
"TableSetupScrollFreeze",
|
|
375
|
+
"TableSortSpecs",
|
|
376
|
+
"Text",
|
|
377
|
+
"TextColored",
|
|
378
|
+
"TextDisabled",
|
|
379
|
+
"TextLink",
|
|
380
|
+
"TextLinkOpenURL",
|
|
381
|
+
"TextWrapped",
|
|
382
|
+
"Texture",
|
|
383
|
+
"TextureFormat",
|
|
384
|
+
"TextureStatus",
|
|
385
|
+
"TreeNode",
|
|
386
|
+
"TreeNodeEx",
|
|
387
|
+
"TreeNodeFlags",
|
|
388
|
+
"TreePop",
|
|
389
|
+
"TreePush",
|
|
390
|
+
"Unindent",
|
|
391
|
+
"UnloadTexture",
|
|
392
|
+
"VSliderFloat",
|
|
393
|
+
"VSliderInt",
|
|
394
|
+
"Vec2",
|
|
395
|
+
"Vec2List",
|
|
396
|
+
"Vec4",
|
|
397
|
+
"Viewport",
|
|
398
|
+
"ViewportFlags",
|
|
399
|
+
"WCharList",
|
|
400
|
+
"WindowFlags",
|
|
401
|
+
"glfw",
|
|
402
|
+
"imnodes",
|
|
403
|
+
"implot"
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
class BackendFlags():
|
|
408
|
+
HasGamepad = 1
|
|
409
|
+
HasMouseCursors = 2
|
|
410
|
+
HasSetMousePos = 4
|
|
411
|
+
None_ = 0
|
|
412
|
+
RendererHasTextures = 16
|
|
413
|
+
RendererHasVtxOffset = 8
|
|
414
|
+
pass
|
|
415
|
+
class BoolRef():
|
|
416
|
+
"""
|
|
417
|
+
A pass-by-ref wrapper for a bool
|
|
418
|
+
"""
|
|
419
|
+
def __init__(self, val: bool = False) -> None: ...
|
|
420
|
+
def __str__(self) -> str: ...
|
|
421
|
+
@property
|
|
422
|
+
def val(self) -> bool:
|
|
423
|
+
"""
|
|
424
|
+
The wrapped value
|
|
425
|
+
|
|
426
|
+
:type: bool
|
|
427
|
+
"""
|
|
428
|
+
@val.setter
|
|
429
|
+
def val(self, arg0: bool) -> None:
|
|
430
|
+
"""
|
|
431
|
+
The wrapped value
|
|
432
|
+
"""
|
|
433
|
+
pass
|
|
434
|
+
class ButtonFlags():
|
|
435
|
+
EnableNav = 8
|
|
436
|
+
MouseButtonLeft = 1
|
|
437
|
+
MouseButtonMask_ = 7
|
|
438
|
+
MouseButtonMiddle = 4
|
|
439
|
+
MouseButtonRight = 2
|
|
440
|
+
None_ = 0
|
|
441
|
+
pass
|
|
442
|
+
class ChildFlags():
|
|
443
|
+
AlwaysAutoResize = 64
|
|
444
|
+
AlwaysUseWindowPadding = 2
|
|
445
|
+
AutoResizeX = 16
|
|
446
|
+
AutoResizeY = 32
|
|
447
|
+
Borders = 1
|
|
448
|
+
FrameStyle = 128
|
|
449
|
+
NavFlattened = 256
|
|
450
|
+
None_ = 0
|
|
451
|
+
ResizeX = 4
|
|
452
|
+
ResizeY = 8
|
|
453
|
+
pass
|
|
454
|
+
class Col():
|
|
455
|
+
Border = 5
|
|
456
|
+
BorderShadow = 6
|
|
457
|
+
Button = 21
|
|
458
|
+
ButtonActive = 23
|
|
459
|
+
ButtonHovered = 22
|
|
460
|
+
CheckMark = 18
|
|
461
|
+
ChildBg = 3
|
|
462
|
+
DragDropTarget = 53
|
|
463
|
+
FrameBg = 7
|
|
464
|
+
FrameBgActive = 9
|
|
465
|
+
FrameBgHovered = 8
|
|
466
|
+
Header = 24
|
|
467
|
+
HeaderActive = 26
|
|
468
|
+
HeaderHovered = 25
|
|
469
|
+
InputTextCursor = 33
|
|
470
|
+
MenuBarBg = 13
|
|
471
|
+
ModalWindowDimBg = 57
|
|
472
|
+
NavCursor = 54
|
|
473
|
+
NavWindowingDimBg = 56
|
|
474
|
+
NavWindowingHighlight = 55
|
|
475
|
+
PlotHistogram = 43
|
|
476
|
+
PlotHistogramHovered = 44
|
|
477
|
+
PlotLines = 41
|
|
478
|
+
PlotLinesHovered = 42
|
|
479
|
+
PopupBg = 4
|
|
480
|
+
ResizeGrip = 30
|
|
481
|
+
ResizeGripActive = 32
|
|
482
|
+
ResizeGripHovered = 31
|
|
483
|
+
ScrollbarBg = 14
|
|
484
|
+
ScrollbarGrab = 15
|
|
485
|
+
ScrollbarGrabActive = 17
|
|
486
|
+
ScrollbarGrabHovered = 16
|
|
487
|
+
Separator = 27
|
|
488
|
+
SeparatorActive = 29
|
|
489
|
+
SeparatorHovered = 28
|
|
490
|
+
SliderGrab = 19
|
|
491
|
+
SliderGrabActive = 20
|
|
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
|
|
504
|
+
Text = 0
|
|
505
|
+
TextDisabled = 1
|
|
506
|
+
TextLink = 50
|
|
507
|
+
TextSelectedBg = 51
|
|
508
|
+
TitleBg = 10
|
|
509
|
+
TitleBgActive = 11
|
|
510
|
+
TitleBgCollapsed = 12
|
|
511
|
+
TreeLines = 52
|
|
512
|
+
WindowBg = 2
|
|
513
|
+
pass
|
|
514
|
+
class Color():
|
|
515
|
+
@staticmethod
|
|
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: ...
|
|
518
|
+
@typing.overload
|
|
519
|
+
def __init__(self) -> None: ...
|
|
520
|
+
@typing.overload
|
|
521
|
+
def __init__(self, r: typing.SupportsFloat, g: typing.SupportsFloat, b: typing.SupportsFloat, a: typing.SupportsFloat = 1.0) -> None: ...
|
|
522
|
+
@typing.overload
|
|
523
|
+
def __init__(self, r: typing.SupportsInt, g: typing.SupportsInt, b: typing.SupportsInt, a: typing.SupportsInt = 255) -> None: ...
|
|
524
|
+
@property
|
|
525
|
+
def Value(self) -> Vec4:
|
|
526
|
+
"""
|
|
527
|
+
:type: Vec4
|
|
528
|
+
"""
|
|
529
|
+
@Value.setter
|
|
530
|
+
def Value(self, arg0: Vec4) -> None:
|
|
531
|
+
pass
|
|
532
|
+
pass
|
|
533
|
+
class ColorEditFlags():
|
|
534
|
+
AlphaBar = 65536
|
|
535
|
+
AlphaNoBg = 4096
|
|
536
|
+
AlphaOpaque = 2048
|
|
537
|
+
AlphaPreviewHalf = 8192
|
|
538
|
+
DefaultOptions_ = 177209344
|
|
539
|
+
DisplayHSV = 2097152
|
|
540
|
+
DisplayHex = 4194304
|
|
541
|
+
DisplayRGB = 1048576
|
|
542
|
+
Float = 16777216
|
|
543
|
+
HDR = 524288
|
|
544
|
+
InputHSV = 268435456
|
|
545
|
+
InputRGB = 134217728
|
|
546
|
+
NoAlpha = 2
|
|
547
|
+
NoBorder = 1024
|
|
548
|
+
NoDragDrop = 512
|
|
549
|
+
NoInputs = 32
|
|
550
|
+
NoLabel = 128
|
|
551
|
+
NoOptions = 8
|
|
552
|
+
NoPicker = 4
|
|
553
|
+
NoSidePreview = 256
|
|
554
|
+
NoSmallPreview = 16
|
|
555
|
+
NoTooltip = 64
|
|
556
|
+
None_ = 0
|
|
557
|
+
PickerHueBar = 33554432
|
|
558
|
+
PickerHueWheel = 67108864
|
|
559
|
+
Uint8 = 8388608
|
|
560
|
+
pass
|
|
561
|
+
class ComboFlags():
|
|
562
|
+
HeightLarge = 8
|
|
563
|
+
HeightLargest = 16
|
|
564
|
+
HeightMask_ = 30
|
|
565
|
+
HeightRegular = 4
|
|
566
|
+
HeightSmall = 2
|
|
567
|
+
NoArrowButton = 32
|
|
568
|
+
NoPreview = 64
|
|
569
|
+
None_ = 0
|
|
570
|
+
PopupAlignLeft = 1
|
|
571
|
+
WidthFitPreview = 128
|
|
572
|
+
pass
|
|
573
|
+
class Cond():
|
|
574
|
+
Always = 1
|
|
575
|
+
Appearing = 8
|
|
576
|
+
FirstUseEver = 4
|
|
577
|
+
None_ = 0
|
|
578
|
+
Once = 2
|
|
579
|
+
pass
|
|
580
|
+
class ConfigFlags():
|
|
581
|
+
IsSRGB = 1048576
|
|
582
|
+
IsTouchScreen = 2097152
|
|
583
|
+
NavEnableGamepad = 2
|
|
584
|
+
NavEnableKeyboard = 1
|
|
585
|
+
NoMouse = 16
|
|
586
|
+
NoMouseCursorChange = 32
|
|
587
|
+
None_ = 0
|
|
588
|
+
pass
|
|
589
|
+
class Context():
|
|
590
|
+
pass
|
|
591
|
+
class Dir():
|
|
592
|
+
Down = 3
|
|
593
|
+
Left = 0
|
|
594
|
+
None_ = -1
|
|
595
|
+
Right = 1
|
|
596
|
+
Up = 2
|
|
597
|
+
pass
|
|
598
|
+
class DoubleList():
|
|
599
|
+
"""
|
|
600
|
+
Thin wrapper over a std::vector<double>
|
|
601
|
+
"""
|
|
602
|
+
def __getitem__(self, index: typing.SupportsInt) -> float: ...
|
|
603
|
+
@typing.overload
|
|
604
|
+
def __init__(self) -> None: ...
|
|
605
|
+
@typing.overload
|
|
606
|
+
def __init__(self, vals: collections.abc.Sequence[typing.SupportsFloat] = []) -> None: ...
|
|
607
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
608
|
+
def __len__(self) -> int: ...
|
|
609
|
+
def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsFloat) -> None: ...
|
|
610
|
+
def append(self, val: typing.SupportsFloat) -> None:
|
|
611
|
+
"""
|
|
612
|
+
Append a value to the end
|
|
613
|
+
"""
|
|
614
|
+
def clear(self) -> None: ...
|
|
615
|
+
def pop(self) -> float:
|
|
616
|
+
"""
|
|
617
|
+
Pop a value from the end
|
|
618
|
+
"""
|
|
619
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
620
|
+
"""
|
|
621
|
+
Resize the vector, dropping any lost values
|
|
622
|
+
"""
|
|
623
|
+
pass
|
|
624
|
+
class DoubleRef():
|
|
625
|
+
"""
|
|
626
|
+
A pass-by-ref wrapper for a double
|
|
627
|
+
"""
|
|
628
|
+
def __init__(self, val: typing.SupportsFloat = 0.0) -> None: ...
|
|
629
|
+
def __str__(self) -> str: ...
|
|
630
|
+
@property
|
|
631
|
+
def val(self) -> float:
|
|
632
|
+
"""
|
|
633
|
+
The wrapped value
|
|
634
|
+
|
|
635
|
+
:type: float
|
|
636
|
+
"""
|
|
637
|
+
@val.setter
|
|
638
|
+
def val(self, arg0: typing.SupportsFloat) -> None:
|
|
639
|
+
"""
|
|
640
|
+
The wrapped value
|
|
641
|
+
"""
|
|
642
|
+
pass
|
|
643
|
+
class DragDropFlags():
|
|
644
|
+
AcceptBeforeDelivery = 1024
|
|
645
|
+
AcceptNoDrawDefaultRect = 2048
|
|
646
|
+
AcceptNoPreviewTooltip = 4096
|
|
647
|
+
AcceptPeekOnly = 3072
|
|
648
|
+
None_ = 0
|
|
649
|
+
PayloadAutoExpire = 32
|
|
650
|
+
PayloadNoCrossContext = 64
|
|
651
|
+
PayloadNoCrossProcess = 128
|
|
652
|
+
SourceAllowNullID = 8
|
|
653
|
+
SourceExtern = 16
|
|
654
|
+
SourceNoDisableHover = 2
|
|
655
|
+
SourceNoHoldToOpenOthers = 4
|
|
656
|
+
SourceNoPreviewTooltip = 1
|
|
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
|
|
704
|
+
class DrawFlags():
|
|
705
|
+
Closed = 1
|
|
706
|
+
None_ = 0
|
|
707
|
+
RoundCornersAll = 240
|
|
708
|
+
RoundCornersBottom = 192
|
|
709
|
+
RoundCornersBottomLeft = 64
|
|
710
|
+
RoundCornersBottomRight = 128
|
|
711
|
+
RoundCornersDefault_ = 240
|
|
712
|
+
RoundCornersLeft = 80
|
|
713
|
+
RoundCornersMask_ = 496
|
|
714
|
+
RoundCornersNone = 256
|
|
715
|
+
RoundCornersRight = 160
|
|
716
|
+
RoundCornersTop = 48
|
|
717
|
+
RoundCornersTopLeft = 16
|
|
718
|
+
RoundCornersTopRight = 32
|
|
719
|
+
pass
|
|
720
|
+
class DrawListFlags():
|
|
721
|
+
AllowVtxOffset = 8
|
|
722
|
+
AntiAliasedFill = 4
|
|
723
|
+
AntiAliasedLines = 1
|
|
724
|
+
AntiAliasedLinesUseTex = 2
|
|
725
|
+
None_ = 0
|
|
726
|
+
pass
|
|
727
|
+
class FloatList():
|
|
728
|
+
"""
|
|
729
|
+
Thin wrapper over a std::vector<float>
|
|
730
|
+
"""
|
|
731
|
+
def __getitem__(self, index: typing.SupportsInt) -> float: ...
|
|
732
|
+
@typing.overload
|
|
733
|
+
def __init__(self) -> None: ...
|
|
734
|
+
@typing.overload
|
|
735
|
+
def __init__(self, vals: collections.abc.Sequence[typing.SupportsFloat] = []) -> None: ...
|
|
736
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
737
|
+
def __len__(self) -> int: ...
|
|
738
|
+
def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsFloat) -> None: ...
|
|
739
|
+
def append(self, val: typing.SupportsFloat) -> None:
|
|
740
|
+
"""
|
|
741
|
+
Append a value to the end
|
|
742
|
+
"""
|
|
743
|
+
def clear(self) -> None: ...
|
|
744
|
+
def pop(self) -> float:
|
|
745
|
+
"""
|
|
746
|
+
Pop a value from the end
|
|
747
|
+
"""
|
|
748
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
749
|
+
"""
|
|
750
|
+
Resize the vector, dropping any lost values
|
|
751
|
+
"""
|
|
752
|
+
pass
|
|
753
|
+
class FloatRef():
|
|
754
|
+
"""
|
|
755
|
+
A pass-by-ref wrapper for a float
|
|
756
|
+
"""
|
|
757
|
+
def __init__(self, val: typing.SupportsFloat = 0.0) -> None: ...
|
|
758
|
+
def __str__(self) -> str: ...
|
|
759
|
+
@property
|
|
760
|
+
def val(self) -> float:
|
|
761
|
+
"""
|
|
762
|
+
The wrapped value
|
|
763
|
+
|
|
764
|
+
:type: float
|
|
765
|
+
"""
|
|
766
|
+
@val.setter
|
|
767
|
+
def val(self, arg0: typing.SupportsFloat) -> None:
|
|
768
|
+
"""
|
|
769
|
+
The wrapped value
|
|
770
|
+
"""
|
|
771
|
+
pass
|
|
772
|
+
class FocusedFlags():
|
|
773
|
+
AnyWindow = 4
|
|
774
|
+
ChildWindows = 1
|
|
775
|
+
NoPopupHierarchy = 8
|
|
776
|
+
None_ = 0
|
|
777
|
+
RootAndChildWindows = 3
|
|
778
|
+
RootWindow = 2
|
|
779
|
+
pass
|
|
780
|
+
class FontFlags():
|
|
781
|
+
LockBakedSizes = 8
|
|
782
|
+
NoLoadError = 2
|
|
783
|
+
NoLoadGlyphs = 4
|
|
784
|
+
None_ = 0
|
|
785
|
+
pass
|
|
786
|
+
class HoveredFlags():
|
|
787
|
+
AllowWhenBlockedByActiveItem = 128
|
|
788
|
+
AllowWhenBlockedByPopup = 32
|
|
789
|
+
AllowWhenDisabled = 1024
|
|
790
|
+
AllowWhenOverlapped = 768
|
|
791
|
+
AllowWhenOverlappedByItem = 256
|
|
792
|
+
AllowWhenOverlappedByWindow = 512
|
|
793
|
+
AnyWindow = 4
|
|
794
|
+
ChildWindows = 1
|
|
795
|
+
DelayNone = 16384
|
|
796
|
+
DelayNormal = 65536
|
|
797
|
+
DelayShort = 32768
|
|
798
|
+
ForTooltip = 4096
|
|
799
|
+
NoNavOverride = 2048
|
|
800
|
+
NoPopupHierarchy = 8
|
|
801
|
+
NoSharedDelay = 131072
|
|
802
|
+
None_ = 0
|
|
803
|
+
RectOnly = 928
|
|
804
|
+
RootAndChildWindows = 3
|
|
805
|
+
RootWindow = 2
|
|
806
|
+
Stationary = 8192
|
|
807
|
+
pass
|
|
808
|
+
class IO():
|
|
809
|
+
def AddFocusEvent(self, focused: bool) -> None: ...
|
|
810
|
+
def AddInputCharacter(self, c: typing.SupportsInt) -> None: ...
|
|
811
|
+
def AddInputCharacterUTF16(self, c: typing.SupportsInt) -> None: ...
|
|
812
|
+
def AddInputCharactersUTF8(self, str: str) -> None: ...
|
|
813
|
+
def AddKeyAnalogEvent(self, key: ImGuiKey, down: bool, v: typing.SupportsFloat) -> None: ...
|
|
814
|
+
def AddKeyEvent(self, key: ImGuiKey, down: bool) -> None: ...
|
|
815
|
+
def AddMouseButtonEvent(self, button: typing.SupportsInt, down: bool) -> None: ...
|
|
816
|
+
def AddMousePosEvent(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> None: ...
|
|
817
|
+
def AddMouseSourceEvent(self, source: ImGuiMouseSource) -> None: ...
|
|
818
|
+
def AddMouseWheelEvent(self, wh_x: typing.SupportsFloat, wh_y: typing.SupportsFloat) -> None: ...
|
|
819
|
+
def ClearEventsQueue(self) -> None: ...
|
|
820
|
+
def ClearInputKeys(self) -> None: ...
|
|
821
|
+
def ClearInputMouse(self) -> None: ...
|
|
822
|
+
def SetAppAcceptingEvents(self, accepting_events: bool) -> None: ...
|
|
823
|
+
def SetKeyEventNativeData(self, key: ImGuiKey, native_keycode: typing.SupportsInt, native_scancode: typing.SupportsInt, native_legacy_index: typing.SupportsInt = -1) -> None: ...
|
|
824
|
+
def __init__(self) -> None: ...
|
|
825
|
+
@property
|
|
826
|
+
def AppAcceptingEvents(self) -> bool:
|
|
827
|
+
"""
|
|
828
|
+
:type: bool
|
|
829
|
+
"""
|
|
830
|
+
@AppAcceptingEvents.setter
|
|
831
|
+
def AppAcceptingEvents(self, arg0: bool) -> None:
|
|
832
|
+
pass
|
|
833
|
+
@property
|
|
834
|
+
def AppFocusLost(self) -> bool:
|
|
835
|
+
"""
|
|
836
|
+
:type: bool
|
|
837
|
+
"""
|
|
838
|
+
@AppFocusLost.setter
|
|
839
|
+
def AppFocusLost(self, arg0: bool) -> None:
|
|
840
|
+
pass
|
|
841
|
+
@property
|
|
842
|
+
def BackendFlags(self) -> int:
|
|
843
|
+
"""
|
|
844
|
+
:type: int
|
|
845
|
+
"""
|
|
846
|
+
@BackendFlags.setter
|
|
847
|
+
def BackendFlags(self, arg0: typing.SupportsInt) -> None:
|
|
848
|
+
pass
|
|
849
|
+
@property
|
|
850
|
+
def BackendLanguageUserData(self) -> types.CapsuleType:
|
|
851
|
+
"""
|
|
852
|
+
:type: types.CapsuleType
|
|
853
|
+
"""
|
|
854
|
+
@BackendLanguageUserData.setter
|
|
855
|
+
def BackendLanguageUserData(self, arg0: types.CapsuleType) -> None:
|
|
856
|
+
pass
|
|
857
|
+
@property
|
|
858
|
+
def BackendPlatformName(self) -> str:
|
|
859
|
+
"""
|
|
860
|
+
:type: str
|
|
861
|
+
"""
|
|
862
|
+
@BackendPlatformName.setter
|
|
863
|
+
def BackendPlatformName(self, arg0: str) -> None:
|
|
864
|
+
pass
|
|
865
|
+
@property
|
|
866
|
+
def BackendPlatformUserData(self) -> types.CapsuleType:
|
|
867
|
+
"""
|
|
868
|
+
:type: types.CapsuleType
|
|
869
|
+
"""
|
|
870
|
+
@BackendPlatformUserData.setter
|
|
871
|
+
def BackendPlatformUserData(self, arg0: types.CapsuleType) -> None:
|
|
872
|
+
pass
|
|
873
|
+
@property
|
|
874
|
+
def BackendRendererName(self) -> str:
|
|
875
|
+
"""
|
|
876
|
+
:type: str
|
|
877
|
+
"""
|
|
878
|
+
@BackendRendererName.setter
|
|
879
|
+
def BackendRendererName(self, arg0: str) -> None:
|
|
880
|
+
pass
|
|
881
|
+
@property
|
|
882
|
+
def BackendRendererUserData(self) -> types.CapsuleType:
|
|
883
|
+
"""
|
|
884
|
+
:type: types.CapsuleType
|
|
885
|
+
"""
|
|
886
|
+
@BackendRendererUserData.setter
|
|
887
|
+
def BackendRendererUserData(self, arg0: types.CapsuleType) -> None:
|
|
888
|
+
pass
|
|
889
|
+
@property
|
|
890
|
+
def ConfigDebugBeginReturnValueLoop(self) -> bool:
|
|
891
|
+
"""
|
|
892
|
+
:type: bool
|
|
893
|
+
"""
|
|
894
|
+
@ConfigDebugBeginReturnValueLoop.setter
|
|
895
|
+
def ConfigDebugBeginReturnValueLoop(self, arg0: bool) -> None:
|
|
896
|
+
pass
|
|
897
|
+
@property
|
|
898
|
+
def ConfigDebugBeginReturnValueOnce(self) -> bool:
|
|
899
|
+
"""
|
|
900
|
+
:type: bool
|
|
901
|
+
"""
|
|
902
|
+
@ConfigDebugBeginReturnValueOnce.setter
|
|
903
|
+
def ConfigDebugBeginReturnValueOnce(self, arg0: bool) -> None:
|
|
904
|
+
pass
|
|
905
|
+
@property
|
|
906
|
+
def ConfigDebugHighlightIdConflicts(self) -> bool:
|
|
907
|
+
"""
|
|
908
|
+
:type: bool
|
|
909
|
+
"""
|
|
910
|
+
@ConfigDebugHighlightIdConflicts.setter
|
|
911
|
+
def ConfigDebugHighlightIdConflicts(self, arg0: bool) -> None:
|
|
912
|
+
pass
|
|
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
|
|
922
|
+
def ConfigDebugIgnoreFocusLoss(self) -> bool:
|
|
923
|
+
"""
|
|
924
|
+
:type: bool
|
|
925
|
+
"""
|
|
926
|
+
@ConfigDebugIgnoreFocusLoss.setter
|
|
927
|
+
def ConfigDebugIgnoreFocusLoss(self, arg0: bool) -> None:
|
|
928
|
+
pass
|
|
929
|
+
@property
|
|
930
|
+
def ConfigDebugIniSettings(self) -> bool:
|
|
931
|
+
"""
|
|
932
|
+
:type: bool
|
|
933
|
+
"""
|
|
934
|
+
@ConfigDebugIniSettings.setter
|
|
935
|
+
def ConfigDebugIniSettings(self, arg0: bool) -> None:
|
|
936
|
+
pass
|
|
937
|
+
@property
|
|
938
|
+
def ConfigDebugIsDebuggerPresent(self) -> bool:
|
|
939
|
+
"""
|
|
940
|
+
:type: bool
|
|
941
|
+
"""
|
|
942
|
+
@ConfigDebugIsDebuggerPresent.setter
|
|
943
|
+
def ConfigDebugIsDebuggerPresent(self, arg0: bool) -> None:
|
|
944
|
+
pass
|
|
945
|
+
@property
|
|
946
|
+
def ConfigDragClickToInputText(self) -> bool:
|
|
947
|
+
"""
|
|
948
|
+
:type: bool
|
|
949
|
+
"""
|
|
950
|
+
@ConfigDragClickToInputText.setter
|
|
951
|
+
def ConfigDragClickToInputText(self, arg0: bool) -> None:
|
|
952
|
+
pass
|
|
953
|
+
@property
|
|
954
|
+
def ConfigErrorRecovery(self) -> bool:
|
|
955
|
+
"""
|
|
956
|
+
:type: bool
|
|
957
|
+
"""
|
|
958
|
+
@ConfigErrorRecovery.setter
|
|
959
|
+
def ConfigErrorRecovery(self, arg0: bool) -> None:
|
|
960
|
+
pass
|
|
961
|
+
@property
|
|
962
|
+
def ConfigErrorRecoveryEnableAssert(self) -> bool:
|
|
963
|
+
"""
|
|
964
|
+
:type: bool
|
|
965
|
+
"""
|
|
966
|
+
@ConfigErrorRecoveryEnableAssert.setter
|
|
967
|
+
def ConfigErrorRecoveryEnableAssert(self, arg0: bool) -> None:
|
|
968
|
+
pass
|
|
969
|
+
@property
|
|
970
|
+
def ConfigErrorRecoveryEnableDebugLog(self) -> bool:
|
|
971
|
+
"""
|
|
972
|
+
:type: bool
|
|
973
|
+
"""
|
|
974
|
+
@ConfigErrorRecoveryEnableDebugLog.setter
|
|
975
|
+
def ConfigErrorRecoveryEnableDebugLog(self, arg0: bool) -> None:
|
|
976
|
+
pass
|
|
977
|
+
@property
|
|
978
|
+
def ConfigErrorRecoveryEnableTooltip(self) -> bool:
|
|
979
|
+
"""
|
|
980
|
+
:type: bool
|
|
981
|
+
"""
|
|
982
|
+
@ConfigErrorRecoveryEnableTooltip.setter
|
|
983
|
+
def ConfigErrorRecoveryEnableTooltip(self, arg0: bool) -> None:
|
|
984
|
+
pass
|
|
985
|
+
@property
|
|
986
|
+
def ConfigFlags(self) -> int:
|
|
987
|
+
"""
|
|
988
|
+
:type: int
|
|
989
|
+
"""
|
|
990
|
+
@ConfigFlags.setter
|
|
991
|
+
def ConfigFlags(self, arg0: typing.SupportsInt) -> None:
|
|
992
|
+
pass
|
|
993
|
+
@property
|
|
994
|
+
def ConfigInputTextCursorBlink(self) -> bool:
|
|
995
|
+
"""
|
|
996
|
+
:type: bool
|
|
997
|
+
"""
|
|
998
|
+
@ConfigInputTextCursorBlink.setter
|
|
999
|
+
def ConfigInputTextCursorBlink(self, arg0: bool) -> None:
|
|
1000
|
+
pass
|
|
1001
|
+
@property
|
|
1002
|
+
def ConfigInputTextEnterKeepActive(self) -> bool:
|
|
1003
|
+
"""
|
|
1004
|
+
:type: bool
|
|
1005
|
+
"""
|
|
1006
|
+
@ConfigInputTextEnterKeepActive.setter
|
|
1007
|
+
def ConfigInputTextEnterKeepActive(self, arg0: bool) -> None:
|
|
1008
|
+
pass
|
|
1009
|
+
@property
|
|
1010
|
+
def ConfigInputTrickleEventQueue(self) -> bool:
|
|
1011
|
+
"""
|
|
1012
|
+
:type: bool
|
|
1013
|
+
"""
|
|
1014
|
+
@ConfigInputTrickleEventQueue.setter
|
|
1015
|
+
def ConfigInputTrickleEventQueue(self, arg0: bool) -> None:
|
|
1016
|
+
pass
|
|
1017
|
+
@property
|
|
1018
|
+
def ConfigMacOSXBehaviors(self) -> bool:
|
|
1019
|
+
"""
|
|
1020
|
+
:type: bool
|
|
1021
|
+
"""
|
|
1022
|
+
@ConfigMacOSXBehaviors.setter
|
|
1023
|
+
def ConfigMacOSXBehaviors(self, arg0: bool) -> None:
|
|
1024
|
+
pass
|
|
1025
|
+
@property
|
|
1026
|
+
def ConfigMemoryCompactTimer(self) -> float:
|
|
1027
|
+
"""
|
|
1028
|
+
:type: float
|
|
1029
|
+
"""
|
|
1030
|
+
@ConfigMemoryCompactTimer.setter
|
|
1031
|
+
def ConfigMemoryCompactTimer(self, arg0: typing.SupportsFloat) -> None:
|
|
1032
|
+
pass
|
|
1033
|
+
@property
|
|
1034
|
+
def ConfigNavCaptureKeyboard(self) -> bool:
|
|
1035
|
+
"""
|
|
1036
|
+
:type: bool
|
|
1037
|
+
"""
|
|
1038
|
+
@ConfigNavCaptureKeyboard.setter
|
|
1039
|
+
def ConfigNavCaptureKeyboard(self, arg0: bool) -> None:
|
|
1040
|
+
pass
|
|
1041
|
+
@property
|
|
1042
|
+
def ConfigNavCursorVisibleAlways(self) -> bool:
|
|
1043
|
+
"""
|
|
1044
|
+
:type: bool
|
|
1045
|
+
"""
|
|
1046
|
+
@ConfigNavCursorVisibleAlways.setter
|
|
1047
|
+
def ConfigNavCursorVisibleAlways(self, arg0: bool) -> None:
|
|
1048
|
+
pass
|
|
1049
|
+
@property
|
|
1050
|
+
def ConfigNavCursorVisibleAuto(self) -> bool:
|
|
1051
|
+
"""
|
|
1052
|
+
:type: bool
|
|
1053
|
+
"""
|
|
1054
|
+
@ConfigNavCursorVisibleAuto.setter
|
|
1055
|
+
def ConfigNavCursorVisibleAuto(self, arg0: bool) -> None:
|
|
1056
|
+
pass
|
|
1057
|
+
@property
|
|
1058
|
+
def ConfigNavEscapeClearFocusItem(self) -> bool:
|
|
1059
|
+
"""
|
|
1060
|
+
:type: bool
|
|
1061
|
+
"""
|
|
1062
|
+
@ConfigNavEscapeClearFocusItem.setter
|
|
1063
|
+
def ConfigNavEscapeClearFocusItem(self, arg0: bool) -> None:
|
|
1064
|
+
pass
|
|
1065
|
+
@property
|
|
1066
|
+
def ConfigNavEscapeClearFocusWindow(self) -> bool:
|
|
1067
|
+
"""
|
|
1068
|
+
:type: bool
|
|
1069
|
+
"""
|
|
1070
|
+
@ConfigNavEscapeClearFocusWindow.setter
|
|
1071
|
+
def ConfigNavEscapeClearFocusWindow(self, arg0: bool) -> None:
|
|
1072
|
+
pass
|
|
1073
|
+
@property
|
|
1074
|
+
def ConfigNavMoveSetMousePos(self) -> bool:
|
|
1075
|
+
"""
|
|
1076
|
+
:type: bool
|
|
1077
|
+
"""
|
|
1078
|
+
@ConfigNavMoveSetMousePos.setter
|
|
1079
|
+
def ConfigNavMoveSetMousePos(self, arg0: bool) -> None:
|
|
1080
|
+
pass
|
|
1081
|
+
@property
|
|
1082
|
+
def ConfigNavSwapGamepadButtons(self) -> bool:
|
|
1083
|
+
"""
|
|
1084
|
+
:type: bool
|
|
1085
|
+
"""
|
|
1086
|
+
@ConfigNavSwapGamepadButtons.setter
|
|
1087
|
+
def ConfigNavSwapGamepadButtons(self, arg0: bool) -> None:
|
|
1088
|
+
pass
|
|
1089
|
+
@property
|
|
1090
|
+
def ConfigScrollbarScrollByPage(self) -> bool:
|
|
1091
|
+
"""
|
|
1092
|
+
:type: bool
|
|
1093
|
+
"""
|
|
1094
|
+
@ConfigScrollbarScrollByPage.setter
|
|
1095
|
+
def ConfigScrollbarScrollByPage(self, arg0: bool) -> None:
|
|
1096
|
+
pass
|
|
1097
|
+
@property
|
|
1098
|
+
def ConfigWindowsCopyContentsWithCtrlC(self) -> bool:
|
|
1099
|
+
"""
|
|
1100
|
+
:type: bool
|
|
1101
|
+
"""
|
|
1102
|
+
@ConfigWindowsCopyContentsWithCtrlC.setter
|
|
1103
|
+
def ConfigWindowsCopyContentsWithCtrlC(self, arg0: bool) -> None:
|
|
1104
|
+
pass
|
|
1105
|
+
@property
|
|
1106
|
+
def ConfigWindowsMoveFromTitleBarOnly(self) -> bool:
|
|
1107
|
+
"""
|
|
1108
|
+
:type: bool
|
|
1109
|
+
"""
|
|
1110
|
+
@ConfigWindowsMoveFromTitleBarOnly.setter
|
|
1111
|
+
def ConfigWindowsMoveFromTitleBarOnly(self, arg0: bool) -> None:
|
|
1112
|
+
pass
|
|
1113
|
+
@property
|
|
1114
|
+
def ConfigWindowsResizeFromEdges(self) -> bool:
|
|
1115
|
+
"""
|
|
1116
|
+
:type: bool
|
|
1117
|
+
"""
|
|
1118
|
+
@ConfigWindowsResizeFromEdges.setter
|
|
1119
|
+
def ConfigWindowsResizeFromEdges(self, arg0: bool) -> None:
|
|
1120
|
+
pass
|
|
1121
|
+
@property
|
|
1122
|
+
def DeltaTime(self) -> float:
|
|
1123
|
+
"""
|
|
1124
|
+
:type: float
|
|
1125
|
+
"""
|
|
1126
|
+
@DeltaTime.setter
|
|
1127
|
+
def DeltaTime(self, arg0: typing.SupportsFloat) -> None:
|
|
1128
|
+
pass
|
|
1129
|
+
@property
|
|
1130
|
+
def DisplayFramebufferScale(self) -> Vec2:
|
|
1131
|
+
"""
|
|
1132
|
+
:type: Vec2
|
|
1133
|
+
"""
|
|
1134
|
+
@DisplayFramebufferScale.setter
|
|
1135
|
+
def DisplayFramebufferScale(self, arg0: Vec2) -> None:
|
|
1136
|
+
pass
|
|
1137
|
+
@property
|
|
1138
|
+
def DisplaySize(self) -> Vec2:
|
|
1139
|
+
"""
|
|
1140
|
+
:type: Vec2
|
|
1141
|
+
"""
|
|
1142
|
+
@DisplaySize.setter
|
|
1143
|
+
def DisplaySize(self, arg0: Vec2) -> None:
|
|
1144
|
+
pass
|
|
1145
|
+
@property
|
|
1146
|
+
def FontAllowUserScaling(self) -> bool:
|
|
1147
|
+
"""
|
|
1148
|
+
:type: bool
|
|
1149
|
+
"""
|
|
1150
|
+
@FontAllowUserScaling.setter
|
|
1151
|
+
def FontAllowUserScaling(self, arg0: bool) -> None:
|
|
1152
|
+
pass
|
|
1153
|
+
@property
|
|
1154
|
+
def FontDefault(self) -> ImFont:
|
|
1155
|
+
"""
|
|
1156
|
+
:type: ImFont
|
|
1157
|
+
"""
|
|
1158
|
+
@FontDefault.setter
|
|
1159
|
+
def FontDefault(self, arg0: ImFont) -> None:
|
|
1160
|
+
pass
|
|
1161
|
+
@property
|
|
1162
|
+
def Fonts(self) -> ImFontAtlas:
|
|
1163
|
+
"""
|
|
1164
|
+
:type: ImFontAtlas
|
|
1165
|
+
"""
|
|
1166
|
+
@Fonts.setter
|
|
1167
|
+
def Fonts(self, arg0: ImFontAtlas) -> None:
|
|
1168
|
+
pass
|
|
1169
|
+
@property
|
|
1170
|
+
def Framerate(self) -> float:
|
|
1171
|
+
"""
|
|
1172
|
+
:type: float
|
|
1173
|
+
"""
|
|
1174
|
+
@property
|
|
1175
|
+
def IniFilename(self) -> str:
|
|
1176
|
+
"""
|
|
1177
|
+
:type: str
|
|
1178
|
+
"""
|
|
1179
|
+
@IniFilename.setter
|
|
1180
|
+
def IniFilename(self, arg0: str) -> None:
|
|
1181
|
+
pass
|
|
1182
|
+
@property
|
|
1183
|
+
def IniSavingRate(self) -> float:
|
|
1184
|
+
"""
|
|
1185
|
+
:type: float
|
|
1186
|
+
"""
|
|
1187
|
+
@IniSavingRate.setter
|
|
1188
|
+
def IniSavingRate(self, arg0: typing.SupportsFloat) -> None:
|
|
1189
|
+
pass
|
|
1190
|
+
@property
|
|
1191
|
+
def InputQueueSurrogate(self) -> int:
|
|
1192
|
+
"""
|
|
1193
|
+
:type: int
|
|
1194
|
+
"""
|
|
1195
|
+
@InputQueueSurrogate.setter
|
|
1196
|
+
def InputQueueSurrogate(self, arg0: typing.SupportsInt) -> None:
|
|
1197
|
+
pass
|
|
1198
|
+
@property
|
|
1199
|
+
def KeyAlt(self) -> bool:
|
|
1200
|
+
"""
|
|
1201
|
+
:type: bool
|
|
1202
|
+
"""
|
|
1203
|
+
@KeyAlt.setter
|
|
1204
|
+
def KeyAlt(self, arg0: bool) -> None:
|
|
1205
|
+
pass
|
|
1206
|
+
@property
|
|
1207
|
+
def KeyCtrl(self) -> bool:
|
|
1208
|
+
"""
|
|
1209
|
+
:type: bool
|
|
1210
|
+
"""
|
|
1211
|
+
@KeyCtrl.setter
|
|
1212
|
+
def KeyCtrl(self, arg0: bool) -> None:
|
|
1213
|
+
pass
|
|
1214
|
+
@property
|
|
1215
|
+
def KeyMods(self) -> int:
|
|
1216
|
+
"""
|
|
1217
|
+
:type: int
|
|
1218
|
+
"""
|
|
1219
|
+
@KeyMods.setter
|
|
1220
|
+
def KeyMods(self, arg0: typing.SupportsInt) -> None:
|
|
1221
|
+
pass
|
|
1222
|
+
@property
|
|
1223
|
+
def KeyRepeatDelay(self) -> float:
|
|
1224
|
+
"""
|
|
1225
|
+
:type: float
|
|
1226
|
+
"""
|
|
1227
|
+
@KeyRepeatDelay.setter
|
|
1228
|
+
def KeyRepeatDelay(self, arg0: typing.SupportsFloat) -> None:
|
|
1229
|
+
pass
|
|
1230
|
+
@property
|
|
1231
|
+
def KeyRepeatRate(self) -> float:
|
|
1232
|
+
"""
|
|
1233
|
+
:type: float
|
|
1234
|
+
"""
|
|
1235
|
+
@KeyRepeatRate.setter
|
|
1236
|
+
def KeyRepeatRate(self, arg0: typing.SupportsFloat) -> None:
|
|
1237
|
+
pass
|
|
1238
|
+
@property
|
|
1239
|
+
def KeyShift(self) -> bool:
|
|
1240
|
+
"""
|
|
1241
|
+
:type: bool
|
|
1242
|
+
"""
|
|
1243
|
+
@KeyShift.setter
|
|
1244
|
+
def KeyShift(self, arg0: bool) -> None:
|
|
1245
|
+
pass
|
|
1246
|
+
@property
|
|
1247
|
+
def KeySuper(self) -> bool:
|
|
1248
|
+
"""
|
|
1249
|
+
:type: bool
|
|
1250
|
+
"""
|
|
1251
|
+
@KeySuper.setter
|
|
1252
|
+
def KeySuper(self, arg0: bool) -> None:
|
|
1253
|
+
pass
|
|
1254
|
+
@property
|
|
1255
|
+
def LogFilename(self) -> str:
|
|
1256
|
+
"""
|
|
1257
|
+
:type: str
|
|
1258
|
+
"""
|
|
1259
|
+
@LogFilename.setter
|
|
1260
|
+
def LogFilename(self, arg0: str) -> None:
|
|
1261
|
+
pass
|
|
1262
|
+
@property
|
|
1263
|
+
def MetricsActiveWindows(self) -> int:
|
|
1264
|
+
"""
|
|
1265
|
+
:type: int
|
|
1266
|
+
"""
|
|
1267
|
+
@property
|
|
1268
|
+
def MetricsRenderIndices(self) -> int:
|
|
1269
|
+
"""
|
|
1270
|
+
:type: int
|
|
1271
|
+
"""
|
|
1272
|
+
@property
|
|
1273
|
+
def MetricsRenderVertices(self) -> int:
|
|
1274
|
+
"""
|
|
1275
|
+
:type: int
|
|
1276
|
+
"""
|
|
1277
|
+
@property
|
|
1278
|
+
def MetricsRenderWindows(self) -> int:
|
|
1279
|
+
"""
|
|
1280
|
+
:type: int
|
|
1281
|
+
"""
|
|
1282
|
+
@property
|
|
1283
|
+
def MouseClicked(self) -> ListWrapperBool:
|
|
1284
|
+
"""
|
|
1285
|
+
:type: ListWrapperBool
|
|
1286
|
+
"""
|
|
1287
|
+
@property
|
|
1288
|
+
def MouseClickedCount(self) -> ListWrapper<unsigned short>:
|
|
1289
|
+
"""
|
|
1290
|
+
:type: ListWrapper<unsigned short>
|
|
1291
|
+
"""
|
|
1292
|
+
@property
|
|
1293
|
+
def MouseClickedLastCount(self) -> ListWrapper<unsigned short>:
|
|
1294
|
+
"""
|
|
1295
|
+
:type: ListWrapper<unsigned short>
|
|
1296
|
+
"""
|
|
1297
|
+
@property
|
|
1298
|
+
def MouseClickedPos(self) -> ListWrapperImVec2:
|
|
1299
|
+
"""
|
|
1300
|
+
:type: ListWrapperImVec2
|
|
1301
|
+
"""
|
|
1302
|
+
@property
|
|
1303
|
+
def MouseClickedTime(self) -> ListWrapperDouble:
|
|
1304
|
+
"""
|
|
1305
|
+
:type: ListWrapperDouble
|
|
1306
|
+
"""
|
|
1307
|
+
@property
|
|
1308
|
+
def MouseCtrlLeftAsRightClick(self) -> bool:
|
|
1309
|
+
"""
|
|
1310
|
+
:type: bool
|
|
1311
|
+
"""
|
|
1312
|
+
@MouseCtrlLeftAsRightClick.setter
|
|
1313
|
+
def MouseCtrlLeftAsRightClick(self, arg0: bool) -> None:
|
|
1314
|
+
pass
|
|
1315
|
+
@property
|
|
1316
|
+
def MouseDelta(self) -> Vec2:
|
|
1317
|
+
"""
|
|
1318
|
+
:type: Vec2
|
|
1319
|
+
"""
|
|
1320
|
+
@property
|
|
1321
|
+
def MouseDoubleClickMaxDist(self) -> float:
|
|
1322
|
+
"""
|
|
1323
|
+
:type: float
|
|
1324
|
+
"""
|
|
1325
|
+
@MouseDoubleClickMaxDist.setter
|
|
1326
|
+
def MouseDoubleClickMaxDist(self, arg0: typing.SupportsFloat) -> None:
|
|
1327
|
+
pass
|
|
1328
|
+
@property
|
|
1329
|
+
def MouseDoubleClickTime(self) -> float:
|
|
1330
|
+
"""
|
|
1331
|
+
:type: float
|
|
1332
|
+
"""
|
|
1333
|
+
@MouseDoubleClickTime.setter
|
|
1334
|
+
def MouseDoubleClickTime(self, arg0: typing.SupportsFloat) -> None:
|
|
1335
|
+
pass
|
|
1336
|
+
@property
|
|
1337
|
+
def MouseDoubleClicked(self) -> ListWrapperBool:
|
|
1338
|
+
"""
|
|
1339
|
+
:type: ListWrapperBool
|
|
1340
|
+
"""
|
|
1341
|
+
@property
|
|
1342
|
+
def MouseDown(self) -> ListWrapperBool:
|
|
1343
|
+
"""
|
|
1344
|
+
:type: ListWrapperBool
|
|
1345
|
+
"""
|
|
1346
|
+
@property
|
|
1347
|
+
def MouseDownDuration(self) -> ListWrapper<float>:
|
|
1348
|
+
"""
|
|
1349
|
+
:type: ListWrapper<float>
|
|
1350
|
+
"""
|
|
1351
|
+
@property
|
|
1352
|
+
def MouseDownDurationPrev(self) -> ListWrapper<float>:
|
|
1353
|
+
"""
|
|
1354
|
+
:type: ListWrapper<float>
|
|
1355
|
+
"""
|
|
1356
|
+
@property
|
|
1357
|
+
def MouseDownOwned(self) -> ListWrapperBool:
|
|
1358
|
+
"""
|
|
1359
|
+
:type: ListWrapperBool
|
|
1360
|
+
"""
|
|
1361
|
+
@property
|
|
1362
|
+
def MouseDownOwnedUnlessPopupClose(self) -> ListWrapperBool:
|
|
1363
|
+
"""
|
|
1364
|
+
:type: ListWrapperBool
|
|
1365
|
+
"""
|
|
1366
|
+
@property
|
|
1367
|
+
def MouseDragMaxDistanceSqr(self) -> ListWrapper<float>:
|
|
1368
|
+
"""
|
|
1369
|
+
:type: ListWrapper<float>
|
|
1370
|
+
"""
|
|
1371
|
+
@property
|
|
1372
|
+
def MouseDragThreshold(self) -> float:
|
|
1373
|
+
"""
|
|
1374
|
+
:type: float
|
|
1375
|
+
"""
|
|
1376
|
+
@MouseDragThreshold.setter
|
|
1377
|
+
def MouseDragThreshold(self, arg0: typing.SupportsFloat) -> None:
|
|
1378
|
+
pass
|
|
1379
|
+
@property
|
|
1380
|
+
def MouseDrawCursor(self) -> bool:
|
|
1381
|
+
"""
|
|
1382
|
+
:type: bool
|
|
1383
|
+
"""
|
|
1384
|
+
@MouseDrawCursor.setter
|
|
1385
|
+
def MouseDrawCursor(self, arg0: bool) -> None:
|
|
1386
|
+
pass
|
|
1387
|
+
@property
|
|
1388
|
+
def MousePos(self) -> Vec2:
|
|
1389
|
+
"""
|
|
1390
|
+
:type: Vec2
|
|
1391
|
+
"""
|
|
1392
|
+
@MousePos.setter
|
|
1393
|
+
def MousePos(self, arg0: Vec2) -> None:
|
|
1394
|
+
pass
|
|
1395
|
+
@property
|
|
1396
|
+
def MousePosPrev(self) -> Vec2:
|
|
1397
|
+
"""
|
|
1398
|
+
:type: Vec2
|
|
1399
|
+
"""
|
|
1400
|
+
@MousePosPrev.setter
|
|
1401
|
+
def MousePosPrev(self, arg0: Vec2) -> None:
|
|
1402
|
+
pass
|
|
1403
|
+
@property
|
|
1404
|
+
def MouseReleased(self) -> ListWrapperBool:
|
|
1405
|
+
"""
|
|
1406
|
+
:type: ListWrapperBool
|
|
1407
|
+
"""
|
|
1408
|
+
@property
|
|
1409
|
+
def MouseWheel(self) -> float:
|
|
1410
|
+
"""
|
|
1411
|
+
:type: float
|
|
1412
|
+
"""
|
|
1413
|
+
@MouseWheel.setter
|
|
1414
|
+
def MouseWheel(self, arg0: typing.SupportsFloat) -> None:
|
|
1415
|
+
pass
|
|
1416
|
+
@property
|
|
1417
|
+
def MouseWheelH(self) -> float:
|
|
1418
|
+
"""
|
|
1419
|
+
:type: float
|
|
1420
|
+
"""
|
|
1421
|
+
@MouseWheelH.setter
|
|
1422
|
+
def MouseWheelH(self, arg0: typing.SupportsFloat) -> None:
|
|
1423
|
+
pass
|
|
1424
|
+
@property
|
|
1425
|
+
def MouseWheelRequestAxisSwap(self) -> bool:
|
|
1426
|
+
"""
|
|
1427
|
+
:type: bool
|
|
1428
|
+
"""
|
|
1429
|
+
@MouseWheelRequestAxisSwap.setter
|
|
1430
|
+
def MouseWheelRequestAxisSwap(self, arg0: bool) -> None:
|
|
1431
|
+
pass
|
|
1432
|
+
@property
|
|
1433
|
+
def NavActive(self) -> bool:
|
|
1434
|
+
"""
|
|
1435
|
+
:type: bool
|
|
1436
|
+
"""
|
|
1437
|
+
@property
|
|
1438
|
+
def NavVisible(self) -> bool:
|
|
1439
|
+
"""
|
|
1440
|
+
:type: bool
|
|
1441
|
+
"""
|
|
1442
|
+
@property
|
|
1443
|
+
def PenPressure(self) -> float:
|
|
1444
|
+
"""
|
|
1445
|
+
:type: float
|
|
1446
|
+
"""
|
|
1447
|
+
@PenPressure.setter
|
|
1448
|
+
def PenPressure(self, arg0: typing.SupportsFloat) -> None:
|
|
1449
|
+
pass
|
|
1450
|
+
@property
|
|
1451
|
+
def WantCaptureKeyboard(self) -> bool:
|
|
1452
|
+
"""
|
|
1453
|
+
:type: bool
|
|
1454
|
+
"""
|
|
1455
|
+
@WantCaptureKeyboard.setter
|
|
1456
|
+
def WantCaptureKeyboard(self, arg0: bool) -> None:
|
|
1457
|
+
pass
|
|
1458
|
+
@property
|
|
1459
|
+
def WantCaptureMouse(self) -> bool:
|
|
1460
|
+
"""
|
|
1461
|
+
:type: bool
|
|
1462
|
+
"""
|
|
1463
|
+
@WantCaptureMouse.setter
|
|
1464
|
+
def WantCaptureMouse(self, arg0: bool) -> None:
|
|
1465
|
+
pass
|
|
1466
|
+
@property
|
|
1467
|
+
def WantCaptureMouseUnlessPopupClose(self) -> bool:
|
|
1468
|
+
"""
|
|
1469
|
+
:type: bool
|
|
1470
|
+
"""
|
|
1471
|
+
@WantCaptureMouseUnlessPopupClose.setter
|
|
1472
|
+
def WantCaptureMouseUnlessPopupClose(self, arg0: bool) -> None:
|
|
1473
|
+
pass
|
|
1474
|
+
@property
|
|
1475
|
+
def WantSaveIniSettings(self) -> bool:
|
|
1476
|
+
"""
|
|
1477
|
+
:type: bool
|
|
1478
|
+
"""
|
|
1479
|
+
@WantSaveIniSettings.setter
|
|
1480
|
+
def WantSaveIniSettings(self, arg0: bool) -> None:
|
|
1481
|
+
pass
|
|
1482
|
+
@property
|
|
1483
|
+
def WantSetMousePos(self) -> bool:
|
|
1484
|
+
"""
|
|
1485
|
+
:type: bool
|
|
1486
|
+
"""
|
|
1487
|
+
@WantSetMousePos.setter
|
|
1488
|
+
def WantSetMousePos(self, arg0: bool) -> None:
|
|
1489
|
+
pass
|
|
1490
|
+
@property
|
|
1491
|
+
def WantTextInput(self) -> bool:
|
|
1492
|
+
"""
|
|
1493
|
+
:type: bool
|
|
1494
|
+
"""
|
|
1495
|
+
@WantTextInput.setter
|
|
1496
|
+
def WantTextInput(self, arg0: bool) -> None:
|
|
1497
|
+
pass
|
|
1498
|
+
pass
|
|
1499
|
+
class ImDrawList():
|
|
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: ...
|
|
1523
|
+
def ChannelsMerge(self) -> None: ...
|
|
1524
|
+
def ChannelsSetCurrent(self, n: typing.SupportsInt) -> None: ...
|
|
1525
|
+
def ChannelsSplit(self, count: typing.SupportsInt) -> None: ...
|
|
1526
|
+
def PathArcTo(self, center: Vec2, radius: typing.SupportsFloat, a_min: typing.SupportsFloat, a_max: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
|
|
1527
|
+
def PathArcToFast(self, center: Vec2, radius: typing.SupportsFloat, a_min_of_12: typing.SupportsInt, a_max_of_12: typing.SupportsInt) -> None: ...
|
|
1528
|
+
def PathBezierCubicCurveTo(self, p2: Vec2, p3: Vec2, p4: Vec2, num_segments: typing.SupportsInt = 0) -> None: ...
|
|
1529
|
+
def PathBezierQuadraticCurveTo(self, p2: Vec2, p3: Vec2, num_segments: typing.SupportsInt = 0) -> None: ...
|
|
1530
|
+
def PathClear(self) -> None: ...
|
|
1531
|
+
def PathEllipticalArcTo(self, center: Vec2, radius: Vec2, rot: typing.SupportsFloat, a_min: typing.SupportsFloat, a_max: typing.SupportsFloat, num_segments: typing.SupportsInt = 0) -> None: ...
|
|
1532
|
+
def PathFillConcave(self, col: typing.SupportsInt) -> None: ...
|
|
1533
|
+
def PathFillConvex(self, col: typing.SupportsInt) -> None: ...
|
|
1534
|
+
def PathLineTo(self, pos: Vec2) -> None: ...
|
|
1535
|
+
def PathLineToMergeDuplicate(self, pos: Vec2) -> None: ...
|
|
1536
|
+
def PathRect(self, rect_min: Vec2, rect_max: Vec2, rounding: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0) -> None: ...
|
|
1537
|
+
def PathStroke(self, col: typing.SupportsInt, flags: typing.SupportsInt = 0, thickness: typing.SupportsFloat = 1.0) -> None: ...
|
|
1538
|
+
def PopClipRect(self) -> None: ...
|
|
1539
|
+
def PopTexture(self) -> None: ...
|
|
1540
|
+
def PushClipRect(self, clip_rect_min: Vec2, clip_rect_max: Vec2, intersect_with_current_clip_rect: bool = False) -> None: ...
|
|
1541
|
+
def PushClipRectFullScreen(self) -> None: ...
|
|
1542
|
+
def PushTexture(self, arg0: ImTextureRef) -> None: ...
|
|
1543
|
+
@property
|
|
1544
|
+
def Flags(self) -> int:
|
|
1545
|
+
"""
|
|
1546
|
+
:type: int
|
|
1547
|
+
"""
|
|
1548
|
+
@Flags.setter
|
|
1549
|
+
def Flags(self, arg0: typing.SupportsInt) -> None:
|
|
1550
|
+
pass
|
|
1551
|
+
pass
|
|
1552
|
+
class ImFont():
|
|
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: ...
|
|
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: ...
|
|
1558
|
+
def IsLoaded(self) -> bool: ...
|
|
1559
|
+
@property
|
|
1560
|
+
def EllipsisChar(self) -> int:
|
|
1561
|
+
"""
|
|
1562
|
+
:type: int
|
|
1563
|
+
"""
|
|
1564
|
+
@property
|
|
1565
|
+
def FallbackChar(self) -> int:
|
|
1566
|
+
"""
|
|
1567
|
+
:type: int
|
|
1568
|
+
"""
|
|
1569
|
+
@property
|
|
1570
|
+
def LegacySize(self) -> float:
|
|
1571
|
+
"""
|
|
1572
|
+
:type: float
|
|
1573
|
+
"""
|
|
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: ...
|
|
1589
|
+
@property
|
|
1590
|
+
def Flags(self) -> int:
|
|
1591
|
+
"""
|
|
1592
|
+
:type: int
|
|
1593
|
+
"""
|
|
1594
|
+
@Flags.setter
|
|
1595
|
+
def Flags(self, arg0: typing.SupportsInt) -> None:
|
|
1596
|
+
pass
|
|
1597
|
+
@property
|
|
1598
|
+
def TexDesiredFormat(self) -> ImTextureFormat:
|
|
1599
|
+
"""
|
|
1600
|
+
:type: ImTextureFormat
|
|
1601
|
+
"""
|
|
1602
|
+
@TexDesiredFormat.setter
|
|
1603
|
+
def TexDesiredFormat(self, arg0: ImTextureFormat) -> None:
|
|
1604
|
+
pass
|
|
1605
|
+
@property
|
|
1606
|
+
def TexGlyphPadding(self) -> int:
|
|
1607
|
+
"""
|
|
1608
|
+
:type: int
|
|
1609
|
+
"""
|
|
1610
|
+
@TexGlyphPadding.setter
|
|
1611
|
+
def TexGlyphPadding(self, arg0: typing.SupportsInt) -> None:
|
|
1612
|
+
pass
|
|
1613
|
+
@property
|
|
1614
|
+
def TexMaxHeight(self) -> int:
|
|
1615
|
+
"""
|
|
1616
|
+
:type: int
|
|
1617
|
+
"""
|
|
1618
|
+
@TexMaxHeight.setter
|
|
1619
|
+
def TexMaxHeight(self, arg0: typing.SupportsInt) -> None:
|
|
1620
|
+
pass
|
|
1621
|
+
@property
|
|
1622
|
+
def TexMaxWidth(self) -> int:
|
|
1623
|
+
"""
|
|
1624
|
+
:type: int
|
|
1625
|
+
"""
|
|
1626
|
+
@TexMaxWidth.setter
|
|
1627
|
+
def TexMaxWidth(self, arg0: typing.SupportsInt) -> None:
|
|
1628
|
+
pass
|
|
1629
|
+
@property
|
|
1630
|
+
def TexMinHeight(self) -> int:
|
|
1631
|
+
"""
|
|
1632
|
+
:type: int
|
|
1633
|
+
"""
|
|
1634
|
+
@TexMinHeight.setter
|
|
1635
|
+
def TexMinHeight(self, arg0: typing.SupportsInt) -> None:
|
|
1636
|
+
pass
|
|
1637
|
+
@property
|
|
1638
|
+
def TexMinWidth(self) -> int:
|
|
1639
|
+
"""
|
|
1640
|
+
:type: int
|
|
1641
|
+
"""
|
|
1642
|
+
@TexMinWidth.setter
|
|
1643
|
+
def TexMinWidth(self, arg0: typing.SupportsInt) -> None:
|
|
1644
|
+
pass
|
|
1645
|
+
@property
|
|
1646
|
+
def TexRef(self) -> ImTextureRef:
|
|
1647
|
+
"""
|
|
1648
|
+
:type: ImTextureRef
|
|
1649
|
+
"""
|
|
1650
|
+
pass
|
|
1651
|
+
class ImFontAtlasRect():
|
|
1652
|
+
def __init__(self) -> None: ...
|
|
1653
|
+
@property
|
|
1654
|
+
def h(self) -> int:
|
|
1655
|
+
"""
|
|
1656
|
+
:type: int
|
|
1657
|
+
"""
|
|
1658
|
+
@property
|
|
1659
|
+
def uv0(self) -> Vec2:
|
|
1660
|
+
"""
|
|
1661
|
+
:type: Vec2
|
|
1662
|
+
"""
|
|
1663
|
+
@property
|
|
1664
|
+
def uv1(self) -> Vec2:
|
|
1665
|
+
"""
|
|
1666
|
+
:type: Vec2
|
|
1667
|
+
"""
|
|
1668
|
+
@property
|
|
1669
|
+
def w(self) -> int:
|
|
1670
|
+
"""
|
|
1671
|
+
:type: int
|
|
1672
|
+
"""
|
|
1673
|
+
@property
|
|
1674
|
+
def x(self) -> int:
|
|
1675
|
+
"""
|
|
1676
|
+
:type: int
|
|
1677
|
+
"""
|
|
1678
|
+
@property
|
|
1679
|
+
def y(self) -> int:
|
|
1680
|
+
"""
|
|
1681
|
+
:type: int
|
|
1682
|
+
"""
|
|
1683
|
+
pass
|
|
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: ...
|
|
1689
|
+
pass
|
|
1690
|
+
class ImFontConfig():
|
|
1691
|
+
def __init__(self) -> None: ...
|
|
1692
|
+
@property
|
|
1693
|
+
def EllipsisChar(self) -> int:
|
|
1694
|
+
"""
|
|
1695
|
+
:type: int
|
|
1696
|
+
"""
|
|
1697
|
+
@EllipsisChar.setter
|
|
1698
|
+
def EllipsisChar(self, arg0: typing.SupportsInt) -> None:
|
|
1699
|
+
pass
|
|
1700
|
+
@property
|
|
1701
|
+
def FontDataOwnedByAtlas(self) -> bool:
|
|
1702
|
+
"""
|
|
1703
|
+
:type: bool
|
|
1704
|
+
"""
|
|
1705
|
+
@FontDataOwnedByAtlas.setter
|
|
1706
|
+
def FontDataOwnedByAtlas(self, arg0: bool) -> None:
|
|
1707
|
+
pass
|
|
1708
|
+
@property
|
|
1709
|
+
def FontDataSize(self) -> int:
|
|
1710
|
+
"""
|
|
1711
|
+
:type: int
|
|
1712
|
+
"""
|
|
1713
|
+
@FontDataSize.setter
|
|
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:
|
|
1723
|
+
pass
|
|
1724
|
+
@property
|
|
1725
|
+
def FontNo(self) -> int:
|
|
1726
|
+
"""
|
|
1727
|
+
:type: int
|
|
1728
|
+
"""
|
|
1729
|
+
@FontNo.setter
|
|
1730
|
+
def FontNo(self, arg0: typing.SupportsInt) -> None:
|
|
1731
|
+
pass
|
|
1732
|
+
@property
|
|
1733
|
+
def GlyphExtraAdvanceX(self) -> float:
|
|
1734
|
+
"""
|
|
1735
|
+
:type: float
|
|
1736
|
+
"""
|
|
1737
|
+
@GlyphExtraAdvanceX.setter
|
|
1738
|
+
def GlyphExtraAdvanceX(self, arg0: typing.SupportsFloat) -> None:
|
|
1739
|
+
pass
|
|
1740
|
+
@property
|
|
1741
|
+
def GlyphMaxAdvanceX(self) -> float:
|
|
1742
|
+
"""
|
|
1743
|
+
:type: float
|
|
1744
|
+
"""
|
|
1745
|
+
@GlyphMaxAdvanceX.setter
|
|
1746
|
+
def GlyphMaxAdvanceX(self, arg0: typing.SupportsFloat) -> None:
|
|
1747
|
+
pass
|
|
1748
|
+
@property
|
|
1749
|
+
def GlyphMinAdvanceX(self) -> float:
|
|
1750
|
+
"""
|
|
1751
|
+
:type: float
|
|
1752
|
+
"""
|
|
1753
|
+
@GlyphMinAdvanceX.setter
|
|
1754
|
+
def GlyphMinAdvanceX(self, arg0: typing.SupportsFloat) -> None:
|
|
1755
|
+
pass
|
|
1756
|
+
@property
|
|
1757
|
+
def GlyphOffset(self) -> Vec2:
|
|
1758
|
+
"""
|
|
1759
|
+
:type: Vec2
|
|
1760
|
+
"""
|
|
1761
|
+
@GlyphOffset.setter
|
|
1762
|
+
def GlyphOffset(self, arg0: Vec2) -> None:
|
|
1763
|
+
pass
|
|
1764
|
+
@property
|
|
1765
|
+
def MergeMode(self) -> bool:
|
|
1766
|
+
"""
|
|
1767
|
+
:type: bool
|
|
1768
|
+
"""
|
|
1769
|
+
@MergeMode.setter
|
|
1770
|
+
def MergeMode(self, arg0: bool) -> None:
|
|
1771
|
+
pass
|
|
1772
|
+
@property
|
|
1773
|
+
def OversampleH(self) -> int:
|
|
1774
|
+
"""
|
|
1775
|
+
:type: int
|
|
1776
|
+
"""
|
|
1777
|
+
@OversampleH.setter
|
|
1778
|
+
def OversampleH(self, arg0: typing.SupportsInt) -> None:
|
|
1779
|
+
pass
|
|
1780
|
+
@property
|
|
1781
|
+
def OversampleV(self) -> int:
|
|
1782
|
+
"""
|
|
1783
|
+
:type: int
|
|
1784
|
+
"""
|
|
1785
|
+
@OversampleV.setter
|
|
1786
|
+
def OversampleV(self, arg0: typing.SupportsInt) -> None:
|
|
1787
|
+
pass
|
|
1788
|
+
@property
|
|
1789
|
+
def PixelSnapH(self) -> bool:
|
|
1790
|
+
"""
|
|
1791
|
+
:type: bool
|
|
1792
|
+
"""
|
|
1793
|
+
@PixelSnapH.setter
|
|
1794
|
+
def PixelSnapH(self, arg0: bool) -> None:
|
|
1795
|
+
pass
|
|
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
|
|
1805
|
+
def RasterizerDensity(self) -> float:
|
|
1806
|
+
"""
|
|
1807
|
+
:type: float
|
|
1808
|
+
"""
|
|
1809
|
+
@RasterizerDensity.setter
|
|
1810
|
+
def RasterizerDensity(self, arg0: typing.SupportsFloat) -> None:
|
|
1811
|
+
pass
|
|
1812
|
+
@property
|
|
1813
|
+
def RasterizerMultiply(self) -> float:
|
|
1814
|
+
"""
|
|
1815
|
+
:type: float
|
|
1816
|
+
"""
|
|
1817
|
+
@RasterizerMultiply.setter
|
|
1818
|
+
def RasterizerMultiply(self, arg0: typing.SupportsFloat) -> None:
|
|
1819
|
+
pass
|
|
1820
|
+
@property
|
|
1821
|
+
def SizePixels(self) -> float:
|
|
1822
|
+
"""
|
|
1823
|
+
:type: float
|
|
1824
|
+
"""
|
|
1825
|
+
@SizePixels.setter
|
|
1826
|
+
def SizePixels(self, arg0: typing.SupportsFloat) -> None:
|
|
1827
|
+
pass
|
|
1828
|
+
pass
|
|
1829
|
+
class ImFontGlyph():
|
|
1830
|
+
@property
|
|
1831
|
+
def AdvanceX(self) -> float:
|
|
1832
|
+
"""
|
|
1833
|
+
:type: float
|
|
1834
|
+
"""
|
|
1835
|
+
@AdvanceX.setter
|
|
1836
|
+
def AdvanceX(self, arg0: typing.SupportsFloat) -> None:
|
|
1837
|
+
pass
|
|
1838
|
+
@property
|
|
1839
|
+
def Codepoint(self) -> int:
|
|
1840
|
+
"""
|
|
1841
|
+
:type: int
|
|
1842
|
+
"""
|
|
1843
|
+
@Codepoint.setter
|
|
1844
|
+
def Codepoint(self, arg1: typing.SupportsInt) -> None:
|
|
1845
|
+
pass
|
|
1846
|
+
@property
|
|
1847
|
+
def Colored(self) -> int:
|
|
1848
|
+
"""
|
|
1849
|
+
:type: int
|
|
1850
|
+
"""
|
|
1851
|
+
@Colored.setter
|
|
1852
|
+
def Colored(self, arg1: typing.SupportsInt) -> None:
|
|
1853
|
+
pass
|
|
1854
|
+
@property
|
|
1855
|
+
def U0(self) -> float:
|
|
1856
|
+
"""
|
|
1857
|
+
:type: float
|
|
1858
|
+
"""
|
|
1859
|
+
@U0.setter
|
|
1860
|
+
def U0(self, arg0: typing.SupportsFloat) -> None:
|
|
1861
|
+
pass
|
|
1862
|
+
@property
|
|
1863
|
+
def U1(self) -> float:
|
|
1864
|
+
"""
|
|
1865
|
+
:type: float
|
|
1866
|
+
"""
|
|
1867
|
+
@U1.setter
|
|
1868
|
+
def U1(self, arg0: typing.SupportsFloat) -> None:
|
|
1869
|
+
pass
|
|
1870
|
+
@property
|
|
1871
|
+
def V0(self) -> float:
|
|
1872
|
+
"""
|
|
1873
|
+
:type: float
|
|
1874
|
+
"""
|
|
1875
|
+
@V0.setter
|
|
1876
|
+
def V0(self, arg0: typing.SupportsFloat) -> None:
|
|
1877
|
+
pass
|
|
1878
|
+
@property
|
|
1879
|
+
def V1(self) -> float:
|
|
1880
|
+
"""
|
|
1881
|
+
:type: float
|
|
1882
|
+
"""
|
|
1883
|
+
@V1.setter
|
|
1884
|
+
def V1(self, arg0: typing.SupportsFloat) -> None:
|
|
1885
|
+
pass
|
|
1886
|
+
@property
|
|
1887
|
+
def Visible(self) -> int:
|
|
1888
|
+
"""
|
|
1889
|
+
:type: int
|
|
1890
|
+
"""
|
|
1891
|
+
@Visible.setter
|
|
1892
|
+
def Visible(self, arg1: typing.SupportsInt) -> None:
|
|
1893
|
+
pass
|
|
1894
|
+
@property
|
|
1895
|
+
def X0(self) -> float:
|
|
1896
|
+
"""
|
|
1897
|
+
:type: float
|
|
1898
|
+
"""
|
|
1899
|
+
@X0.setter
|
|
1900
|
+
def X0(self, arg0: typing.SupportsFloat) -> None:
|
|
1901
|
+
pass
|
|
1902
|
+
@property
|
|
1903
|
+
def X1(self) -> float:
|
|
1904
|
+
"""
|
|
1905
|
+
:type: float
|
|
1906
|
+
"""
|
|
1907
|
+
@X1.setter
|
|
1908
|
+
def X1(self, arg0: typing.SupportsFloat) -> None:
|
|
1909
|
+
pass
|
|
1910
|
+
@property
|
|
1911
|
+
def Y0(self) -> float:
|
|
1912
|
+
"""
|
|
1913
|
+
:type: float
|
|
1914
|
+
"""
|
|
1915
|
+
@Y0.setter
|
|
1916
|
+
def Y0(self, arg0: typing.SupportsFloat) -> None:
|
|
1917
|
+
pass
|
|
1918
|
+
@property
|
|
1919
|
+
def Y1(self) -> float:
|
|
1920
|
+
"""
|
|
1921
|
+
:type: float
|
|
1922
|
+
"""
|
|
1923
|
+
@Y1.setter
|
|
1924
|
+
def Y1(self, arg0: typing.SupportsFloat) -> None:
|
|
1925
|
+
pass
|
|
1926
|
+
pass
|
|
1927
|
+
class ImKey():
|
|
1928
|
+
"""
|
|
1929
|
+
Members:
|
|
1930
|
+
|
|
1931
|
+
None_
|
|
1932
|
+
|
|
1933
|
+
Tab
|
|
1934
|
+
|
|
1935
|
+
LeftArrow
|
|
1936
|
+
|
|
1937
|
+
RightArrow
|
|
1938
|
+
|
|
1939
|
+
UpArrow
|
|
1940
|
+
|
|
1941
|
+
DownArrow
|
|
1942
|
+
|
|
1943
|
+
PageUp
|
|
1944
|
+
|
|
1945
|
+
PageDown
|
|
1946
|
+
|
|
1947
|
+
Home
|
|
1948
|
+
|
|
1949
|
+
End
|
|
1950
|
+
|
|
1951
|
+
Insert
|
|
1952
|
+
|
|
1953
|
+
Delete
|
|
1954
|
+
|
|
1955
|
+
Backspace
|
|
1956
|
+
|
|
1957
|
+
Space
|
|
1958
|
+
|
|
1959
|
+
Enter
|
|
1960
|
+
|
|
1961
|
+
Escape
|
|
1962
|
+
|
|
1963
|
+
LeftCtrl
|
|
1964
|
+
|
|
1965
|
+
LeftShift
|
|
1966
|
+
|
|
1967
|
+
LeftAlt
|
|
1968
|
+
|
|
1969
|
+
LeftSuper
|
|
1970
|
+
|
|
1971
|
+
RightCtrl
|
|
1972
|
+
|
|
1973
|
+
RightShift
|
|
1974
|
+
|
|
1975
|
+
RightAlt
|
|
1976
|
+
|
|
1977
|
+
RightSuper
|
|
1978
|
+
|
|
1979
|
+
Menu
|
|
1980
|
+
|
|
1981
|
+
_0
|
|
1982
|
+
|
|
1983
|
+
_1
|
|
1984
|
+
|
|
1985
|
+
_2
|
|
1986
|
+
|
|
1987
|
+
_3
|
|
1988
|
+
|
|
1989
|
+
_4
|
|
1990
|
+
|
|
1991
|
+
_5
|
|
1992
|
+
|
|
1993
|
+
_6
|
|
1994
|
+
|
|
1995
|
+
_7
|
|
1996
|
+
|
|
1997
|
+
_8
|
|
1998
|
+
|
|
1999
|
+
_9
|
|
2000
|
+
|
|
2001
|
+
A
|
|
2002
|
+
|
|
2003
|
+
B
|
|
2004
|
+
|
|
2005
|
+
C
|
|
2006
|
+
|
|
2007
|
+
D
|
|
2008
|
+
|
|
2009
|
+
E
|
|
2010
|
+
|
|
2011
|
+
F
|
|
2012
|
+
|
|
2013
|
+
G
|
|
2014
|
+
|
|
2015
|
+
H
|
|
2016
|
+
|
|
2017
|
+
I
|
|
2018
|
+
|
|
2019
|
+
J
|
|
2020
|
+
|
|
2021
|
+
K
|
|
2022
|
+
|
|
2023
|
+
L
|
|
2024
|
+
|
|
2025
|
+
M
|
|
2026
|
+
|
|
2027
|
+
N
|
|
2028
|
+
|
|
2029
|
+
O
|
|
2030
|
+
|
|
2031
|
+
P
|
|
2032
|
+
|
|
2033
|
+
Q
|
|
2034
|
+
|
|
2035
|
+
R
|
|
2036
|
+
|
|
2037
|
+
S
|
|
2038
|
+
|
|
2039
|
+
T
|
|
2040
|
+
|
|
2041
|
+
U
|
|
2042
|
+
|
|
2043
|
+
V
|
|
2044
|
+
|
|
2045
|
+
W
|
|
2046
|
+
|
|
2047
|
+
X
|
|
2048
|
+
|
|
2049
|
+
Y
|
|
2050
|
+
|
|
2051
|
+
Z
|
|
2052
|
+
|
|
2053
|
+
F1
|
|
2054
|
+
|
|
2055
|
+
F2
|
|
2056
|
+
|
|
2057
|
+
F3
|
|
2058
|
+
|
|
2059
|
+
F4
|
|
2060
|
+
|
|
2061
|
+
F5
|
|
2062
|
+
|
|
2063
|
+
F6
|
|
2064
|
+
|
|
2065
|
+
F7
|
|
2066
|
+
|
|
2067
|
+
F8
|
|
2068
|
+
|
|
2069
|
+
F9
|
|
2070
|
+
|
|
2071
|
+
F10
|
|
2072
|
+
|
|
2073
|
+
F11
|
|
2074
|
+
|
|
2075
|
+
F12
|
|
2076
|
+
|
|
2077
|
+
F13
|
|
2078
|
+
|
|
2079
|
+
F14
|
|
2080
|
+
|
|
2081
|
+
F15
|
|
2082
|
+
|
|
2083
|
+
F16
|
|
2084
|
+
|
|
2085
|
+
F17
|
|
2086
|
+
|
|
2087
|
+
F18
|
|
2088
|
+
|
|
2089
|
+
F19
|
|
2090
|
+
|
|
2091
|
+
F20
|
|
2092
|
+
|
|
2093
|
+
F21
|
|
2094
|
+
|
|
2095
|
+
F22
|
|
2096
|
+
|
|
2097
|
+
F23
|
|
2098
|
+
|
|
2099
|
+
F24
|
|
2100
|
+
|
|
2101
|
+
Apostrophe
|
|
2102
|
+
|
|
2103
|
+
Comma
|
|
2104
|
+
|
|
2105
|
+
Minus
|
|
2106
|
+
|
|
2107
|
+
Period
|
|
2108
|
+
|
|
2109
|
+
Slash
|
|
2110
|
+
|
|
2111
|
+
Semicolon
|
|
2112
|
+
|
|
2113
|
+
Equal
|
|
2114
|
+
|
|
2115
|
+
LeftBracket
|
|
2116
|
+
|
|
2117
|
+
Backslash
|
|
2118
|
+
|
|
2119
|
+
RightBracket
|
|
2120
|
+
|
|
2121
|
+
GraveAccent
|
|
2122
|
+
|
|
2123
|
+
CapsLock
|
|
2124
|
+
|
|
2125
|
+
ScrollLock
|
|
2126
|
+
|
|
2127
|
+
NumLock
|
|
2128
|
+
|
|
2129
|
+
PrintScreen
|
|
2130
|
+
|
|
2131
|
+
Pause
|
|
2132
|
+
|
|
2133
|
+
Keypad0
|
|
2134
|
+
|
|
2135
|
+
Keypad1
|
|
2136
|
+
|
|
2137
|
+
Keypad2
|
|
2138
|
+
|
|
2139
|
+
Keypad3
|
|
2140
|
+
|
|
2141
|
+
Keypad4
|
|
2142
|
+
|
|
2143
|
+
Keypad5
|
|
2144
|
+
|
|
2145
|
+
Keypad6
|
|
2146
|
+
|
|
2147
|
+
Keypad7
|
|
2148
|
+
|
|
2149
|
+
Keypad8
|
|
2150
|
+
|
|
2151
|
+
Keypad9
|
|
2152
|
+
|
|
2153
|
+
KeypadDecimal
|
|
2154
|
+
|
|
2155
|
+
KeypadDivide
|
|
2156
|
+
|
|
2157
|
+
KeypadMultiply
|
|
2158
|
+
|
|
2159
|
+
KeypadSubtract
|
|
2160
|
+
|
|
2161
|
+
KeypadAdd
|
|
2162
|
+
|
|
2163
|
+
KeypadEnter
|
|
2164
|
+
|
|
2165
|
+
KeypadEqual
|
|
2166
|
+
|
|
2167
|
+
AppBack
|
|
2168
|
+
|
|
2169
|
+
AppForward
|
|
2170
|
+
|
|
2171
|
+
Oem102
|
|
2172
|
+
|
|
2173
|
+
GamepadStart
|
|
2174
|
+
|
|
2175
|
+
GamepadBack
|
|
2176
|
+
|
|
2177
|
+
GamepadFaceLeft
|
|
2178
|
+
|
|
2179
|
+
GamepadFaceRight
|
|
2180
|
+
|
|
2181
|
+
GamepadFaceUp
|
|
2182
|
+
|
|
2183
|
+
GamepadFaceDown
|
|
2184
|
+
|
|
2185
|
+
GamepadDpadLeft
|
|
2186
|
+
|
|
2187
|
+
GamepadDpadRight
|
|
2188
|
+
|
|
2189
|
+
GamepadDpadUp
|
|
2190
|
+
|
|
2191
|
+
GamepadDpadDown
|
|
2192
|
+
|
|
2193
|
+
GamepadL1
|
|
2194
|
+
|
|
2195
|
+
GamepadR1
|
|
2196
|
+
|
|
2197
|
+
GamepadL2
|
|
2198
|
+
|
|
2199
|
+
GamepadR2
|
|
2200
|
+
|
|
2201
|
+
GamepadL3
|
|
2202
|
+
|
|
2203
|
+
GamepadR3
|
|
2204
|
+
|
|
2205
|
+
GamepadLStickLeft
|
|
2206
|
+
|
|
2207
|
+
GamepadLStickRight
|
|
2208
|
+
|
|
2209
|
+
GamepadLStickUp
|
|
2210
|
+
|
|
2211
|
+
GamepadLStickDown
|
|
2212
|
+
|
|
2213
|
+
GamepadRStickLeft
|
|
2214
|
+
|
|
2215
|
+
GamepadRStickRight
|
|
2216
|
+
|
|
2217
|
+
GamepadRStickUp
|
|
2218
|
+
|
|
2219
|
+
GamepadRStickDown
|
|
2220
|
+
|
|
2221
|
+
MouseLeft
|
|
2222
|
+
|
|
2223
|
+
MouseRight
|
|
2224
|
+
|
|
2225
|
+
MouseMiddle
|
|
2226
|
+
|
|
2227
|
+
MouseX1
|
|
2228
|
+
|
|
2229
|
+
MouseX2
|
|
2230
|
+
|
|
2231
|
+
MouseWheelX
|
|
2232
|
+
|
|
2233
|
+
MouseWheelY
|
|
2234
|
+
|
|
2235
|
+
Mod_None
|
|
2236
|
+
|
|
2237
|
+
Mod_Ctrl
|
|
2238
|
+
|
|
2239
|
+
Mod_Shift
|
|
2240
|
+
|
|
2241
|
+
Mod_Alt
|
|
2242
|
+
|
|
2243
|
+
Mod_Super
|
|
2244
|
+
|
|
2245
|
+
Mod_Mask_
|
|
2246
|
+
|
|
2247
|
+
NamedKey_BEGIN
|
|
2248
|
+
|
|
2249
|
+
NamedKey_END
|
|
2250
|
+
"""
|
|
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: ...
|
|
2261
|
+
@property
|
|
2262
|
+
def name(self) -> str:
|
|
2263
|
+
"""
|
|
2264
|
+
:type: str
|
|
2265
|
+
"""
|
|
2266
|
+
@property
|
|
2267
|
+
def value(self) -> int:
|
|
2268
|
+
"""
|
|
2269
|
+
:type: int
|
|
2270
|
+
"""
|
|
2271
|
+
A: imgui.ImKey # value = <ImKey.A: 546>
|
|
2272
|
+
Apostrophe: imgui.ImKey # value = <ImKey.Apostrophe: 596>
|
|
2273
|
+
AppBack: imgui.ImKey # value = <ImKey.AppBack: 629>
|
|
2274
|
+
AppForward: imgui.ImKey # value = <ImKey.AppForward: 630>
|
|
2275
|
+
B: imgui.ImKey # value = <ImKey.B: 547>
|
|
2276
|
+
Backslash: imgui.ImKey # value = <ImKey.Backslash: 604>
|
|
2277
|
+
Backspace: imgui.ImKey # value = <ImKey.Backspace: 523>
|
|
2278
|
+
C: imgui.ImKey # value = <ImKey.C: 548>
|
|
2279
|
+
CapsLock: imgui.ImKey # value = <ImKey.CapsLock: 607>
|
|
2280
|
+
Comma: imgui.ImKey # value = <ImKey.Comma: 597>
|
|
2281
|
+
D: imgui.ImKey # value = <ImKey.D: 549>
|
|
2282
|
+
Delete: imgui.ImKey # value = <ImKey.Delete: 522>
|
|
2283
|
+
DownArrow: imgui.ImKey # value = <ImKey.DownArrow: 516>
|
|
2284
|
+
E: imgui.ImKey # value = <ImKey.E: 550>
|
|
2285
|
+
End: imgui.ImKey # value = <ImKey.End: 520>
|
|
2286
|
+
Enter: imgui.ImKey # value = <ImKey.Enter: 525>
|
|
2287
|
+
Equal: imgui.ImKey # value = <ImKey.Equal: 602>
|
|
2288
|
+
Escape: imgui.ImKey # value = <ImKey.Escape: 526>
|
|
2289
|
+
F: imgui.ImKey # value = <ImKey.F: 551>
|
|
2290
|
+
F1: imgui.ImKey # value = <ImKey.F1: 572>
|
|
2291
|
+
F10: imgui.ImKey # value = <ImKey.F10: 581>
|
|
2292
|
+
F11: imgui.ImKey # value = <ImKey.F11: 582>
|
|
2293
|
+
F12: imgui.ImKey # value = <ImKey.F12: 583>
|
|
2294
|
+
F13: imgui.ImKey # value = <ImKey.F13: 584>
|
|
2295
|
+
F14: imgui.ImKey # value = <ImKey.F14: 585>
|
|
2296
|
+
F15: imgui.ImKey # value = <ImKey.F15: 586>
|
|
2297
|
+
F16: imgui.ImKey # value = <ImKey.F16: 587>
|
|
2298
|
+
F17: imgui.ImKey # value = <ImKey.F17: 588>
|
|
2299
|
+
F18: imgui.ImKey # value = <ImKey.F18: 589>
|
|
2300
|
+
F19: imgui.ImKey # value = <ImKey.F19: 590>
|
|
2301
|
+
F2: imgui.ImKey # value = <ImKey.F2: 573>
|
|
2302
|
+
F20: imgui.ImKey # value = <ImKey.F20: 591>
|
|
2303
|
+
F21: imgui.ImKey # value = <ImKey.F21: 592>
|
|
2304
|
+
F22: imgui.ImKey # value = <ImKey.F22: 593>
|
|
2305
|
+
F23: imgui.ImKey # value = <ImKey.F23: 594>
|
|
2306
|
+
F24: imgui.ImKey # value = <ImKey.F24: 595>
|
|
2307
|
+
F3: imgui.ImKey # value = <ImKey.F3: 574>
|
|
2308
|
+
F4: imgui.ImKey # value = <ImKey.F4: 575>
|
|
2309
|
+
F5: imgui.ImKey # value = <ImKey.F5: 576>
|
|
2310
|
+
F6: imgui.ImKey # value = <ImKey.F6: 577>
|
|
2311
|
+
F7: imgui.ImKey # value = <ImKey.F7: 578>
|
|
2312
|
+
F8: imgui.ImKey # value = <ImKey.F8: 579>
|
|
2313
|
+
F9: imgui.ImKey # value = <ImKey.F9: 580>
|
|
2314
|
+
G: imgui.ImKey # value = <ImKey.G: 552>
|
|
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>
|
|
2339
|
+
GraveAccent: imgui.ImKey # value = <ImKey.GraveAccent: 606>
|
|
2340
|
+
H: imgui.ImKey # value = <ImKey.H: 553>
|
|
2341
|
+
Home: imgui.ImKey # value = <ImKey.Home: 519>
|
|
2342
|
+
I: imgui.ImKey # value = <ImKey.I: 554>
|
|
2343
|
+
Insert: imgui.ImKey # value = <ImKey.Insert: 521>
|
|
2344
|
+
J: imgui.ImKey # value = <ImKey.J: 555>
|
|
2345
|
+
K: imgui.ImKey # value = <ImKey.K: 556>
|
|
2346
|
+
Keypad0: imgui.ImKey # value = <ImKey.Keypad0: 612>
|
|
2347
|
+
Keypad1: imgui.ImKey # value = <ImKey.Keypad1: 613>
|
|
2348
|
+
Keypad2: imgui.ImKey # value = <ImKey.Keypad2: 614>
|
|
2349
|
+
Keypad3: imgui.ImKey # value = <ImKey.Keypad3: 615>
|
|
2350
|
+
Keypad4: imgui.ImKey # value = <ImKey.Keypad4: 616>
|
|
2351
|
+
Keypad5: imgui.ImKey # value = <ImKey.Keypad5: 617>
|
|
2352
|
+
Keypad6: imgui.ImKey # value = <ImKey.Keypad6: 618>
|
|
2353
|
+
Keypad7: imgui.ImKey # value = <ImKey.Keypad7: 619>
|
|
2354
|
+
Keypad8: imgui.ImKey # value = <ImKey.Keypad8: 620>
|
|
2355
|
+
Keypad9: imgui.ImKey # value = <ImKey.Keypad9: 621>
|
|
2356
|
+
KeypadAdd: imgui.ImKey # value = <ImKey.KeypadAdd: 626>
|
|
2357
|
+
KeypadDecimal: imgui.ImKey # value = <ImKey.KeypadDecimal: 622>
|
|
2358
|
+
KeypadDivide: imgui.ImKey # value = <ImKey.KeypadDivide: 623>
|
|
2359
|
+
KeypadEnter: imgui.ImKey # value = <ImKey.KeypadEnter: 627>
|
|
2360
|
+
KeypadEqual: imgui.ImKey # value = <ImKey.KeypadEqual: 628>
|
|
2361
|
+
KeypadMultiply: imgui.ImKey # value = <ImKey.KeypadMultiply: 624>
|
|
2362
|
+
KeypadSubtract: imgui.ImKey # value = <ImKey.KeypadSubtract: 625>
|
|
2363
|
+
L: imgui.ImKey # value = <ImKey.L: 557>
|
|
2364
|
+
LeftAlt: imgui.ImKey # value = <ImKey.LeftAlt: 529>
|
|
2365
|
+
LeftArrow: imgui.ImKey # value = <ImKey.LeftArrow: 513>
|
|
2366
|
+
LeftBracket: imgui.ImKey # value = <ImKey.LeftBracket: 603>
|
|
2367
|
+
LeftCtrl: imgui.ImKey # value = <ImKey.LeftCtrl: 527>
|
|
2368
|
+
LeftShift: imgui.ImKey # value = <ImKey.LeftShift: 528>
|
|
2369
|
+
LeftSuper: imgui.ImKey # value = <ImKey.LeftSuper: 530>
|
|
2370
|
+
M: imgui.ImKey # value = <ImKey.M: 558>
|
|
2371
|
+
Menu: imgui.ImKey # value = <ImKey.Menu: 535>
|
|
2372
|
+
Minus: imgui.ImKey # value = <ImKey.Minus: 598>
|
|
2373
|
+
Mod_Alt: imgui.ImKey # value = <ImKey.Mod_Alt: 16384>
|
|
2374
|
+
Mod_Ctrl: imgui.ImKey # value = <ImKey.Mod_Ctrl: 4096>
|
|
2375
|
+
Mod_Mask_: imgui.ImKey # value = <ImKey.Mod_Mask_: 61440>
|
|
2376
|
+
Mod_None: imgui.ImKey # value = <ImKey.None_: 0>
|
|
2377
|
+
Mod_Shift: imgui.ImKey # value = <ImKey.Mod_Shift: 8192>
|
|
2378
|
+
Mod_Super: imgui.ImKey # value = <ImKey.Mod_Super: 32768>
|
|
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>
|
|
2386
|
+
N: imgui.ImKey # value = <ImKey.N: 559>
|
|
2387
|
+
NamedKey_BEGIN: imgui.ImKey # value = <ImKey.Tab: 512>
|
|
2388
|
+
NamedKey_END: imgui.ImKey # value = <ImKey.NamedKey_END: 667>
|
|
2389
|
+
None_: imgui.ImKey # value = <ImKey.None_: 0>
|
|
2390
|
+
NumLock: imgui.ImKey # value = <ImKey.NumLock: 609>
|
|
2391
|
+
O: imgui.ImKey # value = <ImKey.O: 560>
|
|
2392
|
+
Oem102: imgui.ImKey # value = <ImKey.Oem102: 631>
|
|
2393
|
+
P: imgui.ImKey # value = <ImKey.P: 561>
|
|
2394
|
+
PageDown: imgui.ImKey # value = <ImKey.PageDown: 518>
|
|
2395
|
+
PageUp: imgui.ImKey # value = <ImKey.PageUp: 517>
|
|
2396
|
+
Pause: imgui.ImKey # value = <ImKey.Pause: 611>
|
|
2397
|
+
Period: imgui.ImKey # value = <ImKey.Period: 599>
|
|
2398
|
+
PrintScreen: imgui.ImKey # value = <ImKey.PrintScreen: 610>
|
|
2399
|
+
Q: imgui.ImKey # value = <ImKey.Q: 562>
|
|
2400
|
+
R: imgui.ImKey # value = <ImKey.R: 563>
|
|
2401
|
+
RightAlt: imgui.ImKey # value = <ImKey.RightAlt: 533>
|
|
2402
|
+
RightArrow: imgui.ImKey # value = <ImKey.RightArrow: 514>
|
|
2403
|
+
RightBracket: imgui.ImKey # value = <ImKey.RightBracket: 605>
|
|
2404
|
+
RightCtrl: imgui.ImKey # value = <ImKey.RightCtrl: 531>
|
|
2405
|
+
RightShift: imgui.ImKey # value = <ImKey.RightShift: 532>
|
|
2406
|
+
RightSuper: imgui.ImKey # value = <ImKey.RightSuper: 534>
|
|
2407
|
+
S: imgui.ImKey # value = <ImKey.S: 564>
|
|
2408
|
+
ScrollLock: imgui.ImKey # value = <ImKey.ScrollLock: 608>
|
|
2409
|
+
Semicolon: imgui.ImKey # value = <ImKey.Semicolon: 601>
|
|
2410
|
+
Slash: imgui.ImKey # value = <ImKey.Slash: 600>
|
|
2411
|
+
Space: imgui.ImKey # value = <ImKey.Space: 524>
|
|
2412
|
+
T: imgui.ImKey # value = <ImKey.T: 565>
|
|
2413
|
+
Tab: imgui.ImKey # value = <ImKey.Tab: 512>
|
|
2414
|
+
U: imgui.ImKey # value = <ImKey.U: 566>
|
|
2415
|
+
UpArrow: imgui.ImKey # value = <ImKey.UpArrow: 515>
|
|
2416
|
+
V: imgui.ImKey # value = <ImKey.V: 567>
|
|
2417
|
+
W: imgui.ImKey # value = <ImKey.W: 568>
|
|
2418
|
+
X: imgui.ImKey # value = <ImKey.X: 569>
|
|
2419
|
+
Y: imgui.ImKey # value = <ImKey.Y: 570>
|
|
2420
|
+
Z: imgui.ImKey # value = <ImKey.Z: 571>
|
|
2421
|
+
_0: imgui.ImKey # value = <ImKey._0: 536>
|
|
2422
|
+
_1: imgui.ImKey # value = <ImKey._1: 537>
|
|
2423
|
+
_2: imgui.ImKey # value = <ImKey._2: 538>
|
|
2424
|
+
_3: imgui.ImKey # value = <ImKey._3: 539>
|
|
2425
|
+
_4: imgui.ImKey # value = <ImKey._4: 540>
|
|
2426
|
+
_5: imgui.ImKey # value = <ImKey._5: 541>
|
|
2427
|
+
_6: imgui.ImKey # value = <ImKey._6: 542>
|
|
2428
|
+
_7: imgui.ImKey # value = <ImKey._7: 543>
|
|
2429
|
+
_8: imgui.ImKey # value = <ImKey._8: 544>
|
|
2430
|
+
_9: imgui.ImKey # value = <ImKey._9: 545>
|
|
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>}
|
|
2432
|
+
pass
|
|
2433
|
+
class InputFlags():
|
|
2434
|
+
None_ = 0
|
|
2435
|
+
Repeat = 1
|
|
2436
|
+
RouteActive = 1024
|
|
2437
|
+
RouteAlways = 8192
|
|
2438
|
+
RouteFocused = 2048
|
|
2439
|
+
RouteFromRootWindow = 131072
|
|
2440
|
+
RouteGlobal = 4096
|
|
2441
|
+
RouteOverActive = 32768
|
|
2442
|
+
RouteOverFocused = 16384
|
|
2443
|
+
RouteUnlessBgFocused = 65536
|
|
2444
|
+
Tooltip = 262144
|
|
2445
|
+
pass
|
|
2446
|
+
class InputTextFlags():
|
|
2447
|
+
AllowTabInput = 32
|
|
2448
|
+
AlwaysOverwrite = 2048
|
|
2449
|
+
AutoSelectAll = 4096
|
|
2450
|
+
CallbackAlways = 1048576
|
|
2451
|
+
CallbackCharFilter = 2097152
|
|
2452
|
+
CallbackCompletion = 262144
|
|
2453
|
+
CallbackEdit = 8388608
|
|
2454
|
+
CallbackHistory = 524288
|
|
2455
|
+
CallbackResize = 4194304
|
|
2456
|
+
CharsDecimal = 1
|
|
2457
|
+
CharsHexadecimal = 2
|
|
2458
|
+
CharsNoBlank = 16
|
|
2459
|
+
CharsScientific = 4
|
|
2460
|
+
CharsUppercase = 8
|
|
2461
|
+
CtrlEnterForNewLine = 256
|
|
2462
|
+
DisplayEmptyRefVal = 16384
|
|
2463
|
+
ElideLeft = 131072
|
|
2464
|
+
EnterReturnsTrue = 64
|
|
2465
|
+
EscapeClearsAll = 128
|
|
2466
|
+
NoHorizontalScroll = 32768
|
|
2467
|
+
NoUndoRedo = 65536
|
|
2468
|
+
None_ = 0
|
|
2469
|
+
ParseEmptyRefVal = 8192
|
|
2470
|
+
Password = 1024
|
|
2471
|
+
ReadOnly = 512
|
|
2472
|
+
pass
|
|
2473
|
+
class IntList():
|
|
2474
|
+
"""
|
|
2475
|
+
Thin wrapper over a std::vector<int>
|
|
2476
|
+
"""
|
|
2477
|
+
def __getitem__(self, index: typing.SupportsInt) -> int: ...
|
|
2478
|
+
@typing.overload
|
|
2479
|
+
def __init__(self) -> None: ...
|
|
2480
|
+
@typing.overload
|
|
2481
|
+
def __init__(self, vals: collections.abc.Sequence[typing.SupportsInt] = []) -> None: ...
|
|
2482
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2483
|
+
def __len__(self) -> int: ...
|
|
2484
|
+
def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsInt) -> None: ...
|
|
2485
|
+
def append(self, val: typing.SupportsInt) -> None:
|
|
2486
|
+
"""
|
|
2487
|
+
Append a value to the end
|
|
2488
|
+
"""
|
|
2489
|
+
def clear(self) -> None: ...
|
|
2490
|
+
def pop(self) -> int:
|
|
2491
|
+
"""
|
|
2492
|
+
Pop a value from the end
|
|
2493
|
+
"""
|
|
2494
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
2495
|
+
"""
|
|
2496
|
+
Resize the vector, dropping any lost values
|
|
2497
|
+
"""
|
|
2498
|
+
pass
|
|
2499
|
+
class IntRef():
|
|
2500
|
+
"""
|
|
2501
|
+
A pass-by-ref wrapper for an int
|
|
2502
|
+
"""
|
|
2503
|
+
def __init__(self, val: typing.SupportsInt = 0) -> None: ...
|
|
2504
|
+
def __str__(self) -> str: ...
|
|
2505
|
+
@property
|
|
2506
|
+
def val(self) -> int:
|
|
2507
|
+
"""
|
|
2508
|
+
The wrapped value
|
|
2509
|
+
|
|
2510
|
+
:type: int
|
|
2511
|
+
"""
|
|
2512
|
+
@val.setter
|
|
2513
|
+
def val(self, arg0: typing.SupportsInt) -> None:
|
|
2514
|
+
"""
|
|
2515
|
+
The wrapped value
|
|
2516
|
+
"""
|
|
2517
|
+
pass
|
|
2518
|
+
class ItemFlags():
|
|
2519
|
+
AllowDuplicateId = 32
|
|
2520
|
+
AutoClosePopups = 16
|
|
2521
|
+
ButtonRepeat = 8
|
|
2522
|
+
NoNav = 2
|
|
2523
|
+
NoNavDefaultFocus = 4
|
|
2524
|
+
NoTabStop = 1
|
|
2525
|
+
None_ = 0
|
|
2526
|
+
pass
|
|
2527
|
+
class KeyData():
|
|
2528
|
+
@property
|
|
2529
|
+
def AnalogValue(self) -> float:
|
|
2530
|
+
"""
|
|
2531
|
+
:type: float
|
|
2532
|
+
"""
|
|
2533
|
+
@property
|
|
2534
|
+
def Down(self) -> bool:
|
|
2535
|
+
"""
|
|
2536
|
+
:type: bool
|
|
2537
|
+
"""
|
|
2538
|
+
@property
|
|
2539
|
+
def DownDuration(self) -> float:
|
|
2540
|
+
"""
|
|
2541
|
+
:type: float
|
|
2542
|
+
"""
|
|
2543
|
+
@property
|
|
2544
|
+
def DownDurationPrev(self) -> float:
|
|
2545
|
+
"""
|
|
2546
|
+
:type: float
|
|
2547
|
+
"""
|
|
2548
|
+
pass
|
|
2549
|
+
class ListClipper():
|
|
2550
|
+
def Begin(self, items_count: typing.SupportsInt, items_height: typing.SupportsFloat = -1.0) -> None: ...
|
|
2551
|
+
def End(self) -> None: ...
|
|
2552
|
+
def IncludeItemByIndex(self, item_index: typing.SupportsInt) -> None: ...
|
|
2553
|
+
def IncludeItemsByIndex(self, item_begin: typing.SupportsInt, item_end: typing.SupportsInt) -> None: ...
|
|
2554
|
+
def SeekCursorForItem(self, item_index: typing.SupportsInt) -> None: ...
|
|
2555
|
+
def Step(self) -> bool: ...
|
|
2556
|
+
def __init__(self) -> None: ...
|
|
2557
|
+
@property
|
|
2558
|
+
def DisplayEnd(self) -> int:
|
|
2559
|
+
"""
|
|
2560
|
+
:type: int
|
|
2561
|
+
"""
|
|
2562
|
+
@property
|
|
2563
|
+
def DisplayStart(self) -> int:
|
|
2564
|
+
"""
|
|
2565
|
+
:type: int
|
|
2566
|
+
"""
|
|
2567
|
+
pass
|
|
2568
|
+
class ListWrapperBool():
|
|
2569
|
+
def __getitem__(self, arg0: typing.SupportsInt) -> bool: ...
|
|
2570
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2571
|
+
def __len__(self) -> int: ...
|
|
2572
|
+
pass
|
|
2573
|
+
class ListWrapperDouble():
|
|
2574
|
+
def __getitem__(self, arg0: typing.SupportsInt) -> float: ...
|
|
2575
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2576
|
+
def __len__(self) -> int: ...
|
|
2577
|
+
pass
|
|
2578
|
+
class ListWrapperImVec2():
|
|
2579
|
+
def __getitem__(self, arg0: typing.SupportsInt) -> ImVec2: ...
|
|
2580
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2581
|
+
def __len__(self) -> int: ...
|
|
2582
|
+
pass
|
|
2583
|
+
class ListWrapperTCSS():
|
|
2584
|
+
def __getitem__(self, arg0: typing.SupportsInt) -> ImGuiTableColumnSortSpecs: ...
|
|
2585
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2586
|
+
def __len__(self) -> int: ...
|
|
2587
|
+
pass
|
|
2588
|
+
class MouseButton():
|
|
2589
|
+
Left = 0
|
|
2590
|
+
Middle = 2
|
|
2591
|
+
Right = 1
|
|
2592
|
+
pass
|
|
2593
|
+
class MouseCursor():
|
|
2594
|
+
Arrow = 0
|
|
2595
|
+
Hand = 7
|
|
2596
|
+
None_ = -1
|
|
2597
|
+
NotAllowed = 10
|
|
2598
|
+
Progress = 9
|
|
2599
|
+
ResizeAll = 2
|
|
2600
|
+
ResizeEW = 4
|
|
2601
|
+
ResizeNESW = 5
|
|
2602
|
+
ResizeNS = 3
|
|
2603
|
+
ResizeNWSE = 6
|
|
2604
|
+
TextInput = 1
|
|
2605
|
+
Wait = 8
|
|
2606
|
+
pass
|
|
2607
|
+
class MouseSource():
|
|
2608
|
+
Mouse = 0
|
|
2609
|
+
Pen = 2
|
|
2610
|
+
TouchScreen = 1
|
|
2611
|
+
pass
|
|
2612
|
+
class MultiSelectFlags():
|
|
2613
|
+
BoxSelect1d = 64
|
|
2614
|
+
BoxSelect2d = 128
|
|
2615
|
+
BoxSelectNoScroll = 256
|
|
2616
|
+
ClearOnClickVoid = 1024
|
|
2617
|
+
ClearOnEscape = 512
|
|
2618
|
+
NavWrapX = 65536
|
|
2619
|
+
NoAutoClear = 16
|
|
2620
|
+
NoAutoClearOnReselect = 32
|
|
2621
|
+
NoAutoSelect = 8
|
|
2622
|
+
NoRangeSelect = 4
|
|
2623
|
+
NoSelectAll = 2
|
|
2624
|
+
None_ = 0
|
|
2625
|
+
ScopeRect = 4096
|
|
2626
|
+
ScopeWindow = 2048
|
|
2627
|
+
SelectOnClick = 8192
|
|
2628
|
+
SelectOnClickRelease = 16384
|
|
2629
|
+
SingleSelect = 1
|
|
2630
|
+
pass
|
|
2631
|
+
class MultiSelectIO():
|
|
2632
|
+
@property
|
|
2633
|
+
def ItemsCount(self) -> int:
|
|
2634
|
+
"""
|
|
2635
|
+
:type: int
|
|
2636
|
+
"""
|
|
2637
|
+
@property
|
|
2638
|
+
def NavIdItem(self) -> int:
|
|
2639
|
+
"""
|
|
2640
|
+
:type: int
|
|
2641
|
+
"""
|
|
2642
|
+
@property
|
|
2643
|
+
def NavIdSelected(self) -> bool:
|
|
2644
|
+
"""
|
|
2645
|
+
:type: bool
|
|
2646
|
+
"""
|
|
2647
|
+
@property
|
|
2648
|
+
def RangeSrcItem(self) -> int:
|
|
2649
|
+
"""
|
|
2650
|
+
:type: int
|
|
2651
|
+
"""
|
|
2652
|
+
@property
|
|
2653
|
+
def RangeSrcReset(self) -> bool:
|
|
2654
|
+
"""
|
|
2655
|
+
:type: bool
|
|
2656
|
+
"""
|
|
2657
|
+
@RangeSrcReset.setter
|
|
2658
|
+
def RangeSrcReset(self, arg0: bool) -> None:
|
|
2659
|
+
pass
|
|
2660
|
+
@property
|
|
2661
|
+
def Requests(self) -> ImVector<ImGuiSelectionRequest>:
|
|
2662
|
+
"""
|
|
2663
|
+
:type: ImVector<ImGuiSelectionRequest>
|
|
2664
|
+
"""
|
|
2665
|
+
pass
|
|
2666
|
+
class PopupFlags():
|
|
2667
|
+
AnyPopup = 3072
|
|
2668
|
+
AnyPopupId = 1024
|
|
2669
|
+
AnyPopupLevel = 2048
|
|
2670
|
+
MouseButtonDefault_ = 1
|
|
2671
|
+
MouseButtonLeft = 0
|
|
2672
|
+
MouseButtonMask_ = 31
|
|
2673
|
+
MouseButtonMiddle = 2
|
|
2674
|
+
MouseButtonRight = 1
|
|
2675
|
+
NoOpenOverExistingPopup = 128
|
|
2676
|
+
NoOpenOverItems = 256
|
|
2677
|
+
NoReopen = 32
|
|
2678
|
+
None_ = 0
|
|
2679
|
+
pass
|
|
2680
|
+
class SelectableFlags():
|
|
2681
|
+
AllowDoubleClick = 4
|
|
2682
|
+
AllowOverlap = 16
|
|
2683
|
+
Disabled = 8
|
|
2684
|
+
Highlight = 32
|
|
2685
|
+
NoAutoClosePopups = 1
|
|
2686
|
+
None_ = 0
|
|
2687
|
+
SpanAllColumns = 2
|
|
2688
|
+
pass
|
|
2689
|
+
class SelectionRequest():
|
|
2690
|
+
@property
|
|
2691
|
+
def RangeDirection(self) -> int:
|
|
2692
|
+
"""
|
|
2693
|
+
:type: int
|
|
2694
|
+
"""
|
|
2695
|
+
@property
|
|
2696
|
+
def RangeFirstItem(self) -> int:
|
|
2697
|
+
"""
|
|
2698
|
+
:type: int
|
|
2699
|
+
"""
|
|
2700
|
+
@property
|
|
2701
|
+
def RangeLastItem(self) -> int:
|
|
2702
|
+
"""
|
|
2703
|
+
:type: int
|
|
2704
|
+
"""
|
|
2705
|
+
@property
|
|
2706
|
+
def Selected(self) -> bool:
|
|
2707
|
+
"""
|
|
2708
|
+
:type: bool
|
|
2709
|
+
"""
|
|
2710
|
+
@property
|
|
2711
|
+
def Type(self) -> ImGuiSelectionRequestType:
|
|
2712
|
+
"""
|
|
2713
|
+
:type: ImGuiSelectionRequestType
|
|
2714
|
+
"""
|
|
2715
|
+
pass
|
|
2716
|
+
class SelectionRequestType():
|
|
2717
|
+
None_ = 0
|
|
2718
|
+
SetAll = 1
|
|
2719
|
+
SetRange = 2
|
|
2720
|
+
pass
|
|
2721
|
+
class SliderFlags():
|
|
2722
|
+
AlwaysClamp = 1536
|
|
2723
|
+
ClampOnInput = 512
|
|
2724
|
+
ClampZeroRange = 1024
|
|
2725
|
+
InvalidMask_ = 1879048207
|
|
2726
|
+
Logarithmic = 32
|
|
2727
|
+
NoInput = 128
|
|
2728
|
+
NoRoundToFormat = 64
|
|
2729
|
+
NoSpeedTweaks = 2048
|
|
2730
|
+
None_ = 0
|
|
2731
|
+
WrapAround = 256
|
|
2732
|
+
pass
|
|
2733
|
+
class SortDirection():
|
|
2734
|
+
Ascending = 1
|
|
2735
|
+
Descending = 2
|
|
2736
|
+
None_ = 0
|
|
2737
|
+
pass
|
|
2738
|
+
class StrList():
|
|
2739
|
+
"""
|
|
2740
|
+
Thin wrapper over a std::vector<const char*>
|
|
2741
|
+
"""
|
|
2742
|
+
def __getitem__(self, index: typing.SupportsInt) -> str: ...
|
|
2743
|
+
@typing.overload
|
|
2744
|
+
def __init__(self) -> None: ...
|
|
2745
|
+
@typing.overload
|
|
2746
|
+
def __init__(self, vals: collections.abc.Sequence[str] = []) -> None: ...
|
|
2747
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
2748
|
+
def __len__(self) -> int: ...
|
|
2749
|
+
def __setitem__(self, index: typing.SupportsInt, val: str) -> None: ...
|
|
2750
|
+
def append(self, val: str) -> None:
|
|
2751
|
+
"""
|
|
2752
|
+
Append a value to the end
|
|
2753
|
+
"""
|
|
2754
|
+
def clear(self) -> None: ...
|
|
2755
|
+
def pop(self) -> str:
|
|
2756
|
+
"""
|
|
2757
|
+
Pop a value from the end
|
|
2758
|
+
"""
|
|
2759
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
2760
|
+
"""
|
|
2761
|
+
Resize the vector, dropping any lost values
|
|
2762
|
+
"""
|
|
2763
|
+
pass
|
|
2764
|
+
class StrRef():
|
|
2765
|
+
"""
|
|
2766
|
+
Thin wrapper over a std::vector<char>
|
|
2767
|
+
"""
|
|
2768
|
+
@typing.overload
|
|
2769
|
+
def __init__(self, maxSize: typing.SupportsInt) -> None:
|
|
2770
|
+
"""
|
|
2771
|
+
Initialize an empty string with reserved size
|
|
2772
|
+
|
|
2773
|
+
Initialize with an input string. If maxSize=0, then maxSize=len(val)
|
|
2774
|
+
"""
|
|
2775
|
+
@typing.overload
|
|
2776
|
+
def __init__(self, value: str, maxSize: typing.SupportsInt = 0) -> None: ...
|
|
2777
|
+
def __len__(self) -> int: ...
|
|
2778
|
+
def __str__(self) -> str: ...
|
|
2779
|
+
def append(self, val: str) -> None:
|
|
2780
|
+
"""
|
|
2781
|
+
Append a value to the end
|
|
2782
|
+
"""
|
|
2783
|
+
def copy(self) -> str:
|
|
2784
|
+
"""
|
|
2785
|
+
Get a copy of the string
|
|
2786
|
+
"""
|
|
2787
|
+
def pop(self) -> str:
|
|
2788
|
+
"""
|
|
2789
|
+
Pop a value from the end
|
|
2790
|
+
"""
|
|
2791
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
2792
|
+
"""
|
|
2793
|
+
Resize the vector, dropping any lost values
|
|
2794
|
+
"""
|
|
2795
|
+
def set(self, newVal: str, maxSize: typing.SupportsInt = 0) -> None:
|
|
2796
|
+
"""
|
|
2797
|
+
Assign a new value to the string. If maxSize=0,the maxSize will remain unchanged and extra chars will be dropped
|
|
2798
|
+
"""
|
|
2799
|
+
def view(self) -> str:
|
|
2800
|
+
"""
|
|
2801
|
+
Get a reference to the string, only valid while this object exists
|
|
2802
|
+
"""
|
|
2803
|
+
pass
|
|
2804
|
+
class Style():
|
|
2805
|
+
def ScaleAllSizes(self, scale_factor: typing.SupportsFloat) -> None: ...
|
|
2806
|
+
def __init__(self) -> None: ...
|
|
2807
|
+
@property
|
|
2808
|
+
def Alpha(self) -> float:
|
|
2809
|
+
"""
|
|
2810
|
+
:type: float
|
|
2811
|
+
"""
|
|
2812
|
+
@Alpha.setter
|
|
2813
|
+
def Alpha(self, arg0: typing.SupportsFloat) -> None:
|
|
2814
|
+
pass
|
|
2815
|
+
@property
|
|
2816
|
+
def AntiAliasedFill(self) -> bool:
|
|
2817
|
+
"""
|
|
2818
|
+
:type: bool
|
|
2819
|
+
"""
|
|
2820
|
+
@AntiAliasedFill.setter
|
|
2821
|
+
def AntiAliasedFill(self, arg0: bool) -> None:
|
|
2822
|
+
pass
|
|
2823
|
+
@property
|
|
2824
|
+
def AntiAliasedLines(self) -> bool:
|
|
2825
|
+
"""
|
|
2826
|
+
:type: bool
|
|
2827
|
+
"""
|
|
2828
|
+
@AntiAliasedLines.setter
|
|
2829
|
+
def AntiAliasedLines(self, arg0: bool) -> None:
|
|
2830
|
+
pass
|
|
2831
|
+
@property
|
|
2832
|
+
def AntiAliasedLinesUseTex(self) -> bool:
|
|
2833
|
+
"""
|
|
2834
|
+
:type: bool
|
|
2835
|
+
"""
|
|
2836
|
+
@AntiAliasedLinesUseTex.setter
|
|
2837
|
+
def AntiAliasedLinesUseTex(self, arg0: bool) -> None:
|
|
2838
|
+
pass
|
|
2839
|
+
@property
|
|
2840
|
+
def ButtonTextAlign(self) -> Vec2:
|
|
2841
|
+
"""
|
|
2842
|
+
:type: Vec2
|
|
2843
|
+
"""
|
|
2844
|
+
@ButtonTextAlign.setter
|
|
2845
|
+
def ButtonTextAlign(self, arg0: Vec2) -> None:
|
|
2846
|
+
pass
|
|
2847
|
+
@property
|
|
2848
|
+
def CellPadding(self) -> Vec2:
|
|
2849
|
+
"""
|
|
2850
|
+
:type: Vec2
|
|
2851
|
+
"""
|
|
2852
|
+
@CellPadding.setter
|
|
2853
|
+
def CellPadding(self, arg0: Vec2) -> None:
|
|
2854
|
+
pass
|
|
2855
|
+
@property
|
|
2856
|
+
def ChildBorderSize(self) -> float:
|
|
2857
|
+
"""
|
|
2858
|
+
:type: float
|
|
2859
|
+
"""
|
|
2860
|
+
@ChildBorderSize.setter
|
|
2861
|
+
def ChildBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
2862
|
+
pass
|
|
2863
|
+
@property
|
|
2864
|
+
def ChildRounding(self) -> float:
|
|
2865
|
+
"""
|
|
2866
|
+
:type: float
|
|
2867
|
+
"""
|
|
2868
|
+
@ChildRounding.setter
|
|
2869
|
+
def ChildRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
2870
|
+
pass
|
|
2871
|
+
@property
|
|
2872
|
+
def CircleTessellationMaxError(self) -> float:
|
|
2873
|
+
"""
|
|
2874
|
+
:type: float
|
|
2875
|
+
"""
|
|
2876
|
+
@CircleTessellationMaxError.setter
|
|
2877
|
+
def CircleTessellationMaxError(self, arg0: typing.SupportsFloat) -> None:
|
|
2878
|
+
pass
|
|
2879
|
+
@property
|
|
2880
|
+
def ColorButtonPosition(self) -> ImGuiDir:
|
|
2881
|
+
"""
|
|
2882
|
+
:type: ImGuiDir
|
|
2883
|
+
"""
|
|
2884
|
+
@ColorButtonPosition.setter
|
|
2885
|
+
def ColorButtonPosition(self, arg0: ImGuiDir) -> None:
|
|
2886
|
+
pass
|
|
2887
|
+
@property
|
|
2888
|
+
def Colors(self) -> ListWrapper<ImVec4>:
|
|
2889
|
+
"""
|
|
2890
|
+
:type: ListWrapper<ImVec4>
|
|
2891
|
+
"""
|
|
2892
|
+
@property
|
|
2893
|
+
def ColumnsMinSpacing(self) -> float:
|
|
2894
|
+
"""
|
|
2895
|
+
:type: float
|
|
2896
|
+
"""
|
|
2897
|
+
@ColumnsMinSpacing.setter
|
|
2898
|
+
def ColumnsMinSpacing(self, arg0: typing.SupportsFloat) -> None:
|
|
2899
|
+
pass
|
|
2900
|
+
@property
|
|
2901
|
+
def CurveTessellationTol(self) -> float:
|
|
2902
|
+
"""
|
|
2903
|
+
:type: float
|
|
2904
|
+
"""
|
|
2905
|
+
@CurveTessellationTol.setter
|
|
2906
|
+
def CurveTessellationTol(self, arg0: typing.SupportsFloat) -> None:
|
|
2907
|
+
pass
|
|
2908
|
+
@property
|
|
2909
|
+
def DisabledAlpha(self) -> float:
|
|
2910
|
+
"""
|
|
2911
|
+
:type: float
|
|
2912
|
+
"""
|
|
2913
|
+
@DisabledAlpha.setter
|
|
2914
|
+
def DisabledAlpha(self, arg0: typing.SupportsFloat) -> None:
|
|
2915
|
+
pass
|
|
2916
|
+
@property
|
|
2917
|
+
def DisplaySafeAreaPadding(self) -> Vec2:
|
|
2918
|
+
"""
|
|
2919
|
+
:type: Vec2
|
|
2920
|
+
"""
|
|
2921
|
+
@DisplaySafeAreaPadding.setter
|
|
2922
|
+
def DisplaySafeAreaPadding(self, arg0: Vec2) -> None:
|
|
2923
|
+
pass
|
|
2924
|
+
@property
|
|
2925
|
+
def DisplayWindowPadding(self) -> Vec2:
|
|
2926
|
+
"""
|
|
2927
|
+
:type: Vec2
|
|
2928
|
+
"""
|
|
2929
|
+
@DisplayWindowPadding.setter
|
|
2930
|
+
def DisplayWindowPadding(self, arg0: Vec2) -> None:
|
|
2931
|
+
pass
|
|
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
|
|
2957
|
+
def FrameBorderSize(self) -> float:
|
|
2958
|
+
"""
|
|
2959
|
+
:type: float
|
|
2960
|
+
"""
|
|
2961
|
+
@FrameBorderSize.setter
|
|
2962
|
+
def FrameBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
2963
|
+
pass
|
|
2964
|
+
@property
|
|
2965
|
+
def FramePadding(self) -> Vec2:
|
|
2966
|
+
"""
|
|
2967
|
+
:type: Vec2
|
|
2968
|
+
"""
|
|
2969
|
+
@FramePadding.setter
|
|
2970
|
+
def FramePadding(self, arg0: Vec2) -> None:
|
|
2971
|
+
pass
|
|
2972
|
+
@property
|
|
2973
|
+
def FrameRounding(self) -> float:
|
|
2974
|
+
"""
|
|
2975
|
+
:type: float
|
|
2976
|
+
"""
|
|
2977
|
+
@FrameRounding.setter
|
|
2978
|
+
def FrameRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
2979
|
+
pass
|
|
2980
|
+
@property
|
|
2981
|
+
def GrabMinSize(self) -> float:
|
|
2982
|
+
"""
|
|
2983
|
+
:type: float
|
|
2984
|
+
"""
|
|
2985
|
+
@GrabMinSize.setter
|
|
2986
|
+
def GrabMinSize(self, arg0: typing.SupportsFloat) -> None:
|
|
2987
|
+
pass
|
|
2988
|
+
@property
|
|
2989
|
+
def GrabRounding(self) -> float:
|
|
2990
|
+
"""
|
|
2991
|
+
:type: float
|
|
2992
|
+
"""
|
|
2993
|
+
@GrabRounding.setter
|
|
2994
|
+
def GrabRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
2995
|
+
pass
|
|
2996
|
+
@property
|
|
2997
|
+
def HoverDelayNormal(self) -> float:
|
|
2998
|
+
"""
|
|
2999
|
+
:type: float
|
|
3000
|
+
"""
|
|
3001
|
+
@HoverDelayNormal.setter
|
|
3002
|
+
def HoverDelayNormal(self, arg0: typing.SupportsFloat) -> None:
|
|
3003
|
+
pass
|
|
3004
|
+
@property
|
|
3005
|
+
def HoverDelayShort(self) -> float:
|
|
3006
|
+
"""
|
|
3007
|
+
:type: float
|
|
3008
|
+
"""
|
|
3009
|
+
@HoverDelayShort.setter
|
|
3010
|
+
def HoverDelayShort(self, arg0: typing.SupportsFloat) -> None:
|
|
3011
|
+
pass
|
|
3012
|
+
@property
|
|
3013
|
+
def HoverFlagsForTooltipMouse(self) -> int:
|
|
3014
|
+
"""
|
|
3015
|
+
:type: int
|
|
3016
|
+
"""
|
|
3017
|
+
@HoverFlagsForTooltipMouse.setter
|
|
3018
|
+
def HoverFlagsForTooltipMouse(self, arg0: typing.SupportsInt) -> None:
|
|
3019
|
+
pass
|
|
3020
|
+
@property
|
|
3021
|
+
def HoverFlagsForTooltipNav(self) -> int:
|
|
3022
|
+
"""
|
|
3023
|
+
:type: int
|
|
3024
|
+
"""
|
|
3025
|
+
@HoverFlagsForTooltipNav.setter
|
|
3026
|
+
def HoverFlagsForTooltipNav(self, arg0: typing.SupportsInt) -> None:
|
|
3027
|
+
pass
|
|
3028
|
+
@property
|
|
3029
|
+
def HoverStationaryDelay(self) -> float:
|
|
3030
|
+
"""
|
|
3031
|
+
:type: float
|
|
3032
|
+
"""
|
|
3033
|
+
@HoverStationaryDelay.setter
|
|
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:
|
|
3043
|
+
pass
|
|
3044
|
+
@property
|
|
3045
|
+
def IndentSpacing(self) -> float:
|
|
3046
|
+
"""
|
|
3047
|
+
:type: float
|
|
3048
|
+
"""
|
|
3049
|
+
@IndentSpacing.setter
|
|
3050
|
+
def IndentSpacing(self, arg0: typing.SupportsFloat) -> None:
|
|
3051
|
+
pass
|
|
3052
|
+
@property
|
|
3053
|
+
def ItemInnerSpacing(self) -> Vec2:
|
|
3054
|
+
"""
|
|
3055
|
+
:type: Vec2
|
|
3056
|
+
"""
|
|
3057
|
+
@ItemInnerSpacing.setter
|
|
3058
|
+
def ItemInnerSpacing(self, arg0: Vec2) -> None:
|
|
3059
|
+
pass
|
|
3060
|
+
@property
|
|
3061
|
+
def ItemSpacing(self) -> Vec2:
|
|
3062
|
+
"""
|
|
3063
|
+
:type: Vec2
|
|
3064
|
+
"""
|
|
3065
|
+
@ItemSpacing.setter
|
|
3066
|
+
def ItemSpacing(self, arg0: Vec2) -> None:
|
|
3067
|
+
pass
|
|
3068
|
+
@property
|
|
3069
|
+
def LogSliderDeadzone(self) -> float:
|
|
3070
|
+
"""
|
|
3071
|
+
:type: float
|
|
3072
|
+
"""
|
|
3073
|
+
@LogSliderDeadzone.setter
|
|
3074
|
+
def LogSliderDeadzone(self, arg0: typing.SupportsFloat) -> None:
|
|
3075
|
+
pass
|
|
3076
|
+
@property
|
|
3077
|
+
def MouseCursorScale(self) -> float:
|
|
3078
|
+
"""
|
|
3079
|
+
:type: float
|
|
3080
|
+
"""
|
|
3081
|
+
@MouseCursorScale.setter
|
|
3082
|
+
def MouseCursorScale(self, arg0: typing.SupportsFloat) -> None:
|
|
3083
|
+
pass
|
|
3084
|
+
@property
|
|
3085
|
+
def PopupBorderSize(self) -> float:
|
|
3086
|
+
"""
|
|
3087
|
+
:type: float
|
|
3088
|
+
"""
|
|
3089
|
+
@PopupBorderSize.setter
|
|
3090
|
+
def PopupBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3091
|
+
pass
|
|
3092
|
+
@property
|
|
3093
|
+
def PopupRounding(self) -> float:
|
|
3094
|
+
"""
|
|
3095
|
+
:type: float
|
|
3096
|
+
"""
|
|
3097
|
+
@PopupRounding.setter
|
|
3098
|
+
def PopupRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
3099
|
+
pass
|
|
3100
|
+
@property
|
|
3101
|
+
def ScrollbarRounding(self) -> float:
|
|
3102
|
+
"""
|
|
3103
|
+
:type: float
|
|
3104
|
+
"""
|
|
3105
|
+
@ScrollbarRounding.setter
|
|
3106
|
+
def ScrollbarRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
3107
|
+
pass
|
|
3108
|
+
@property
|
|
3109
|
+
def ScrollbarSize(self) -> float:
|
|
3110
|
+
"""
|
|
3111
|
+
:type: float
|
|
3112
|
+
"""
|
|
3113
|
+
@ScrollbarSize.setter
|
|
3114
|
+
def ScrollbarSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3115
|
+
pass
|
|
3116
|
+
@property
|
|
3117
|
+
def SelectableTextAlign(self) -> Vec2:
|
|
3118
|
+
"""
|
|
3119
|
+
:type: Vec2
|
|
3120
|
+
"""
|
|
3121
|
+
@SelectableTextAlign.setter
|
|
3122
|
+
def SelectableTextAlign(self, arg0: Vec2) -> None:
|
|
3123
|
+
pass
|
|
3124
|
+
@property
|
|
3125
|
+
def SeparatorTextAlign(self) -> Vec2:
|
|
3126
|
+
"""
|
|
3127
|
+
:type: Vec2
|
|
3128
|
+
"""
|
|
3129
|
+
@SeparatorTextAlign.setter
|
|
3130
|
+
def SeparatorTextAlign(self, arg0: Vec2) -> None:
|
|
3131
|
+
pass
|
|
3132
|
+
@property
|
|
3133
|
+
def SeparatorTextBorderSize(self) -> float:
|
|
3134
|
+
"""
|
|
3135
|
+
:type: float
|
|
3136
|
+
"""
|
|
3137
|
+
@SeparatorTextBorderSize.setter
|
|
3138
|
+
def SeparatorTextBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3139
|
+
pass
|
|
3140
|
+
@property
|
|
3141
|
+
def SeparatorTextPadding(self) -> Vec2:
|
|
3142
|
+
"""
|
|
3143
|
+
:type: Vec2
|
|
3144
|
+
"""
|
|
3145
|
+
@SeparatorTextPadding.setter
|
|
3146
|
+
def SeparatorTextPadding(self, arg0: Vec2) -> None:
|
|
3147
|
+
pass
|
|
3148
|
+
@property
|
|
3149
|
+
def TabBarBorderSize(self) -> float:
|
|
3150
|
+
"""
|
|
3151
|
+
:type: float
|
|
3152
|
+
"""
|
|
3153
|
+
@TabBarBorderSize.setter
|
|
3154
|
+
def TabBarBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3155
|
+
pass
|
|
3156
|
+
@property
|
|
3157
|
+
def TabBarOverlineSize(self) -> float:
|
|
3158
|
+
"""
|
|
3159
|
+
:type: float
|
|
3160
|
+
"""
|
|
3161
|
+
@TabBarOverlineSize.setter
|
|
3162
|
+
def TabBarOverlineSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3163
|
+
pass
|
|
3164
|
+
@property
|
|
3165
|
+
def TabBorderSize(self) -> float:
|
|
3166
|
+
"""
|
|
3167
|
+
:type: float
|
|
3168
|
+
"""
|
|
3169
|
+
@TabBorderSize.setter
|
|
3170
|
+
def TabBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3171
|
+
pass
|
|
3172
|
+
@property
|
|
3173
|
+
def TabCloseButtonMinWidthSelected(self) -> float:
|
|
3174
|
+
"""
|
|
3175
|
+
:type: float
|
|
3176
|
+
"""
|
|
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:
|
|
3187
|
+
pass
|
|
3188
|
+
@property
|
|
3189
|
+
def TabRounding(self) -> float:
|
|
3190
|
+
"""
|
|
3191
|
+
:type: float
|
|
3192
|
+
"""
|
|
3193
|
+
@TabRounding.setter
|
|
3194
|
+
def TabRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
3195
|
+
pass
|
|
3196
|
+
@property
|
|
3197
|
+
def TableAngledHeadersAngle(self) -> float:
|
|
3198
|
+
"""
|
|
3199
|
+
:type: float
|
|
3200
|
+
"""
|
|
3201
|
+
@TableAngledHeadersAngle.setter
|
|
3202
|
+
def TableAngledHeadersAngle(self, arg0: typing.SupportsFloat) -> None:
|
|
3203
|
+
pass
|
|
3204
|
+
@property
|
|
3205
|
+
def TableAngledHeadersTextAlign(self) -> Vec2:
|
|
3206
|
+
"""
|
|
3207
|
+
:type: Vec2
|
|
3208
|
+
"""
|
|
3209
|
+
@TableAngledHeadersTextAlign.setter
|
|
3210
|
+
def TableAngledHeadersTextAlign(self, arg0: Vec2) -> None:
|
|
3211
|
+
pass
|
|
3212
|
+
@property
|
|
3213
|
+
def TouchExtraPadding(self) -> Vec2:
|
|
3214
|
+
"""
|
|
3215
|
+
:type: Vec2
|
|
3216
|
+
"""
|
|
3217
|
+
@TouchExtraPadding.setter
|
|
3218
|
+
def TouchExtraPadding(self, arg0: Vec2) -> None:
|
|
3219
|
+
pass
|
|
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
|
|
3253
|
+
def WindowBorderSize(self) -> float:
|
|
3254
|
+
"""
|
|
3255
|
+
:type: float
|
|
3256
|
+
"""
|
|
3257
|
+
@WindowBorderSize.setter
|
|
3258
|
+
def WindowBorderSize(self, arg0: typing.SupportsFloat) -> None:
|
|
3259
|
+
pass
|
|
3260
|
+
@property
|
|
3261
|
+
def WindowMenuButtonPosition(self) -> ImGuiDir:
|
|
3262
|
+
"""
|
|
3263
|
+
:type: ImGuiDir
|
|
3264
|
+
"""
|
|
3265
|
+
@WindowMenuButtonPosition.setter
|
|
3266
|
+
def WindowMenuButtonPosition(self, arg0: ImGuiDir) -> None:
|
|
3267
|
+
pass
|
|
3268
|
+
@property
|
|
3269
|
+
def WindowMinSize(self) -> Vec2:
|
|
3270
|
+
"""
|
|
3271
|
+
:type: Vec2
|
|
3272
|
+
"""
|
|
3273
|
+
@WindowMinSize.setter
|
|
3274
|
+
def WindowMinSize(self, arg0: Vec2) -> None:
|
|
3275
|
+
pass
|
|
3276
|
+
@property
|
|
3277
|
+
def WindowPadding(self) -> Vec2:
|
|
3278
|
+
"""
|
|
3279
|
+
:type: Vec2
|
|
3280
|
+
"""
|
|
3281
|
+
@WindowPadding.setter
|
|
3282
|
+
def WindowPadding(self, arg0: Vec2) -> None:
|
|
3283
|
+
pass
|
|
3284
|
+
@property
|
|
3285
|
+
def WindowRounding(self) -> float:
|
|
3286
|
+
"""
|
|
3287
|
+
:type: float
|
|
3288
|
+
"""
|
|
3289
|
+
@WindowRounding.setter
|
|
3290
|
+
def WindowRounding(self, arg0: typing.SupportsFloat) -> None:
|
|
3291
|
+
pass
|
|
3292
|
+
@property
|
|
3293
|
+
def WindowTitleAlign(self) -> Vec2:
|
|
3294
|
+
"""
|
|
3295
|
+
:type: Vec2
|
|
3296
|
+
"""
|
|
3297
|
+
@WindowTitleAlign.setter
|
|
3298
|
+
def WindowTitleAlign(self, arg0: Vec2) -> None:
|
|
3299
|
+
pass
|
|
3300
|
+
pass
|
|
3301
|
+
class StyleVar():
|
|
3302
|
+
Alpha = 0
|
|
3303
|
+
ButtonTextAlign = 31
|
|
3304
|
+
CellPadding = 17
|
|
3305
|
+
ChildBorderSize = 8
|
|
3306
|
+
ChildRounding = 7
|
|
3307
|
+
DisabledAlpha = 1
|
|
3308
|
+
FrameBorderSize = 13
|
|
3309
|
+
FramePadding = 11
|
|
3310
|
+
FrameRounding = 12
|
|
3311
|
+
GrabMinSize = 20
|
|
3312
|
+
GrabRounding = 21
|
|
3313
|
+
ImageBorderSize = 22
|
|
3314
|
+
IndentSpacing = 16
|
|
3315
|
+
ItemInnerSpacing = 15
|
|
3316
|
+
ItemSpacing = 14
|
|
3317
|
+
PopupBorderSize = 10
|
|
3318
|
+
PopupRounding = 9
|
|
3319
|
+
ScrollbarRounding = 19
|
|
3320
|
+
ScrollbarSize = 18
|
|
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
|
|
3330
|
+
WindowBorderSize = 4
|
|
3331
|
+
WindowMinSize = 5
|
|
3332
|
+
WindowPadding = 2
|
|
3333
|
+
WindowRounding = 3
|
|
3334
|
+
WindowTitleAlign = 6
|
|
3335
|
+
pass
|
|
3336
|
+
class TabBarFlags():
|
|
3337
|
+
AutoSelectNewTabs = 2
|
|
3338
|
+
DrawSelectedOverline = 64
|
|
3339
|
+
FittingPolicyDefault_ = 128
|
|
3340
|
+
FittingPolicyMask_ = 384
|
|
3341
|
+
FittingPolicyResizeDown = 128
|
|
3342
|
+
FittingPolicyScroll = 256
|
|
3343
|
+
NoCloseWithMiddleMouseButton = 8
|
|
3344
|
+
NoTabListScrollingButtons = 16
|
|
3345
|
+
NoTooltip = 32
|
|
3346
|
+
None_ = 0
|
|
3347
|
+
Reorderable = 1
|
|
3348
|
+
TabListPopupButton = 4
|
|
3349
|
+
pass
|
|
3350
|
+
class TabItemFlags():
|
|
3351
|
+
Leading = 64
|
|
3352
|
+
NoCloseWithMiddleMouseButton = 4
|
|
3353
|
+
NoPushId = 8
|
|
3354
|
+
NoReorder = 32
|
|
3355
|
+
NoTooltip = 16
|
|
3356
|
+
None_ = 0
|
|
3357
|
+
SetSelected = 2
|
|
3358
|
+
Trailing = 128
|
|
3359
|
+
UnsavedDocument = 1
|
|
3360
|
+
pass
|
|
3361
|
+
class TableBgTarget():
|
|
3362
|
+
CellBg = 3
|
|
3363
|
+
None_ = 0
|
|
3364
|
+
RowBg0 = 1
|
|
3365
|
+
RowBg1 = 2
|
|
3366
|
+
pass
|
|
3367
|
+
class TableColumnFlags():
|
|
3368
|
+
DefaultHide = 2
|
|
3369
|
+
DefaultSort = 4
|
|
3370
|
+
Disabled = 1
|
|
3371
|
+
IndentDisable = 131072
|
|
3372
|
+
IndentEnable = 65536
|
|
3373
|
+
IsEnabled = 16777216
|
|
3374
|
+
IsHovered = 134217728
|
|
3375
|
+
IsSorted = 67108864
|
|
3376
|
+
IsVisible = 33554432
|
|
3377
|
+
NoClip = 256
|
|
3378
|
+
NoHeaderLabel = 4096
|
|
3379
|
+
NoHeaderWidth = 8192
|
|
3380
|
+
NoHide = 128
|
|
3381
|
+
NoReorder = 64
|
|
3382
|
+
NoResize = 32
|
|
3383
|
+
NoSort = 512
|
|
3384
|
+
NoSortAscending = 1024
|
|
3385
|
+
NoSortDescending = 2048
|
|
3386
|
+
None_ = 0
|
|
3387
|
+
PreferSortAscending = 16384
|
|
3388
|
+
PreferSortDescending = 32768
|
|
3389
|
+
WidthFixed = 16
|
|
3390
|
+
WidthStretch = 8
|
|
3391
|
+
pass
|
|
3392
|
+
class TableColumnSortSpecs():
|
|
3393
|
+
def __init__(self) -> None: ...
|
|
3394
|
+
@property
|
|
3395
|
+
def ColumnIndex(self) -> int:
|
|
3396
|
+
"""
|
|
3397
|
+
:type: int
|
|
3398
|
+
"""
|
|
3399
|
+
@ColumnIndex.setter
|
|
3400
|
+
def ColumnIndex(self, arg0: typing.SupportsInt) -> None:
|
|
3401
|
+
pass
|
|
3402
|
+
@property
|
|
3403
|
+
def ColumnUserID(self) -> int:
|
|
3404
|
+
"""
|
|
3405
|
+
:type: int
|
|
3406
|
+
"""
|
|
3407
|
+
@ColumnUserID.setter
|
|
3408
|
+
def ColumnUserID(self, arg0: typing.SupportsInt) -> None:
|
|
3409
|
+
pass
|
|
3410
|
+
@property
|
|
3411
|
+
def SortDirection(self) -> ImGuiSortDirection:
|
|
3412
|
+
"""
|
|
3413
|
+
:type: ImGuiSortDirection
|
|
3414
|
+
"""
|
|
3415
|
+
@SortDirection.setter
|
|
3416
|
+
def SortDirection(self, arg1: ImGuiSortDirection) -> None:
|
|
3417
|
+
pass
|
|
3418
|
+
@property
|
|
3419
|
+
def SortOrder(self) -> int:
|
|
3420
|
+
"""
|
|
3421
|
+
:type: int
|
|
3422
|
+
"""
|
|
3423
|
+
@SortOrder.setter
|
|
3424
|
+
def SortOrder(self, arg0: typing.SupportsInt) -> None:
|
|
3425
|
+
pass
|
|
3426
|
+
pass
|
|
3427
|
+
class TableFlags():
|
|
3428
|
+
Borders = 1920
|
|
3429
|
+
BordersH = 384
|
|
3430
|
+
BordersInner = 640
|
|
3431
|
+
BordersInnerH = 128
|
|
3432
|
+
BordersInnerV = 512
|
|
3433
|
+
BordersOuter = 1280
|
|
3434
|
+
BordersOuterH = 256
|
|
3435
|
+
BordersOuterV = 1024
|
|
3436
|
+
BordersV = 1536
|
|
3437
|
+
ContextMenuInBody = 32
|
|
3438
|
+
Hideable = 4
|
|
3439
|
+
NoBordersInBody = 2048
|
|
3440
|
+
NoBordersInBodyUntilResize = 4096
|
|
3441
|
+
NoClip = 1048576
|
|
3442
|
+
NoHostExtendX = 65536
|
|
3443
|
+
NoHostExtendY = 131072
|
|
3444
|
+
NoKeepColumnsVisible = 262144
|
|
3445
|
+
NoPadInnerX = 8388608
|
|
3446
|
+
NoPadOuterX = 4194304
|
|
3447
|
+
NoSavedSettings = 16
|
|
3448
|
+
None_ = 0
|
|
3449
|
+
PadOuterX = 2097152
|
|
3450
|
+
PreciseWidths = 524288
|
|
3451
|
+
Reorderable = 2
|
|
3452
|
+
Resizable = 1
|
|
3453
|
+
RowBg = 64
|
|
3454
|
+
ScrollX = 16777216
|
|
3455
|
+
ScrollY = 33554432
|
|
3456
|
+
SizingFixedFit = 8192
|
|
3457
|
+
SizingFixedSame = 16384
|
|
3458
|
+
SizingStretchProp = 24576
|
|
3459
|
+
SizingStretchSame = 32768
|
|
3460
|
+
SortMulti = 67108864
|
|
3461
|
+
SortTristate = 134217728
|
|
3462
|
+
Sortable = 8
|
|
3463
|
+
pass
|
|
3464
|
+
class TableRowFlags():
|
|
3465
|
+
Headers = 1
|
|
3466
|
+
None_ = 0
|
|
3467
|
+
pass
|
|
3468
|
+
class TableSortSpecs():
|
|
3469
|
+
def __init__(self) -> None: ...
|
|
3470
|
+
@property
|
|
3471
|
+
def Specs(self) -> ListWrapperTCSS:
|
|
3472
|
+
"""
|
|
3473
|
+
:type: ListWrapperTCSS
|
|
3474
|
+
"""
|
|
3475
|
+
@property
|
|
3476
|
+
def SpecsDirty(self) -> bool:
|
|
3477
|
+
"""
|
|
3478
|
+
:type: bool
|
|
3479
|
+
"""
|
|
3480
|
+
@SpecsDirty.setter
|
|
3481
|
+
def SpecsDirty(self, arg0: bool) -> None:
|
|
3482
|
+
pass
|
|
3483
|
+
pass
|
|
3484
|
+
class Texture():
|
|
3485
|
+
@property
|
|
3486
|
+
def height(self) -> int:
|
|
3487
|
+
"""
|
|
3488
|
+
:type: int
|
|
3489
|
+
"""
|
|
3490
|
+
@height.setter
|
|
3491
|
+
def height(self, arg0: typing.SupportsInt) -> None:
|
|
3492
|
+
pass
|
|
3493
|
+
@property
|
|
3494
|
+
def texID(self) -> int:
|
|
3495
|
+
"""
|
|
3496
|
+
:type: int
|
|
3497
|
+
"""
|
|
3498
|
+
@texID.setter
|
|
3499
|
+
def texID(self, arg0: typing.SupportsInt) -> None:
|
|
3500
|
+
pass
|
|
3501
|
+
@property
|
|
3502
|
+
def width(self) -> int:
|
|
3503
|
+
"""
|
|
3504
|
+
:type: int
|
|
3505
|
+
"""
|
|
3506
|
+
@width.setter
|
|
3507
|
+
def width(self, arg0: typing.SupportsInt) -> None:
|
|
3508
|
+
pass
|
|
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
|
|
3521
|
+
class TreeNodeFlags():
|
|
3522
|
+
AllowOverlap = 4
|
|
3523
|
+
Bullet = 512
|
|
3524
|
+
CollapsingHeader = 26
|
|
3525
|
+
DefaultOpen = 32
|
|
3526
|
+
DrawLinesFull = 524288
|
|
3527
|
+
DrawLinesNone = 262144
|
|
3528
|
+
DrawLinesToNodes = 1048576
|
|
3529
|
+
FramePadding = 1024
|
|
3530
|
+
Framed = 2
|
|
3531
|
+
LabelSpanAllColumns = 32768
|
|
3532
|
+
Leaf = 256
|
|
3533
|
+
NavLeftJumpsToParent = 131072
|
|
3534
|
+
NoAutoOpenOnLog = 16
|
|
3535
|
+
NoTreePushOnOpen = 8
|
|
3536
|
+
None_ = 0
|
|
3537
|
+
OpenOnArrow = 128
|
|
3538
|
+
OpenOnDoubleClick = 64
|
|
3539
|
+
Selected = 1
|
|
3540
|
+
SpanAllColumns = 16384
|
|
3541
|
+
SpanAvailWidth = 2048
|
|
3542
|
+
SpanFullWidth = 4096
|
|
3543
|
+
SpanLabelWidth = 8192
|
|
3544
|
+
pass
|
|
3545
|
+
class Vec2():
|
|
3546
|
+
@typing.overload
|
|
3547
|
+
def __init__(self) -> None: ...
|
|
3548
|
+
@typing.overload
|
|
3549
|
+
def __init__(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> None: ...
|
|
3550
|
+
def __str__(self) -> str: ...
|
|
3551
|
+
@property
|
|
3552
|
+
def x(self) -> float:
|
|
3553
|
+
"""
|
|
3554
|
+
:type: float
|
|
3555
|
+
"""
|
|
3556
|
+
@x.setter
|
|
3557
|
+
def x(self, arg0: typing.SupportsFloat) -> None:
|
|
3558
|
+
pass
|
|
3559
|
+
@property
|
|
3560
|
+
def y(self) -> float:
|
|
3561
|
+
"""
|
|
3562
|
+
:type: float
|
|
3563
|
+
"""
|
|
3564
|
+
@y.setter
|
|
3565
|
+
def y(self, arg0: typing.SupportsFloat) -> None:
|
|
3566
|
+
pass
|
|
3567
|
+
pass
|
|
3568
|
+
class Vec2List():
|
|
3569
|
+
"""
|
|
3570
|
+
Thin wrapper over a std::vector<ImVec2>
|
|
3571
|
+
"""
|
|
3572
|
+
def __getitem__(self, index: typing.SupportsInt) -> ImVec2: ...
|
|
3573
|
+
@typing.overload
|
|
3574
|
+
def __init__(self) -> None: ...
|
|
3575
|
+
@typing.overload
|
|
3576
|
+
def __init__(self, vals: collections.abc.Sequence[ImVec2] = []) -> None: ...
|
|
3577
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
3578
|
+
def __len__(self) -> int: ...
|
|
3579
|
+
def __setitem__(self, index: typing.SupportsInt, val: ImVec2) -> None: ...
|
|
3580
|
+
def append(self, val: ImVec2) -> None:
|
|
3581
|
+
"""
|
|
3582
|
+
Append a value to the end
|
|
3583
|
+
"""
|
|
3584
|
+
def clear(self) -> None: ...
|
|
3585
|
+
def pop(self) -> ImVec2:
|
|
3586
|
+
"""
|
|
3587
|
+
Pop a value from the end
|
|
3588
|
+
"""
|
|
3589
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
3590
|
+
"""
|
|
3591
|
+
Resize the vector, dropping any lost values
|
|
3592
|
+
"""
|
|
3593
|
+
pass
|
|
3594
|
+
class Vec4():
|
|
3595
|
+
@typing.overload
|
|
3596
|
+
def __init__(self) -> None: ...
|
|
3597
|
+
@typing.overload
|
|
3598
|
+
def __init__(self, x: typing.SupportsFloat, y: typing.SupportsFloat, z: typing.SupportsFloat, w: typing.SupportsFloat) -> None: ...
|
|
3599
|
+
def __str__(self) -> str: ...
|
|
3600
|
+
@property
|
|
3601
|
+
def w(self) -> float:
|
|
3602
|
+
"""
|
|
3603
|
+
:type: float
|
|
3604
|
+
"""
|
|
3605
|
+
@w.setter
|
|
3606
|
+
def w(self, arg0: typing.SupportsFloat) -> None:
|
|
3607
|
+
pass
|
|
3608
|
+
@property
|
|
3609
|
+
def x(self) -> float:
|
|
3610
|
+
"""
|
|
3611
|
+
:type: float
|
|
3612
|
+
"""
|
|
3613
|
+
@x.setter
|
|
3614
|
+
def x(self, arg0: typing.SupportsFloat) -> None:
|
|
3615
|
+
pass
|
|
3616
|
+
@property
|
|
3617
|
+
def y(self) -> float:
|
|
3618
|
+
"""
|
|
3619
|
+
:type: float
|
|
3620
|
+
"""
|
|
3621
|
+
@y.setter
|
|
3622
|
+
def y(self, arg0: typing.SupportsFloat) -> None:
|
|
3623
|
+
pass
|
|
3624
|
+
@property
|
|
3625
|
+
def z(self) -> float:
|
|
3626
|
+
"""
|
|
3627
|
+
:type: float
|
|
3628
|
+
"""
|
|
3629
|
+
@z.setter
|
|
3630
|
+
def z(self, arg0: typing.SupportsFloat) -> None:
|
|
3631
|
+
pass
|
|
3632
|
+
pass
|
|
3633
|
+
class Viewport():
|
|
3634
|
+
def GetCenter(self) -> Vec2: ...
|
|
3635
|
+
def GetWorkCenter(self) -> Vec2: ...
|
|
3636
|
+
@property
|
|
3637
|
+
def Flags(self) -> int:
|
|
3638
|
+
"""
|
|
3639
|
+
:type: int
|
|
3640
|
+
"""
|
|
3641
|
+
@Flags.setter
|
|
3642
|
+
def Flags(self, arg0: typing.SupportsInt) -> None:
|
|
3643
|
+
pass
|
|
3644
|
+
@property
|
|
3645
|
+
def Pos(self) -> Vec2:
|
|
3646
|
+
"""
|
|
3647
|
+
:type: Vec2
|
|
3648
|
+
"""
|
|
3649
|
+
@Pos.setter
|
|
3650
|
+
def Pos(self, arg0: Vec2) -> None:
|
|
3651
|
+
pass
|
|
3652
|
+
@property
|
|
3653
|
+
def Size(self) -> Vec2:
|
|
3654
|
+
"""
|
|
3655
|
+
:type: Vec2
|
|
3656
|
+
"""
|
|
3657
|
+
@Size.setter
|
|
3658
|
+
def Size(self, arg0: Vec2) -> None:
|
|
3659
|
+
pass
|
|
3660
|
+
@property
|
|
3661
|
+
def WorkPos(self) -> Vec2:
|
|
3662
|
+
"""
|
|
3663
|
+
:type: Vec2
|
|
3664
|
+
"""
|
|
3665
|
+
@WorkPos.setter
|
|
3666
|
+
def WorkPos(self, arg0: Vec2) -> None:
|
|
3667
|
+
pass
|
|
3668
|
+
@property
|
|
3669
|
+
def WorkSize(self) -> Vec2:
|
|
3670
|
+
"""
|
|
3671
|
+
:type: Vec2
|
|
3672
|
+
"""
|
|
3673
|
+
@WorkSize.setter
|
|
3674
|
+
def WorkSize(self, arg0: Vec2) -> None:
|
|
3675
|
+
pass
|
|
3676
|
+
pass
|
|
3677
|
+
class ViewportFlags():
|
|
3678
|
+
IsPlatformMonitor = 2
|
|
3679
|
+
IsPlatformWindow = 1
|
|
3680
|
+
None_ = 0
|
|
3681
|
+
OwnedByApp = 4
|
|
3682
|
+
pass
|
|
3683
|
+
class WCharList():
|
|
3684
|
+
"""
|
|
3685
|
+
Thin wrapper over a std::vector<ImWchar>
|
|
3686
|
+
"""
|
|
3687
|
+
def __getitem__(self, index: typing.SupportsInt) -> int: ...
|
|
3688
|
+
@typing.overload
|
|
3689
|
+
def __init__(self) -> None: ...
|
|
3690
|
+
@typing.overload
|
|
3691
|
+
def __init__(self, vals: collections.abc.Sequence[typing.SupportsInt] = []) -> None: ...
|
|
3692
|
+
def __iter__(self) -> collections.abc.typing.Iterator: ...
|
|
3693
|
+
def __len__(self) -> int: ...
|
|
3694
|
+
def __setitem__(self, index: typing.SupportsInt, val: typing.SupportsInt) -> None: ...
|
|
3695
|
+
def append(self, val: typing.SupportsInt) -> None:
|
|
3696
|
+
"""
|
|
3697
|
+
Append a value to the end
|
|
3698
|
+
"""
|
|
3699
|
+
def clear(self) -> None: ...
|
|
3700
|
+
def pop(self) -> int:
|
|
3701
|
+
"""
|
|
3702
|
+
Pop a value from the end
|
|
3703
|
+
"""
|
|
3704
|
+
def resize(self, size: typing.SupportsInt) -> None:
|
|
3705
|
+
"""
|
|
3706
|
+
Resize the vector, dropping any lost values
|
|
3707
|
+
"""
|
|
3708
|
+
pass
|
|
3709
|
+
class WindowFlags():
|
|
3710
|
+
AlwaysAutoResize = 64
|
|
3711
|
+
AlwaysHorizontalScrollbar = 32768
|
|
3712
|
+
AlwaysVerticalScrollbar = 16384
|
|
3713
|
+
HorizontalScrollbar = 2048
|
|
3714
|
+
MenuBar = 1024
|
|
3715
|
+
NoBackground = 128
|
|
3716
|
+
NoBringToFrontOnFocus = 8192
|
|
3717
|
+
NoCollapse = 32
|
|
3718
|
+
NoDecoration = 43
|
|
3719
|
+
NoFocusOnAppearing = 4096
|
|
3720
|
+
NoInputs = 197120
|
|
3721
|
+
NoMouseInputs = 512
|
|
3722
|
+
NoMove = 4
|
|
3723
|
+
NoNav = 196608
|
|
3724
|
+
NoNavFocus = 131072
|
|
3725
|
+
NoNavInputs = 65536
|
|
3726
|
+
NoResize = 2
|
|
3727
|
+
NoSavedSettings = 256
|
|
3728
|
+
NoScrollWithMouse = 16
|
|
3729
|
+
NoScrollbar = 8
|
|
3730
|
+
NoTitleBar = 1
|
|
3731
|
+
None_ = 0
|
|
3732
|
+
UnsavedDocument = 262144
|
|
3733
|
+
pass
|
|
3734
|
+
def AcceptDragDropPayload(type: str, flags: typing.SupportsInt = 0) -> ImGuiPayload:
|
|
3735
|
+
pass
|
|
3736
|
+
def AlignTextToFramePadding() -> None:
|
|
3737
|
+
pass
|
|
3738
|
+
def ArrowButton(str_id: str, dir: typing.SupportsInt) -> bool:
|
|
3739
|
+
pass
|
|
3740
|
+
def Begin(name: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
|
|
3741
|
+
pass
|
|
3742
|
+
@typing.overload
|
|
3743
|
+
def BeginChild(id: typing.SupportsInt, size: Vec2 = Vec2(0, 0), child_flags: typing.SupportsInt = 0, window_flags: typing.SupportsInt = 0) -> bool:
|
|
3744
|
+
pass
|
|
3745
|
+
@typing.overload
|
|
3746
|
+
def BeginChild(str_id: str, size: Vec2 = Vec2(0, 0), child_flags: typing.SupportsInt = 0, window_flags: typing.SupportsInt = 0) -> bool:
|
|
3747
|
+
pass
|
|
3748
|
+
def BeginCombo(label: str, preview_value: str, flags: typing.SupportsInt = 0) -> bool:
|
|
3749
|
+
pass
|
|
3750
|
+
def BeginDisabled(disabled: bool = True) -> None:
|
|
3751
|
+
pass
|
|
3752
|
+
def BeginDragDropSource(flags: typing.SupportsInt = 0) -> bool:
|
|
3753
|
+
pass
|
|
3754
|
+
def BeginDragDropTarget() -> bool:
|
|
3755
|
+
pass
|
|
3756
|
+
def BeginGroup() -> None:
|
|
3757
|
+
pass
|
|
3758
|
+
def BeginItemTooltip() -> bool:
|
|
3759
|
+
pass
|
|
3760
|
+
def BeginListBox(label: str, size: Vec2 = Vec2(0, 0)) -> bool:
|
|
3761
|
+
pass
|
|
3762
|
+
def BeginMainMenuBar() -> bool:
|
|
3763
|
+
pass
|
|
3764
|
+
def BeginMenu(label: str, enabled: bool = True) -> bool:
|
|
3765
|
+
pass
|
|
3766
|
+
def BeginMenuBar() -> bool:
|
|
3767
|
+
pass
|
|
3768
|
+
def BeginPopup(str_id: str, flags: typing.SupportsInt = 0) -> bool:
|
|
3769
|
+
pass
|
|
3770
|
+
def BeginPopupContextItem(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
|
|
3771
|
+
pass
|
|
3772
|
+
def BeginPopupContextVoid(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
|
|
3773
|
+
pass
|
|
3774
|
+
def BeginPopupContextWindow(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> bool:
|
|
3775
|
+
pass
|
|
3776
|
+
def BeginPopupModal(name: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
|
|
3777
|
+
pass
|
|
3778
|
+
def BeginTabBar(str_id: str, flags: typing.SupportsInt = 0) -> bool:
|
|
3779
|
+
pass
|
|
3780
|
+
def BeginTabItem(label: str, p_open: typing.Optional[BoolRef] = None, flags: typing.SupportsInt = 0) -> bool:
|
|
3781
|
+
pass
|
|
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:
|
|
3783
|
+
pass
|
|
3784
|
+
def BeginTooltip() -> bool:
|
|
3785
|
+
pass
|
|
3786
|
+
def Bullet() -> None:
|
|
3787
|
+
pass
|
|
3788
|
+
def BulletText(text: str) -> None:
|
|
3789
|
+
pass
|
|
3790
|
+
def Button(label: str, size: Vec2 = Vec2(0, 0)) -> bool:
|
|
3791
|
+
pass
|
|
3792
|
+
def CalcItemWidth() -> float:
|
|
3793
|
+
pass
|
|
3794
|
+
def CalcTextSize(text: str, hide_text_after_double_hash: bool = False, wrap_width: typing.SupportsFloat = -1.0) -> Vec2:
|
|
3795
|
+
pass
|
|
3796
|
+
def CheckBox(label: str, cur_state: BoolRef) -> bool:
|
|
3797
|
+
pass
|
|
3798
|
+
def CheckBoxFlags(label: str, cur_flags: IntRef, flags_value: typing.SupportsInt) -> bool:
|
|
3799
|
+
pass
|
|
3800
|
+
def CloseCurrentPopup() -> None:
|
|
3801
|
+
pass
|
|
3802
|
+
@typing.overload
|
|
3803
|
+
def CollapsingHeader(label: str, flags: typing.SupportsInt = 0) -> bool:
|
|
3804
|
+
pass
|
|
3805
|
+
@typing.overload
|
|
3806
|
+
def CollapsingHeader(label: str, p_visible: BoolRef, flags: typing.SupportsInt = 0) -> bool:
|
|
3807
|
+
pass
|
|
3808
|
+
def ColorButton(desc_id: str, col: Vec4, flags: typing.SupportsInt = 0, size: Vec2 = Vec2(0, 0)) -> bool:
|
|
3809
|
+
pass
|
|
3810
|
+
def ColorConvertFloat4ToU32(inColor: Vec4) -> int:
|
|
3811
|
+
pass
|
|
3812
|
+
def ColorConvertHSVtoRGB(h: typing.SupportsFloat, s: typing.SupportsFloat, v: typing.SupportsFloat) -> tuple:
|
|
3813
|
+
pass
|
|
3814
|
+
def ColorConvertRGBtoHSV(r: typing.SupportsFloat, g: typing.SupportsFloat, b: typing.SupportsFloat) -> tuple:
|
|
3815
|
+
pass
|
|
3816
|
+
def ColorConvertU32ToFloat4(inColor: typing.SupportsInt) -> Vec4:
|
|
3817
|
+
pass
|
|
3818
|
+
def ColorEdit3(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
|
|
3819
|
+
pass
|
|
3820
|
+
def ColorEdit4(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
|
|
3821
|
+
pass
|
|
3822
|
+
def ColorPicker3(label: str, col: Vec4, flags: typing.SupportsInt = 0) -> bool:
|
|
3823
|
+
pass
|
|
3824
|
+
def ColorPicker4(label: str, col: Vec4, flags: typing.SupportsInt = 0, ref_col: typing.Optional[Vec4] = None) -> bool:
|
|
3825
|
+
pass
|
|
3826
|
+
def CreateContext(shared_font_atlas: typing.Optional[ImFontAtlas] = None) -> Context:
|
|
3827
|
+
pass
|
|
3828
|
+
def DebugFlashStyleColor(idx: typing.SupportsInt) -> None:
|
|
3829
|
+
pass
|
|
3830
|
+
def DebugStartItemPicker() -> None:
|
|
3831
|
+
pass
|
|
3832
|
+
def DebugTextEncoding(text: str) -> None:
|
|
3833
|
+
pass
|
|
3834
|
+
def DestroyContext(ctx: typing.Optional[Context] = None) -> None:
|
|
3835
|
+
pass
|
|
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:
|
|
3837
|
+
pass
|
|
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:
|
|
3839
|
+
pass
|
|
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:
|
|
3841
|
+
pass
|
|
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:
|
|
3843
|
+
pass
|
|
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:
|
|
3845
|
+
pass
|
|
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:
|
|
3847
|
+
pass
|
|
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:
|
|
3849
|
+
pass
|
|
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:
|
|
3851
|
+
pass
|
|
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:
|
|
3853
|
+
pass
|
|
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:
|
|
3855
|
+
pass
|
|
3856
|
+
def Dummy(size: Vec2) -> None:
|
|
3857
|
+
pass
|
|
3858
|
+
def End() -> None:
|
|
3859
|
+
pass
|
|
3860
|
+
def EndChild() -> None:
|
|
3861
|
+
pass
|
|
3862
|
+
def EndCombo() -> None:
|
|
3863
|
+
pass
|
|
3864
|
+
def EndDisabled() -> None:
|
|
3865
|
+
pass
|
|
3866
|
+
def EndDragDropSource() -> None:
|
|
3867
|
+
pass
|
|
3868
|
+
def EndDragDropTarget() -> None:
|
|
3869
|
+
pass
|
|
3870
|
+
def EndFrame() -> None:
|
|
3871
|
+
pass
|
|
3872
|
+
def EndGroup() -> None:
|
|
3873
|
+
pass
|
|
3874
|
+
def EndListBox() -> None:
|
|
3875
|
+
pass
|
|
3876
|
+
def EndMainMenuBar() -> None:
|
|
3877
|
+
pass
|
|
3878
|
+
def EndMenu() -> None:
|
|
3879
|
+
pass
|
|
3880
|
+
def EndMenuBar() -> None:
|
|
3881
|
+
pass
|
|
3882
|
+
def EndPopup() -> None:
|
|
3883
|
+
pass
|
|
3884
|
+
def EndTabBar() -> None:
|
|
3885
|
+
pass
|
|
3886
|
+
def EndTabItem() -> None:
|
|
3887
|
+
pass
|
|
3888
|
+
def EndTable() -> None:
|
|
3889
|
+
pass
|
|
3890
|
+
def EndTooltip() -> None:
|
|
3891
|
+
pass
|
|
3892
|
+
def GetBackgroundDrawList() -> ImDrawList:
|
|
3893
|
+
pass
|
|
3894
|
+
def GetClipboardText() -> str:
|
|
3895
|
+
pass
|
|
3896
|
+
@typing.overload
|
|
3897
|
+
def GetColorU32(col: Vec4) -> int:
|
|
3898
|
+
pass
|
|
3899
|
+
@typing.overload
|
|
3900
|
+
def GetColorU32(col: typing.SupportsInt, alpha_mul: typing.SupportsFloat = 1.0) -> int:
|
|
3901
|
+
pass
|
|
3902
|
+
@typing.overload
|
|
3903
|
+
def GetColorU32(idx: typing.SupportsInt, alpha_mul: typing.SupportsFloat = 1.0) -> int:
|
|
3904
|
+
pass
|
|
3905
|
+
def GetContentRegionAvail() -> Vec2:
|
|
3906
|
+
pass
|
|
3907
|
+
def GetCurrentContext() -> Context:
|
|
3908
|
+
pass
|
|
3909
|
+
def GetCursorPos() -> Vec2:
|
|
3910
|
+
pass
|
|
3911
|
+
def GetCursorPosX() -> float:
|
|
3912
|
+
pass
|
|
3913
|
+
def GetCursorPosY() -> float:
|
|
3914
|
+
pass
|
|
3915
|
+
def GetCursorScreenPos() -> Vec2:
|
|
3916
|
+
pass
|
|
3917
|
+
def GetCursorStartPos() -> Vec2:
|
|
3918
|
+
pass
|
|
3919
|
+
def GetDragDropPayload() -> ImGuiPayload:
|
|
3920
|
+
pass
|
|
3921
|
+
def GetDrawData() -> DrawData:
|
|
3922
|
+
pass
|
|
3923
|
+
def GetDrawListSharedData() -> ImDrawListSharedData:
|
|
3924
|
+
pass
|
|
3925
|
+
def GetFont() -> ImFont:
|
|
3926
|
+
pass
|
|
3927
|
+
def GetFontSize() -> float:
|
|
3928
|
+
pass
|
|
3929
|
+
def GetFontTexUvWhitePixel() -> Vec2:
|
|
3930
|
+
pass
|
|
3931
|
+
def GetForegroundDrawList() -> ImDrawList:
|
|
3932
|
+
pass
|
|
3933
|
+
def GetFrameCount() -> int:
|
|
3934
|
+
pass
|
|
3935
|
+
def GetFrameHeight() -> float:
|
|
3936
|
+
pass
|
|
3937
|
+
def GetFrameHeightWithSpacing() -> float:
|
|
3938
|
+
pass
|
|
3939
|
+
@typing.overload
|
|
3940
|
+
def GetID(int_id: typing.SupportsInt) -> int:
|
|
3941
|
+
pass
|
|
3942
|
+
@typing.overload
|
|
3943
|
+
def GetID(ptr_id: types.CapsuleType) -> int:
|
|
3944
|
+
pass
|
|
3945
|
+
@typing.overload
|
|
3946
|
+
def GetID(str_id: str) -> int:
|
|
3947
|
+
pass
|
|
3948
|
+
@typing.overload
|
|
3949
|
+
def GetID(str_id_begin: str, str_id_end: str) -> int:
|
|
3950
|
+
pass
|
|
3951
|
+
def GetIO() -> IO:
|
|
3952
|
+
pass
|
|
3953
|
+
def GetItemID() -> int:
|
|
3954
|
+
pass
|
|
3955
|
+
def GetItemRectMax() -> Vec2:
|
|
3956
|
+
pass
|
|
3957
|
+
def GetItemRectMin() -> Vec2:
|
|
3958
|
+
pass
|
|
3959
|
+
def GetItemRectSize() -> Vec2:
|
|
3960
|
+
pass
|
|
3961
|
+
def GetKeyName(key: ImKey) -> str:
|
|
3962
|
+
pass
|
|
3963
|
+
def GetKeyPressedAmount(key: ImKey, repeat_delay: typing.SupportsFloat, rate: typing.SupportsFloat) -> int:
|
|
3964
|
+
pass
|
|
3965
|
+
def GetMainViewport() -> Viewport:
|
|
3966
|
+
pass
|
|
3967
|
+
def GetMouseCursor() -> int:
|
|
3968
|
+
pass
|
|
3969
|
+
def GetMouseDragDelta(button: typing.SupportsInt = 0, locl_threshold: typing.SupportsFloat = -1.0) -> Vec2:
|
|
3970
|
+
pass
|
|
3971
|
+
def GetMousePos() -> Vec2:
|
|
3972
|
+
pass
|
|
3973
|
+
def GetMousePosOnOpeningCurrentPopup() -> Vec2:
|
|
3974
|
+
pass
|
|
3975
|
+
def GetScrollMaxX() -> float:
|
|
3976
|
+
pass
|
|
3977
|
+
def GetScrollMaxY() -> float:
|
|
3978
|
+
pass
|
|
3979
|
+
def GetScrollX() -> float:
|
|
3980
|
+
pass
|
|
3981
|
+
def GetScrollY() -> float:
|
|
3982
|
+
pass
|
|
3983
|
+
def GetStateStorage() -> ImGuiStorage:
|
|
3984
|
+
pass
|
|
3985
|
+
def GetStyle() -> Style:
|
|
3986
|
+
pass
|
|
3987
|
+
def GetStyleColorName(idx: typing.SupportsInt) -> str:
|
|
3988
|
+
pass
|
|
3989
|
+
def GetStyleColorVec4(idx: typing.SupportsInt) -> Vec4:
|
|
3990
|
+
pass
|
|
3991
|
+
def GetTextLineHeight() -> float:
|
|
3992
|
+
pass
|
|
3993
|
+
def GetTextLineHeightWithSpacing() -> float:
|
|
3994
|
+
pass
|
|
3995
|
+
def GetTime() -> float:
|
|
3996
|
+
pass
|
|
3997
|
+
def GetTreeNodeToLabelSpacing() -> float:
|
|
3998
|
+
pass
|
|
3999
|
+
def GetVersion() -> str:
|
|
4000
|
+
pass
|
|
4001
|
+
def GetWindowDrawList() -> ImDrawList:
|
|
4002
|
+
pass
|
|
4003
|
+
def GetWindowHeight() -> float:
|
|
4004
|
+
pass
|
|
4005
|
+
def GetWindowPos() -> Vec2:
|
|
4006
|
+
pass
|
|
4007
|
+
def GetWindowSize() -> Vec2:
|
|
4008
|
+
pass
|
|
4009
|
+
def GetWindowWidth() -> float:
|
|
4010
|
+
pass
|
|
4011
|
+
def Image(texID: Texture, size: Vec2, uv0: Vec2 = Vec2(0, 0), uv1: Vec2 = Vec2(1, 1)) -> None:
|
|
4012
|
+
pass
|
|
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:
|
|
4014
|
+
pass
|
|
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:
|
|
4018
|
+
pass
|
|
4019
|
+
def InitContextForGLFW(window: types.CapsuleType, glsl_version: typing.Optional[str] = None) -> None:
|
|
4020
|
+
pass
|
|
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:
|
|
4022
|
+
"""
|
|
4023
|
+
Input for a single float value
|
|
4024
|
+
"""
|
|
4025
|
+
def InputFloat2(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4026
|
+
"""
|
|
4027
|
+
Input for a pair of float values
|
|
4028
|
+
"""
|
|
4029
|
+
def InputFloat3(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4030
|
+
"""
|
|
4031
|
+
Input for a triplet of floats
|
|
4032
|
+
"""
|
|
4033
|
+
def InputFloat4(label: str, v: FloatList, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4034
|
+
"""
|
|
4035
|
+
Input for four floats
|
|
4036
|
+
"""
|
|
4037
|
+
def InputInt(label: str, v: IntRef, step: typing.SupportsInt = 1, step_fast: typing.SupportsInt = 100, flags: typing.SupportsInt = 0) -> bool:
|
|
4038
|
+
"""
|
|
4039
|
+
Input for a single int
|
|
4040
|
+
"""
|
|
4041
|
+
def InputInt2(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
|
|
4042
|
+
"""
|
|
4043
|
+
Input for a pair of ints
|
|
4044
|
+
"""
|
|
4045
|
+
def InputInt3(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
|
|
4046
|
+
"""
|
|
4047
|
+
Input for a triplet of ints
|
|
4048
|
+
"""
|
|
4049
|
+
def InputInt4(label: str, v: IntList, flags: typing.SupportsInt = 0) -> bool:
|
|
4050
|
+
"""
|
|
4051
|
+
Input for four ints
|
|
4052
|
+
"""
|
|
4053
|
+
def InputText(label: str, value: StrRef, flags: typing.SupportsInt = 0) -> bool:
|
|
4054
|
+
"""
|
|
4055
|
+
Single line text input
|
|
4056
|
+
"""
|
|
4057
|
+
def InputTextMultiline(label: str, value: StrRef, size: Vec2 = Vec2(0, 0), flags: typing.SupportsInt = 0) -> bool:
|
|
4058
|
+
"""
|
|
4059
|
+
Multiline text input
|
|
4060
|
+
"""
|
|
4061
|
+
def InputTextWithHint(label: str, hint: str, value: StrRef, flags: typing.SupportsInt = 0) -> bool:
|
|
4062
|
+
"""
|
|
4063
|
+
Single line text input with placeholder hint
|
|
4064
|
+
"""
|
|
4065
|
+
def InvisibleButton(str_id: str, size: Vec2, flags: typing.SupportsInt = 0) -> bool:
|
|
4066
|
+
pass
|
|
4067
|
+
def IsAnyItemActive() -> bool:
|
|
4068
|
+
pass
|
|
4069
|
+
def IsAnyItemFocused() -> bool:
|
|
4070
|
+
pass
|
|
4071
|
+
def IsAnyItemHovered() -> bool:
|
|
4072
|
+
pass
|
|
4073
|
+
def IsItemActivated() -> bool:
|
|
4074
|
+
pass
|
|
4075
|
+
def IsItemActive() -> bool:
|
|
4076
|
+
pass
|
|
4077
|
+
def IsItemClicked(mouse_button: typing.SupportsInt = 0) -> bool:
|
|
4078
|
+
pass
|
|
4079
|
+
def IsItemDeactivated() -> bool:
|
|
4080
|
+
pass
|
|
4081
|
+
def IsItemDeactivatedAfterEdit() -> bool:
|
|
4082
|
+
pass
|
|
4083
|
+
def IsItemEdited() -> bool:
|
|
4084
|
+
pass
|
|
4085
|
+
def IsItemFocused() -> bool:
|
|
4086
|
+
pass
|
|
4087
|
+
def IsItemHovered(flags: typing.SupportsInt = 0) -> bool:
|
|
4088
|
+
pass
|
|
4089
|
+
def IsItemToggledOpen() -> bool:
|
|
4090
|
+
pass
|
|
4091
|
+
def IsItemVisible() -> bool:
|
|
4092
|
+
pass
|
|
4093
|
+
def IsKeyChordPressed(key_chord: typing.SupportsInt) -> bool:
|
|
4094
|
+
pass
|
|
4095
|
+
def IsKeyDown(key: ImKey) -> bool:
|
|
4096
|
+
pass
|
|
4097
|
+
def IsKeyPressed(key: ImKey, repeat: bool = True) -> bool:
|
|
4098
|
+
pass
|
|
4099
|
+
def IsKeyReleased(key: ImKey) -> bool:
|
|
4100
|
+
pass
|
|
4101
|
+
def IsMouseClicked(button: typing.SupportsInt, repeat: bool) -> bool:
|
|
4102
|
+
pass
|
|
4103
|
+
def IsMouseDoubleClicked(button: typing.SupportsInt) -> bool:
|
|
4104
|
+
pass
|
|
4105
|
+
def IsMouseDown(button: typing.SupportsInt) -> bool:
|
|
4106
|
+
pass
|
|
4107
|
+
def IsMouseDragging(button: typing.SupportsInt, lock_threshold: typing.SupportsFloat = -1.0) -> bool:
|
|
4108
|
+
pass
|
|
4109
|
+
def IsMouseHoveringRect(r_min: Vec2, r_max: Vec2, clip: bool = True) -> bool:
|
|
4110
|
+
pass
|
|
4111
|
+
def IsMousePosValid(mouse_pos: typing.Optional[Vec2] = None) -> bool:
|
|
4112
|
+
pass
|
|
4113
|
+
def IsMouseReleased(button: typing.SupportsInt) -> bool:
|
|
4114
|
+
pass
|
|
4115
|
+
def IsMouseReleasedWithDelay(button: typing.SupportsInt, delay: typing.SupportsFloat) -> bool:
|
|
4116
|
+
pass
|
|
4117
|
+
def IsPopupOpen(str_id: str, flags: typing.SupportsInt = 0) -> bool:
|
|
4118
|
+
pass
|
|
4119
|
+
@typing.overload
|
|
4120
|
+
def IsRectVisible(rect_min: Vec2, rect_max: Vec2) -> bool:
|
|
4121
|
+
pass
|
|
4122
|
+
@typing.overload
|
|
4123
|
+
def IsRectVisible(size: Vec2) -> bool:
|
|
4124
|
+
pass
|
|
4125
|
+
def IsWindowAppearing() -> bool:
|
|
4126
|
+
pass
|
|
4127
|
+
def IsWindowCollapsed() -> bool:
|
|
4128
|
+
pass
|
|
4129
|
+
def IsWindowFocused(flags: typing.SupportsInt = 0) -> bool:
|
|
4130
|
+
pass
|
|
4131
|
+
def IsWindowHovered(flags: typing.SupportsInt = 0) -> bool:
|
|
4132
|
+
pass
|
|
4133
|
+
def LabelText(label: str, text: str) -> None:
|
|
4134
|
+
pass
|
|
4135
|
+
def LoadIniSettingsFromDisk(filename: str) -> None:
|
|
4136
|
+
pass
|
|
4137
|
+
def LoadIniSettingsFromMemory(data: str) -> None:
|
|
4138
|
+
pass
|
|
4139
|
+
def LoadTexture(data: bytes, width: typing.SupportsInt, height: typing.SupportsInt, numChannels: typing.SupportsInt = 3, mipMapLevel: typing.SupportsInt = 0) -> Texture:
|
|
4140
|
+
pass
|
|
4141
|
+
def LoadTextureFile(filename: str, requestedChannels: typing.SupportsInt = 0, mipMapLevel: typing.SupportsInt = 0) -> Texture:
|
|
4142
|
+
pass
|
|
4143
|
+
def LogButtons() -> None:
|
|
4144
|
+
pass
|
|
4145
|
+
def LogFinish() -> None:
|
|
4146
|
+
pass
|
|
4147
|
+
def LogText(text: str) -> None:
|
|
4148
|
+
pass
|
|
4149
|
+
def LogToClipboard(auto_open_depth: typing.SupportsInt = -1) -> None:
|
|
4150
|
+
pass
|
|
4151
|
+
def LogToFile(auto_open_depth: typing.SupportsInt = -1, filename: typing.Optional[str] = None) -> None:
|
|
4152
|
+
pass
|
|
4153
|
+
def LogToTTY(auto_open_depth: typing.SupportsInt = -1) -> None:
|
|
4154
|
+
pass
|
|
4155
|
+
def MenuItem(label: str, shortcut: typing.Optional[str] = None, selected: bool = False, enabled: bool = True) -> bool:
|
|
4156
|
+
pass
|
|
4157
|
+
def NewFrame() -> None:
|
|
4158
|
+
pass
|
|
4159
|
+
def NewLine() -> None:
|
|
4160
|
+
pass
|
|
4161
|
+
@typing.overload
|
|
4162
|
+
def OpenPopup(id: typing.SupportsInt, popup_flags: typing.SupportsInt = 0) -> None:
|
|
4163
|
+
pass
|
|
4164
|
+
@typing.overload
|
|
4165
|
+
def OpenPopup(str_id: str, popup_flags: typing.SupportsInt = 0) -> None:
|
|
4166
|
+
pass
|
|
4167
|
+
def OpenPopupOnItemClick(str_id: typing.Optional[str] = None, popup_flags: typing.SupportsInt = 1) -> None:
|
|
4168
|
+
pass
|
|
4169
|
+
def PopClipRect() -> None:
|
|
4170
|
+
pass
|
|
4171
|
+
def PopFont() -> None:
|
|
4172
|
+
pass
|
|
4173
|
+
def PopID() -> None:
|
|
4174
|
+
pass
|
|
4175
|
+
def PopItemFlag() -> None:
|
|
4176
|
+
pass
|
|
4177
|
+
def PopItemWidth() -> None:
|
|
4178
|
+
pass
|
|
4179
|
+
def PopStyleColor(arg0: typing.SupportsInt) -> None:
|
|
4180
|
+
pass
|
|
4181
|
+
def PopStyleVar(count: typing.SupportsInt = 1) -> None:
|
|
4182
|
+
pass
|
|
4183
|
+
def PopTextWrapPos() -> None:
|
|
4184
|
+
pass
|
|
4185
|
+
def ProgressBar(fraction: typing.SupportsFloat, size_arg: Vec2 = Vec2(-FLT_MIN, 0), overlay: typing.Optional[str] = None) -> None:
|
|
4186
|
+
pass
|
|
4187
|
+
def PushClipRect(clip_rect_min: Vec2, clip_rect_max: Vec2, intersect_with_current_clip_rect: bool) -> None:
|
|
4188
|
+
pass
|
|
4189
|
+
def PushFont(font: ImFont, font_size_base_unscaled: typing.SupportsFloat) -> None:
|
|
4190
|
+
pass
|
|
4191
|
+
@typing.overload
|
|
4192
|
+
def PushID(int_id: typing.SupportsInt) -> None:
|
|
4193
|
+
pass
|
|
4194
|
+
@typing.overload
|
|
4195
|
+
def PushID(ptr_id: types.CapsuleType) -> None:
|
|
4196
|
+
pass
|
|
4197
|
+
@typing.overload
|
|
4198
|
+
def PushID(str_id: str) -> None:
|
|
4199
|
+
pass
|
|
4200
|
+
@typing.overload
|
|
4201
|
+
def PushID(str_id_begin: str, str_id_end: str) -> None:
|
|
4202
|
+
pass
|
|
4203
|
+
def PushItemFlag(option: typing.SupportsInt, enabled: bool) -> None:
|
|
4204
|
+
pass
|
|
4205
|
+
def PushItemWidth(item_width: typing.SupportsFloat) -> None:
|
|
4206
|
+
pass
|
|
4207
|
+
@typing.overload
|
|
4208
|
+
def PushStyleColor(idx: typing.SupportsInt, col: Vec4) -> None:
|
|
4209
|
+
pass
|
|
4210
|
+
@typing.overload
|
|
4211
|
+
def PushStyleColor(idx: typing.SupportsInt, col: typing.SupportsInt) -> None:
|
|
4212
|
+
pass
|
|
4213
|
+
@typing.overload
|
|
4214
|
+
def PushStyleVar(idx: typing.SupportsInt, val: Vec2) -> None:
|
|
4215
|
+
pass
|
|
4216
|
+
@typing.overload
|
|
4217
|
+
def PushStyleVar(idx: typing.SupportsInt, val: float) -> None:
|
|
4218
|
+
pass
|
|
4219
|
+
def PushStyleVarX(idx: typing.SupportsInt, val: typing.SupportsFloat) -> None:
|
|
4220
|
+
pass
|
|
4221
|
+
def PushStyleVarY(idx: typing.SupportsInt, val: typing.SupportsFloat) -> None:
|
|
4222
|
+
pass
|
|
4223
|
+
def PushTextWrapPos(wrap_local_pos_x: typing.SupportsFloat = 0.0) -> None:
|
|
4224
|
+
pass
|
|
4225
|
+
@typing.overload
|
|
4226
|
+
def RadioButton(label: str, v: IntRef, v_button: typing.SupportsInt) -> bool:
|
|
4227
|
+
"""
|
|
4228
|
+
Create a radio button, returns true if pressed
|
|
4229
|
+
|
|
4230
|
+
|
|
4231
|
+
Shorthand for
|
|
4232
|
+
|
|
4233
|
+
.. code-block:: python
|
|
4234
|
+
|
|
4235
|
+
curButton = 0
|
|
4236
|
+
if imgui.RadioButton("label", curButton == 1):
|
|
4237
|
+
curButton = 1
|
|
4238
|
+
"""
|
|
4239
|
+
@typing.overload
|
|
4240
|
+
def RadioButton(label: str, value: bool) -> bool:
|
|
4241
|
+
pass
|
|
4242
|
+
def Render(window: types.CapsuleType, clear_color: Vec4) -> None:
|
|
4243
|
+
pass
|
|
4244
|
+
def ResetMouseDragDelta(button: typing.SupportsInt = 0) -> None:
|
|
4245
|
+
pass
|
|
4246
|
+
def SameLine(offset_from_start_x: typing.SupportsFloat = 0.0, spacing: typing.SupportsFloat = 1.0) -> None:
|
|
4247
|
+
pass
|
|
4248
|
+
def SaveIniSettingsToDisk(filename: str) -> None:
|
|
4249
|
+
pass
|
|
4250
|
+
def SaveIniSettingsToMemory() -> str:
|
|
4251
|
+
pass
|
|
4252
|
+
def Selectable(label: str, selected: bool = False, flags: typing.SupportsInt = 0, size: Vec2 = Vec2(0, 0)) -> bool:
|
|
4253
|
+
pass
|
|
4254
|
+
def Separator() -> None:
|
|
4255
|
+
pass
|
|
4256
|
+
def SeparatorText(label: str) -> None:
|
|
4257
|
+
pass
|
|
4258
|
+
def SetClipboardText(text: str) -> None:
|
|
4259
|
+
pass
|
|
4260
|
+
def SetColorEditOptions(flags: typing.SupportsInt) -> None:
|
|
4261
|
+
pass
|
|
4262
|
+
def SetCurrentContext(ctx: Context) -> None:
|
|
4263
|
+
pass
|
|
4264
|
+
def SetCursorPos(pos: Vec2) -> None:
|
|
4265
|
+
pass
|
|
4266
|
+
def SetCursorPosX(local_x: typing.SupportsFloat) -> None:
|
|
4267
|
+
pass
|
|
4268
|
+
def SetCursorPosY(local_y: typing.SupportsFloat) -> None:
|
|
4269
|
+
pass
|
|
4270
|
+
def SetCursorScreenPos(arg0: Vec2) -> None:
|
|
4271
|
+
pass
|
|
4272
|
+
def SetDragDropPayload(type: str, data: types.CapsuleType, size: typing.SupportsInt, cond: typing.SupportsInt = 0) -> bool:
|
|
4273
|
+
pass
|
|
4274
|
+
def SetItemDefaultFocus() -> None:
|
|
4275
|
+
pass
|
|
4276
|
+
def SetItemKeyOwner(key: ImKey) -> None:
|
|
4277
|
+
pass
|
|
4278
|
+
def SetItemTooltip(value: str) -> None:
|
|
4279
|
+
pass
|
|
4280
|
+
def SetKeyboardFocusHere(offset: typing.SupportsInt = 0) -> None:
|
|
4281
|
+
pass
|
|
4282
|
+
def SetMouseCursor(cursor_type: typing.SupportsInt) -> None:
|
|
4283
|
+
pass
|
|
4284
|
+
def SetNextFrameWantCaptureKeyboard(want_capture_keyboard: bool) -> None:
|
|
4285
|
+
pass
|
|
4286
|
+
def SetNextFrameWantCaptureMouse(want_capture_mouse: bool) -> None:
|
|
4287
|
+
pass
|
|
4288
|
+
def SetNextItemAllowOverlap() -> None:
|
|
4289
|
+
pass
|
|
4290
|
+
def SetNextItemOpen(is_open: bool, cond: typing.SupportsInt = 0) -> None:
|
|
4291
|
+
pass
|
|
4292
|
+
def SetNextItemShortcut(key_chord: typing.SupportsInt, flags: typing.SupportsInt = 0) -> None:
|
|
4293
|
+
pass
|
|
4294
|
+
def SetNextItemStorageID(storage_id: typing.SupportsInt) -> None:
|
|
4295
|
+
pass
|
|
4296
|
+
def SetNextItemWidth(item_width: typing.SupportsFloat) -> None:
|
|
4297
|
+
pass
|
|
4298
|
+
def SetNextWindowBgAlpha(alpha: typing.SupportsFloat) -> None:
|
|
4299
|
+
pass
|
|
4300
|
+
def SetNextWindowCollapsed(collapsed: bool, cond: typing.SupportsInt = 0) -> None:
|
|
4301
|
+
pass
|
|
4302
|
+
def SetNextWindowContentSize(size: Vec2) -> None:
|
|
4303
|
+
pass
|
|
4304
|
+
def SetNextWindowFocus() -> None:
|
|
4305
|
+
pass
|
|
4306
|
+
def SetNextWindowPos(pos: Vec2, cond: typing.SupportsInt = 0, pivot: Vec2 = Vec2(0, 0)) -> None:
|
|
4307
|
+
pass
|
|
4308
|
+
def SetNextWindowScroll(scroll: Vec2) -> None:
|
|
4309
|
+
pass
|
|
4310
|
+
def SetNextWindowSize(size: Vec2, cond: typing.SupportsInt = 0) -> None:
|
|
4311
|
+
pass
|
|
4312
|
+
def SetScrollFromPosX(local_x: typing.SupportsFloat, center_x_ratio: typing.SupportsFloat = 0.5) -> None:
|
|
4313
|
+
pass
|
|
4314
|
+
def SetScrollFromPosY(local_x: typing.SupportsFloat, center_y_ratio: typing.SupportsFloat = 0.5) -> None:
|
|
4315
|
+
pass
|
|
4316
|
+
def SetScrollHereX(center_x_ratio: typing.SupportsFloat = 0.5) -> None:
|
|
4317
|
+
pass
|
|
4318
|
+
def SetScrollHereY(center_y_ratio: typing.SupportsFloat = 0.5) -> None:
|
|
4319
|
+
pass
|
|
4320
|
+
def SetScrollX(scroll_x: typing.SupportsFloat) -> None:
|
|
4321
|
+
pass
|
|
4322
|
+
def SetScrollY(scroll_y: typing.SupportsFloat) -> None:
|
|
4323
|
+
pass
|
|
4324
|
+
def SetStateStorage(storage: ImGuiStorage) -> None:
|
|
4325
|
+
pass
|
|
4326
|
+
def SetTabItemClosed(tab_or_docked_window_label: str) -> None:
|
|
4327
|
+
pass
|
|
4328
|
+
def SetTooltip(value: str) -> None:
|
|
4329
|
+
pass
|
|
4330
|
+
@typing.overload
|
|
4331
|
+
def SetWindowCollapsed(collapsed: bool, cond: typing.SupportsInt = 0) -> None:
|
|
4332
|
+
pass
|
|
4333
|
+
@typing.overload
|
|
4334
|
+
def SetWindowCollapsed(name: str, collapsed: bool, cond: typing.SupportsInt = 0) -> None:
|
|
4335
|
+
pass
|
|
4336
|
+
@typing.overload
|
|
4337
|
+
def SetWindowFocus() -> None:
|
|
4338
|
+
pass
|
|
4339
|
+
@typing.overload
|
|
4340
|
+
def SetWindowFocus(name: str) -> None:
|
|
4341
|
+
pass
|
|
4342
|
+
@typing.overload
|
|
4343
|
+
def SetWindowPos(name: str, pos: Vec2, cond: typing.SupportsInt = 0) -> None:
|
|
4344
|
+
pass
|
|
4345
|
+
@typing.overload
|
|
4346
|
+
def SetWindowPos(pos: Vec2, cond: typing.SupportsInt = 0) -> None:
|
|
4347
|
+
pass
|
|
4348
|
+
@typing.overload
|
|
4349
|
+
def SetWindowSize(name: str, pos: Vec2, cond: typing.SupportsInt = 0) -> None:
|
|
4350
|
+
pass
|
|
4351
|
+
@typing.overload
|
|
4352
|
+
def SetWindowSize(size: Vec2, cond: typing.SupportsInt = 0) -> None:
|
|
4353
|
+
pass
|
|
4354
|
+
def Shortcut(key_chord: typing.SupportsInt, flags: typing.SupportsInt = 0) -> bool:
|
|
4355
|
+
pass
|
|
4356
|
+
def ShowAboutWindow(p_open: typing.Optional[BoolRef] = None) -> None:
|
|
4357
|
+
pass
|
|
4358
|
+
def ShowDebugLogWindow(p_open: typing.Optional[BoolRef] = None) -> None:
|
|
4359
|
+
pass
|
|
4360
|
+
def ShowDemoWindow(p_open: typing.Optional[BoolRef] = None) -> None:
|
|
4361
|
+
pass
|
|
4362
|
+
def ShowFontSelector(label: str) -> None:
|
|
4363
|
+
pass
|
|
4364
|
+
def ShowMetricsWindow(p_open: typing.Optional[BoolRef] = None) -> None:
|
|
4365
|
+
pass
|
|
4366
|
+
def ShowStackToolWindow(p_open: typing.Optional[BoolRef] = None) -> None:
|
|
4367
|
+
pass
|
|
4368
|
+
def ShowStyleEditor(ref: typing.Optional[Style] = None) -> None:
|
|
4369
|
+
pass
|
|
4370
|
+
def ShowStyleSelector(label: str) -> bool:
|
|
4371
|
+
pass
|
|
4372
|
+
def ShowUserGuide() -> None:
|
|
4373
|
+
pass
|
|
4374
|
+
def Shutdown() -> None:
|
|
4375
|
+
pass
|
|
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:
|
|
4377
|
+
pass
|
|
4378
|
+
def SliderFloat(label: str, v: FloatRef, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4379
|
+
pass
|
|
4380
|
+
def SliderFloat2(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4381
|
+
pass
|
|
4382
|
+
def SliderFloat3(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> bool:
|
|
4383
|
+
pass
|
|
4384
|
+
def SliderFloat4(label: str, v: FloatList, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, format: str = '%.3f', flags: typing.SupportsInt = 0) -> tuple:
|
|
4385
|
+
pass
|
|
4386
|
+
def SliderInt(label: str, v: IntRef, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
|
|
4387
|
+
pass
|
|
4388
|
+
def SliderInt2(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
|
|
4389
|
+
pass
|
|
4390
|
+
def SliderInt3(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
|
|
4391
|
+
pass
|
|
4392
|
+
def SliderInt4(label: str, v: IntList, v_min: typing.SupportsInt, v_max: typing.SupportsInt, format: str = '%d', flags: typing.SupportsInt = 0) -> bool:
|
|
4393
|
+
pass
|
|
4394
|
+
def SmallButton(label: str) -> bool:
|
|
4395
|
+
pass
|
|
4396
|
+
def Spacing() -> None:
|
|
4397
|
+
pass
|
|
4398
|
+
def StyleColorsClassic(dst: typing.Optional[Style] = None) -> None:
|
|
4399
|
+
pass
|
|
4400
|
+
def StyleColorsDark(dst: typing.Optional[Style] = None) -> None:
|
|
4401
|
+
pass
|
|
4402
|
+
def StyleColorsLight(dst: typing.Optional[Style] = None) -> None:
|
|
4403
|
+
pass
|
|
4404
|
+
def TabItemButton(label: str, flags: typing.SupportsInt = 0) -> bool:
|
|
4405
|
+
pass
|
|
4406
|
+
def TableGetColumnCount() -> int:
|
|
4407
|
+
pass
|
|
4408
|
+
def TableGetColumnFlags(column_n: typing.SupportsInt = -1) -> int:
|
|
4409
|
+
pass
|
|
4410
|
+
def TableGetColumnIndex() -> int:
|
|
4411
|
+
pass
|
|
4412
|
+
def TableGetColumnName(column_n: typing.SupportsInt = -1) -> str:
|
|
4413
|
+
pass
|
|
4414
|
+
def TableGetHoveredColumn() -> int:
|
|
4415
|
+
pass
|
|
4416
|
+
def TableGetRowIndex() -> int:
|
|
4417
|
+
pass
|
|
4418
|
+
def TableGetSortSpecs() -> TableSortSpecs:
|
|
4419
|
+
pass
|
|
4420
|
+
def TableHeader(label: str) -> None:
|
|
4421
|
+
pass
|
|
4422
|
+
def TableHeadersRow() -> None:
|
|
4423
|
+
pass
|
|
4424
|
+
def TableNextColumn() -> bool:
|
|
4425
|
+
pass
|
|
4426
|
+
def TableNextRow(row_flags: typing.SupportsInt = 0, mind_row_height: typing.SupportsFloat = 0.0) -> None:
|
|
4427
|
+
pass
|
|
4428
|
+
def TableSetBgColor(target: typing.SupportsInt, color: typing.SupportsInt, column_n: typing.SupportsInt = -1) -> None:
|
|
4429
|
+
pass
|
|
4430
|
+
def TableSetColumnEnabled(column_n: typing.SupportsInt, v: bool) -> None:
|
|
4431
|
+
pass
|
|
4432
|
+
def TableSetColumnIndex(column_n: typing.SupportsInt) -> bool:
|
|
4433
|
+
pass
|
|
4434
|
+
def TableSetupColumn(label: str, flags: typing.SupportsInt = 0, init_width_or_weight: typing.SupportsFloat = 0.0, user_id: typing.SupportsInt = 0) -> None:
|
|
4435
|
+
pass
|
|
4436
|
+
def TableSetupScrollFreeze(cols: typing.SupportsInt, rows: typing.SupportsInt) -> None:
|
|
4437
|
+
pass
|
|
4438
|
+
def Text(text: str) -> None:
|
|
4439
|
+
pass
|
|
4440
|
+
def TextColored(col: Vec4, text: str) -> None:
|
|
4441
|
+
pass
|
|
4442
|
+
def TextDisabled(text: str) -> None:
|
|
4443
|
+
pass
|
|
4444
|
+
def TextLink(label: str) -> bool:
|
|
4445
|
+
pass
|
|
4446
|
+
def TextLinkOpenURL(label: str, url: str) -> bool:
|
|
4447
|
+
pass
|
|
4448
|
+
def TextWrapped(text: str) -> None:
|
|
4449
|
+
pass
|
|
4450
|
+
@typing.overload
|
|
4451
|
+
def TreeNode(label: str) -> bool:
|
|
4452
|
+
pass
|
|
4453
|
+
@typing.overload
|
|
4454
|
+
def TreeNode(str_id: str, fmt: str) -> bool:
|
|
4455
|
+
pass
|
|
4456
|
+
@typing.overload
|
|
4457
|
+
def TreeNodeEx(label: str, flags: typing.SupportsInt = 0) -> bool:
|
|
4458
|
+
pass
|
|
4459
|
+
@typing.overload
|
|
4460
|
+
def TreeNodeEx(str_id: str, flags: typing.SupportsInt, fmt: str) -> bool:
|
|
4461
|
+
pass
|
|
4462
|
+
def TreePop() -> None:
|
|
4463
|
+
pass
|
|
4464
|
+
def TreePush(str_id: str) -> None:
|
|
4465
|
+
pass
|
|
4466
|
+
def Unindent(indent_w: typing.SupportsFloat = 0.0) -> None:
|
|
4467
|
+
pass
|
|
4468
|
+
def UnloadTexture(texture: Texture) -> None:
|
|
4469
|
+
pass
|
|
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:
|
|
4471
|
+
pass
|
|
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:
|
|
4473
|
+
pass
|
|
4474
|
+
FLT_MAX = 3.4028234663852886e+38
|