imgui 1.0.0
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +273 -0
- data/Rakefile +97 -0
- data/api/v1.json +53 -0
- data/ext/CMakeLists.txt +128 -0
- data/ext/Rakefile +31 -0
- data/ext/backend_function_bridge.cpp +180 -0
- data/ext/backend_function_bridge.h +40 -0
- data/ext/build_cimgui.rb +59 -0
- data/ext/extconf.rb +25 -0
- data/ext/glfw_vulkan_bridge.cpp +14 -0
- data/ext/imgui_ruby_build_config.h +17 -0
- data/ext/imgui_ruby_glfw.cpp +73 -0
- data/ext/imgui_ruby_sdl3.cpp +70 -0
- data/ext/imgui_ruby_wgpu.cpp +75 -0
- data/ext/install_cimgui.rb +25 -0
- data/ext/webgpu_function_bridge.cpp +245 -0
- data/generator/api_emitter.rb +164 -0
- data/generator/emitter.rb +317 -0
- data/generator/generate.rb +47 -0
- data/generator/native-dependencies.yml +88 -0
- data/generator/native_dependency_lock.rb +78 -0
- data/generator/native_dependency_snapshot.rb +159 -0
- data/generator/overrides.yml +11 -0
- data/generator/type_mapper.rb +112 -0
- data/generator/update_vendor.rb +30 -0
- data/lib/imgui/api.rb +88 -0
- data/lib/imgui/api_generated.rb +1633 -0
- data/lib/imgui/api_support.rb +144 -0
- data/lib/imgui/backends/glfw.rb +75 -0
- data/lib/imgui/backends/opengl3.rb +44 -0
- data/lib/imgui/backends/sdl3.rb +133 -0
- data/lib/imgui/backends/wgpu.rb +176 -0
- data/lib/imgui/backends.rb +60 -0
- data/lib/imgui/draw_data.rb +43 -0
- data/lib/imgui/dsl.rb +311 -0
- data/lib/imgui/dsl_support.rb +107 -0
- data/lib/imgui/easy_loop.rb +25 -0
- data/lib/imgui/errors.rb +11 -0
- data/lib/imgui/fonts.rb +46 -0
- data/lib/imgui/io.rb +91 -0
- data/lib/imgui/layout.rb +138 -0
- data/lib/imgui/memory_pool.rb +18 -0
- data/lib/imgui/native/enums.rb +2251 -0
- data/lib/imgui/native/functions.rb +1470 -0
- data/lib/imgui/native/structs.rb +1926 -0
- data/lib/imgui/native/typedefs.rb +93 -0
- data/lib/imgui/native.rb +130 -0
- data/lib/imgui/plot/api.rb +273 -0
- data/lib/imgui/plot/native/enums.rb +593 -0
- data/lib/imgui/plot/native/functions.rb +749 -0
- data/lib/imgui/plot/native/structs.rb +363 -0
- data/lib/imgui/plot/native/typedefs.rb +79 -0
- data/lib/imgui/plot.rb +13 -0
- data/lib/imgui/struct_value.rb +33 -0
- data/lib/imgui/style.rb +44 -0
- data/lib/imgui/value.rb +104 -0
- data/lib/imgui/version.rb +5 -0
- data/lib/imgui/widgets.rb +187 -0
- data/lib/imgui.rb +30 -0
- data/rakelib/platform_gem.rake +54 -0
- data/rakelib/source_gem.rake +75 -0
- metadata +129 -0
|
@@ -0,0 +1,593 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# This file is generated by `rake generate`. Do not edit it manually.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
module ImGui
|
|
7
|
+
module Native
|
|
8
|
+
ImAxis_X1 = 0
|
|
9
|
+
ImAxis_X2 = 1
|
|
10
|
+
ImAxis_X3 = 2
|
|
11
|
+
ImAxis_Y1 = 3
|
|
12
|
+
ImAxis_Y2 = 4
|
|
13
|
+
ImAxis_Y3 = 5
|
|
14
|
+
ImAxis_COUNT = 6
|
|
15
|
+
ImPlotAxisFlags_None = 0
|
|
16
|
+
ImPlotAxisFlags_NoLabel = 1
|
|
17
|
+
ImPlotAxisFlags_NoGridLines = 2
|
|
18
|
+
ImPlotAxisFlags_NoTickMarks = 4
|
|
19
|
+
ImPlotAxisFlags_NoTickLabels = 8
|
|
20
|
+
ImPlotAxisFlags_NoInitialFit = 16
|
|
21
|
+
ImPlotAxisFlags_NoMenus = 32
|
|
22
|
+
ImPlotAxisFlags_NoSideSwitch = 64
|
|
23
|
+
ImPlotAxisFlags_NoHighlight = 128
|
|
24
|
+
ImPlotAxisFlags_Opposite = 256
|
|
25
|
+
ImPlotAxisFlags_Foreground = 512
|
|
26
|
+
ImPlotAxisFlags_Invert = 1024
|
|
27
|
+
ImPlotAxisFlags_AutoFit = 2048
|
|
28
|
+
ImPlotAxisFlags_RangeFit = 4096
|
|
29
|
+
ImPlotAxisFlags_PanStretch = 8192
|
|
30
|
+
ImPlotAxisFlags_LockMin = 16384
|
|
31
|
+
ImPlotAxisFlags_LockMax = 32768
|
|
32
|
+
ImPlotAxisFlags_Lock = 49152
|
|
33
|
+
ImPlotAxisFlags_NoDecorations = 15
|
|
34
|
+
ImPlotAxisFlags_AuxDefault = 258
|
|
35
|
+
ImPlotBarGroupsFlags_None = 0
|
|
36
|
+
ImPlotBarGroupsFlags_Horizontal = 1024
|
|
37
|
+
ImPlotBarGroupsFlags_Stacked = 2048
|
|
38
|
+
ImPlotBarsFlags_None = 0
|
|
39
|
+
ImPlotBarsFlags_Horizontal = 1024
|
|
40
|
+
ImPlotBin_Sqrt = -1
|
|
41
|
+
ImPlotBin_Sturges = -2
|
|
42
|
+
ImPlotBin_Rice = -3
|
|
43
|
+
ImPlotBin_Scott = -4
|
|
44
|
+
ImPlotCol_Line = 0
|
|
45
|
+
ImPlotCol_Fill = 1
|
|
46
|
+
ImPlotCol_MarkerOutline = 2
|
|
47
|
+
ImPlotCol_MarkerFill = 3
|
|
48
|
+
ImPlotCol_ErrorBar = 4
|
|
49
|
+
ImPlotCol_FrameBg = 5
|
|
50
|
+
ImPlotCol_PlotBg = 6
|
|
51
|
+
ImPlotCol_PlotBorder = 7
|
|
52
|
+
ImPlotCol_LegendBg = 8
|
|
53
|
+
ImPlotCol_LegendBorder = 9
|
|
54
|
+
ImPlotCol_LegendText = 10
|
|
55
|
+
ImPlotCol_TitleText = 11
|
|
56
|
+
ImPlotCol_InlayText = 12
|
|
57
|
+
ImPlotCol_AxisText = 13
|
|
58
|
+
ImPlotCol_AxisGrid = 14
|
|
59
|
+
ImPlotCol_AxisTick = 15
|
|
60
|
+
ImPlotCol_AxisBg = 16
|
|
61
|
+
ImPlotCol_AxisBgHovered = 17
|
|
62
|
+
ImPlotCol_AxisBgActive = 18
|
|
63
|
+
ImPlotCol_Selection = 19
|
|
64
|
+
ImPlotCol_Crosshairs = 20
|
|
65
|
+
ImPlotCol_COUNT = 21
|
|
66
|
+
ImPlotColormapScaleFlags_None = 0
|
|
67
|
+
ImPlotColormapScaleFlags_NoLabel = 1
|
|
68
|
+
ImPlotColormapScaleFlags_Opposite = 2
|
|
69
|
+
ImPlotColormapScaleFlags_Invert = 4
|
|
70
|
+
ImPlotColormap_Deep = 0
|
|
71
|
+
ImPlotColormap_Dark = 1
|
|
72
|
+
ImPlotColormap_Pastel = 2
|
|
73
|
+
ImPlotColormap_Paired = 3
|
|
74
|
+
ImPlotColormap_Viridis = 4
|
|
75
|
+
ImPlotColormap_Plasma = 5
|
|
76
|
+
ImPlotColormap_Hot = 6
|
|
77
|
+
ImPlotColormap_Cool = 7
|
|
78
|
+
ImPlotColormap_Pink = 8
|
|
79
|
+
ImPlotColormap_Jet = 9
|
|
80
|
+
ImPlotColormap_Twilight = 10
|
|
81
|
+
ImPlotColormap_RdBu = 11
|
|
82
|
+
ImPlotColormap_BrBG = 12
|
|
83
|
+
ImPlotColormap_PiYG = 13
|
|
84
|
+
ImPlotColormap_Spectral = 14
|
|
85
|
+
ImPlotColormap_Greys = 15
|
|
86
|
+
ImPlotCond_None = 0
|
|
87
|
+
ImPlotCond_Always = 1
|
|
88
|
+
ImPlotCond_Once = 2
|
|
89
|
+
ImPlotDateFmt_None = 0
|
|
90
|
+
ImPlotDateFmt_DayMo = 1
|
|
91
|
+
ImPlotDateFmt_DayMoYr = 2
|
|
92
|
+
ImPlotDateFmt_MoYr = 3
|
|
93
|
+
ImPlotDateFmt_Mo = 4
|
|
94
|
+
ImPlotDateFmt_Yr = 5
|
|
95
|
+
ImPlotDigitalFlags_None = 0
|
|
96
|
+
ImPlotDragToolFlags_None = 0
|
|
97
|
+
ImPlotDragToolFlags_NoCursors = 1
|
|
98
|
+
ImPlotDragToolFlags_NoFit = 2
|
|
99
|
+
ImPlotDragToolFlags_NoInputs = 4
|
|
100
|
+
ImPlotDragToolFlags_Delayed = 8
|
|
101
|
+
ImPlotDummyFlags_None = 0
|
|
102
|
+
ImPlotErrorBarsFlags_None = 0
|
|
103
|
+
ImPlotErrorBarsFlags_Horizontal = 1024
|
|
104
|
+
ImPlotFlags_None = 0
|
|
105
|
+
ImPlotFlags_NoTitle = 1
|
|
106
|
+
ImPlotFlags_NoLegend = 2
|
|
107
|
+
ImPlotFlags_NoMouseText = 4
|
|
108
|
+
ImPlotFlags_NoInputs = 8
|
|
109
|
+
ImPlotFlags_NoMenus = 16
|
|
110
|
+
ImPlotFlags_NoBoxSelect = 32
|
|
111
|
+
ImPlotFlags_NoFrame = 64
|
|
112
|
+
ImPlotFlags_Equal = 128
|
|
113
|
+
ImPlotFlags_Crosshairs = 256
|
|
114
|
+
ImPlotFlags_CanvasOnly = 55
|
|
115
|
+
ImPlotHeatmapFlags_None = 0
|
|
116
|
+
ImPlotHeatmapFlags_ColMajor = 1024
|
|
117
|
+
ImPlotHistogramFlags_None = 0
|
|
118
|
+
ImPlotHistogramFlags_Horizontal = 1024
|
|
119
|
+
ImPlotHistogramFlags_Cumulative = 2048
|
|
120
|
+
ImPlotHistogramFlags_Density = 4096
|
|
121
|
+
ImPlotHistogramFlags_NoOutliers = 8192
|
|
122
|
+
ImPlotHistogramFlags_ColMajor = 16384
|
|
123
|
+
ImPlotImageFlags_None = 0
|
|
124
|
+
ImPlotInfLinesFlags_None = 0
|
|
125
|
+
ImPlotInfLinesFlags_Horizontal = 1024
|
|
126
|
+
ImPlotItemFlags_None = 0
|
|
127
|
+
ImPlotItemFlags_NoLegend = 1
|
|
128
|
+
ImPlotItemFlags_NoFit = 2
|
|
129
|
+
ImPlotLegendFlags_None = 0
|
|
130
|
+
ImPlotLegendFlags_NoButtons = 1
|
|
131
|
+
ImPlotLegendFlags_NoHighlightItem = 2
|
|
132
|
+
ImPlotLegendFlags_NoHighlightAxis = 4
|
|
133
|
+
ImPlotLegendFlags_NoMenus = 8
|
|
134
|
+
ImPlotLegendFlags_Outside = 16
|
|
135
|
+
ImPlotLegendFlags_Horizontal = 32
|
|
136
|
+
ImPlotLegendFlags_Sort = 64
|
|
137
|
+
ImPlotLineFlags_None = 0
|
|
138
|
+
ImPlotLineFlags_Segments = 1024
|
|
139
|
+
ImPlotLineFlags_Loop = 2048
|
|
140
|
+
ImPlotLineFlags_SkipNaN = 4096
|
|
141
|
+
ImPlotLineFlags_NoClip = 8192
|
|
142
|
+
ImPlotLineFlags_Shaded = 16384
|
|
143
|
+
ImPlotLocation_Center = 0
|
|
144
|
+
ImPlotLocation_North = 1
|
|
145
|
+
ImPlotLocation_South = 2
|
|
146
|
+
ImPlotLocation_West = 4
|
|
147
|
+
ImPlotLocation_East = 8
|
|
148
|
+
ImPlotLocation_NorthWest = 5
|
|
149
|
+
ImPlotLocation_NorthEast = 9
|
|
150
|
+
ImPlotLocation_SouthWest = 6
|
|
151
|
+
ImPlotLocation_SouthEast = 10
|
|
152
|
+
ImPlotMarker_None = -1
|
|
153
|
+
ImPlotMarker_Circle = 0
|
|
154
|
+
ImPlotMarker_Square = 1
|
|
155
|
+
ImPlotMarker_Diamond = 2
|
|
156
|
+
ImPlotMarker_Up = 3
|
|
157
|
+
ImPlotMarker_Down = 4
|
|
158
|
+
ImPlotMarker_Left = 5
|
|
159
|
+
ImPlotMarker_Right = 6
|
|
160
|
+
ImPlotMarker_Cross = 7
|
|
161
|
+
ImPlotMarker_Plus = 8
|
|
162
|
+
ImPlotMarker_Asterisk = 9
|
|
163
|
+
ImPlotMarker_COUNT = 10
|
|
164
|
+
ImPlotMouseTextFlags_None = 0
|
|
165
|
+
ImPlotMouseTextFlags_NoAuxAxes = 1
|
|
166
|
+
ImPlotMouseTextFlags_NoFormat = 2
|
|
167
|
+
ImPlotMouseTextFlags_ShowAlways = 4
|
|
168
|
+
ImPlotPieChartFlags_None = 0
|
|
169
|
+
ImPlotPieChartFlags_Normalize = 1024
|
|
170
|
+
ImPlotPieChartFlags_IgnoreHidden = 2048
|
|
171
|
+
ImPlotPieChartFlags_Exploding = 4096
|
|
172
|
+
ImPlotScale_Linear = 0
|
|
173
|
+
ImPlotScale_Time = 1
|
|
174
|
+
ImPlotScale_Log10 = 2
|
|
175
|
+
ImPlotScale_SymLog = 3
|
|
176
|
+
ImPlotScatterFlags_None = 0
|
|
177
|
+
ImPlotScatterFlags_NoClip = 1024
|
|
178
|
+
ImPlotShadedFlags_None = 0
|
|
179
|
+
ImPlotStairsFlags_None = 0
|
|
180
|
+
ImPlotStairsFlags_PreStep = 1024
|
|
181
|
+
ImPlotStairsFlags_Shaded = 2048
|
|
182
|
+
ImPlotStemsFlags_None = 0
|
|
183
|
+
ImPlotStemsFlags_Horizontal = 1024
|
|
184
|
+
ImPlotStyleVar_LineWeight = 0
|
|
185
|
+
ImPlotStyleVar_Marker = 1
|
|
186
|
+
ImPlotStyleVar_MarkerSize = 2
|
|
187
|
+
ImPlotStyleVar_MarkerWeight = 3
|
|
188
|
+
ImPlotStyleVar_FillAlpha = 4
|
|
189
|
+
ImPlotStyleVar_ErrorBarSize = 5
|
|
190
|
+
ImPlotStyleVar_ErrorBarWeight = 6
|
|
191
|
+
ImPlotStyleVar_DigitalBitHeight = 7
|
|
192
|
+
ImPlotStyleVar_DigitalBitGap = 8
|
|
193
|
+
ImPlotStyleVar_PlotBorderSize = 9
|
|
194
|
+
ImPlotStyleVar_MinorAlpha = 10
|
|
195
|
+
ImPlotStyleVar_MajorTickLen = 11
|
|
196
|
+
ImPlotStyleVar_MinorTickLen = 12
|
|
197
|
+
ImPlotStyleVar_MajorTickSize = 13
|
|
198
|
+
ImPlotStyleVar_MinorTickSize = 14
|
|
199
|
+
ImPlotStyleVar_MajorGridSize = 15
|
|
200
|
+
ImPlotStyleVar_MinorGridSize = 16
|
|
201
|
+
ImPlotStyleVar_PlotPadding = 17
|
|
202
|
+
ImPlotStyleVar_LabelPadding = 18
|
|
203
|
+
ImPlotStyleVar_LegendPadding = 19
|
|
204
|
+
ImPlotStyleVar_LegendInnerPadding = 20
|
|
205
|
+
ImPlotStyleVar_LegendSpacing = 21
|
|
206
|
+
ImPlotStyleVar_MousePosPadding = 22
|
|
207
|
+
ImPlotStyleVar_AnnotationPadding = 23
|
|
208
|
+
ImPlotStyleVar_FitPadding = 24
|
|
209
|
+
ImPlotStyleVar_PlotDefaultSize = 25
|
|
210
|
+
ImPlotStyleVar_PlotMinSize = 26
|
|
211
|
+
ImPlotStyleVar_COUNT = 27
|
|
212
|
+
ImPlotSubplotFlags_None = 0
|
|
213
|
+
ImPlotSubplotFlags_NoTitle = 1
|
|
214
|
+
ImPlotSubplotFlags_NoLegend = 2
|
|
215
|
+
ImPlotSubplotFlags_NoMenus = 4
|
|
216
|
+
ImPlotSubplotFlags_NoResize = 8
|
|
217
|
+
ImPlotSubplotFlags_NoAlign = 16
|
|
218
|
+
ImPlotSubplotFlags_ShareItems = 32
|
|
219
|
+
ImPlotSubplotFlags_LinkRows = 64
|
|
220
|
+
ImPlotSubplotFlags_LinkCols = 128
|
|
221
|
+
ImPlotSubplotFlags_LinkAllX = 256
|
|
222
|
+
ImPlotSubplotFlags_LinkAllY = 512
|
|
223
|
+
ImPlotSubplotFlags_ColMajor = 1024
|
|
224
|
+
ImPlotTextFlags_None = 0
|
|
225
|
+
ImPlotTextFlags_Vertical = 1024
|
|
226
|
+
ImPlotTimeFmt_None = 0
|
|
227
|
+
ImPlotTimeFmt_Us = 1
|
|
228
|
+
ImPlotTimeFmt_SUs = 2
|
|
229
|
+
ImPlotTimeFmt_SMs = 3
|
|
230
|
+
ImPlotTimeFmt_S = 4
|
|
231
|
+
ImPlotTimeFmt_MinSMs = 5
|
|
232
|
+
ImPlotTimeFmt_HrMinSMs = 6
|
|
233
|
+
ImPlotTimeFmt_HrMinS = 7
|
|
234
|
+
ImPlotTimeFmt_HrMin = 8
|
|
235
|
+
ImPlotTimeFmt_Hr = 9
|
|
236
|
+
ImPlotTimeUnit_Us = 0
|
|
237
|
+
ImPlotTimeUnit_Ms = 1
|
|
238
|
+
ImPlotTimeUnit_S = 2
|
|
239
|
+
ImPlotTimeUnit_Min = 3
|
|
240
|
+
ImPlotTimeUnit_Hr = 4
|
|
241
|
+
ImPlotTimeUnit_Day = 5
|
|
242
|
+
ImPlotTimeUnit_Mo = 6
|
|
243
|
+
ImPlotTimeUnit_Yr = 7
|
|
244
|
+
ImPlotTimeUnit_COUNT = 8
|
|
245
|
+
end
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
module ImPlot
|
|
249
|
+
module ImAxis
|
|
250
|
+
X1 = ImGui::Native::ImAxis_X1
|
|
251
|
+
X2 = ImGui::Native::ImAxis_X2
|
|
252
|
+
X3 = ImGui::Native::ImAxis_X3
|
|
253
|
+
Y1 = ImGui::Native::ImAxis_Y1
|
|
254
|
+
Y2 = ImGui::Native::ImAxis_Y2
|
|
255
|
+
Y3 = ImGui::Native::ImAxis_Y3
|
|
256
|
+
COUNT = ImGui::Native::ImAxis_COUNT
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
module AxisFlags
|
|
260
|
+
None = ImGui::Native::ImPlotAxisFlags_None
|
|
261
|
+
NoLabel = ImGui::Native::ImPlotAxisFlags_NoLabel
|
|
262
|
+
NoGridLines = ImGui::Native::ImPlotAxisFlags_NoGridLines
|
|
263
|
+
NoTickMarks = ImGui::Native::ImPlotAxisFlags_NoTickMarks
|
|
264
|
+
NoTickLabels = ImGui::Native::ImPlotAxisFlags_NoTickLabels
|
|
265
|
+
NoInitialFit = ImGui::Native::ImPlotAxisFlags_NoInitialFit
|
|
266
|
+
NoMenus = ImGui::Native::ImPlotAxisFlags_NoMenus
|
|
267
|
+
NoSideSwitch = ImGui::Native::ImPlotAxisFlags_NoSideSwitch
|
|
268
|
+
NoHighlight = ImGui::Native::ImPlotAxisFlags_NoHighlight
|
|
269
|
+
Opposite = ImGui::Native::ImPlotAxisFlags_Opposite
|
|
270
|
+
Foreground = ImGui::Native::ImPlotAxisFlags_Foreground
|
|
271
|
+
Invert = ImGui::Native::ImPlotAxisFlags_Invert
|
|
272
|
+
AutoFit = ImGui::Native::ImPlotAxisFlags_AutoFit
|
|
273
|
+
RangeFit = ImGui::Native::ImPlotAxisFlags_RangeFit
|
|
274
|
+
PanStretch = ImGui::Native::ImPlotAxisFlags_PanStretch
|
|
275
|
+
LockMin = ImGui::Native::ImPlotAxisFlags_LockMin
|
|
276
|
+
LockMax = ImGui::Native::ImPlotAxisFlags_LockMax
|
|
277
|
+
Lock = ImGui::Native::ImPlotAxisFlags_Lock
|
|
278
|
+
NoDecorations = ImGui::Native::ImPlotAxisFlags_NoDecorations
|
|
279
|
+
AuxDefault = ImGui::Native::ImPlotAxisFlags_AuxDefault
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
module BarGroupsFlags
|
|
283
|
+
None = ImGui::Native::ImPlotBarGroupsFlags_None
|
|
284
|
+
Horizontal = ImGui::Native::ImPlotBarGroupsFlags_Horizontal
|
|
285
|
+
Stacked = ImGui::Native::ImPlotBarGroupsFlags_Stacked
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
module BarsFlags
|
|
289
|
+
None = ImGui::Native::ImPlotBarsFlags_None
|
|
290
|
+
Horizontal = ImGui::Native::ImPlotBarsFlags_Horizontal
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
module Bin
|
|
294
|
+
Sqrt = ImGui::Native::ImPlotBin_Sqrt
|
|
295
|
+
Sturges = ImGui::Native::ImPlotBin_Sturges
|
|
296
|
+
Rice = ImGui::Native::ImPlotBin_Rice
|
|
297
|
+
Scott = ImGui::Native::ImPlotBin_Scott
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
module Col
|
|
301
|
+
Line = ImGui::Native::ImPlotCol_Line
|
|
302
|
+
Fill = ImGui::Native::ImPlotCol_Fill
|
|
303
|
+
MarkerOutline = ImGui::Native::ImPlotCol_MarkerOutline
|
|
304
|
+
MarkerFill = ImGui::Native::ImPlotCol_MarkerFill
|
|
305
|
+
ErrorBar = ImGui::Native::ImPlotCol_ErrorBar
|
|
306
|
+
FrameBg = ImGui::Native::ImPlotCol_FrameBg
|
|
307
|
+
PlotBg = ImGui::Native::ImPlotCol_PlotBg
|
|
308
|
+
PlotBorder = ImGui::Native::ImPlotCol_PlotBorder
|
|
309
|
+
LegendBg = ImGui::Native::ImPlotCol_LegendBg
|
|
310
|
+
LegendBorder = ImGui::Native::ImPlotCol_LegendBorder
|
|
311
|
+
LegendText = ImGui::Native::ImPlotCol_LegendText
|
|
312
|
+
TitleText = ImGui::Native::ImPlotCol_TitleText
|
|
313
|
+
InlayText = ImGui::Native::ImPlotCol_InlayText
|
|
314
|
+
AxisText = ImGui::Native::ImPlotCol_AxisText
|
|
315
|
+
AxisGrid = ImGui::Native::ImPlotCol_AxisGrid
|
|
316
|
+
AxisTick = ImGui::Native::ImPlotCol_AxisTick
|
|
317
|
+
AxisBg = ImGui::Native::ImPlotCol_AxisBg
|
|
318
|
+
AxisBgHovered = ImGui::Native::ImPlotCol_AxisBgHovered
|
|
319
|
+
AxisBgActive = ImGui::Native::ImPlotCol_AxisBgActive
|
|
320
|
+
Selection = ImGui::Native::ImPlotCol_Selection
|
|
321
|
+
Crosshairs = ImGui::Native::ImPlotCol_Crosshairs
|
|
322
|
+
COUNT = ImGui::Native::ImPlotCol_COUNT
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
module ColormapScaleFlags
|
|
326
|
+
None = ImGui::Native::ImPlotColormapScaleFlags_None
|
|
327
|
+
NoLabel = ImGui::Native::ImPlotColormapScaleFlags_NoLabel
|
|
328
|
+
Opposite = ImGui::Native::ImPlotColormapScaleFlags_Opposite
|
|
329
|
+
Invert = ImGui::Native::ImPlotColormapScaleFlags_Invert
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
module Colormap
|
|
333
|
+
Deep = ImGui::Native::ImPlotColormap_Deep
|
|
334
|
+
Dark = ImGui::Native::ImPlotColormap_Dark
|
|
335
|
+
Pastel = ImGui::Native::ImPlotColormap_Pastel
|
|
336
|
+
Paired = ImGui::Native::ImPlotColormap_Paired
|
|
337
|
+
Viridis = ImGui::Native::ImPlotColormap_Viridis
|
|
338
|
+
Plasma = ImGui::Native::ImPlotColormap_Plasma
|
|
339
|
+
Hot = ImGui::Native::ImPlotColormap_Hot
|
|
340
|
+
Cool = ImGui::Native::ImPlotColormap_Cool
|
|
341
|
+
Pink = ImGui::Native::ImPlotColormap_Pink
|
|
342
|
+
Jet = ImGui::Native::ImPlotColormap_Jet
|
|
343
|
+
Twilight = ImGui::Native::ImPlotColormap_Twilight
|
|
344
|
+
RdBu = ImGui::Native::ImPlotColormap_RdBu
|
|
345
|
+
BrBG = ImGui::Native::ImPlotColormap_BrBG
|
|
346
|
+
PiYG = ImGui::Native::ImPlotColormap_PiYG
|
|
347
|
+
Spectral = ImGui::Native::ImPlotColormap_Spectral
|
|
348
|
+
Greys = ImGui::Native::ImPlotColormap_Greys
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
module Cond
|
|
352
|
+
None = ImGui::Native::ImPlotCond_None
|
|
353
|
+
Always = ImGui::Native::ImPlotCond_Always
|
|
354
|
+
Once = ImGui::Native::ImPlotCond_Once
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
module DateFmt
|
|
358
|
+
None = ImGui::Native::ImPlotDateFmt_None
|
|
359
|
+
DayMo = ImGui::Native::ImPlotDateFmt_DayMo
|
|
360
|
+
DayMoYr = ImGui::Native::ImPlotDateFmt_DayMoYr
|
|
361
|
+
MoYr = ImGui::Native::ImPlotDateFmt_MoYr
|
|
362
|
+
Mo = ImGui::Native::ImPlotDateFmt_Mo
|
|
363
|
+
Yr = ImGui::Native::ImPlotDateFmt_Yr
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
module DigitalFlags
|
|
367
|
+
None = ImGui::Native::ImPlotDigitalFlags_None
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
module DragToolFlags
|
|
371
|
+
None = ImGui::Native::ImPlotDragToolFlags_None
|
|
372
|
+
NoCursors = ImGui::Native::ImPlotDragToolFlags_NoCursors
|
|
373
|
+
NoFit = ImGui::Native::ImPlotDragToolFlags_NoFit
|
|
374
|
+
NoInputs = ImGui::Native::ImPlotDragToolFlags_NoInputs
|
|
375
|
+
Delayed = ImGui::Native::ImPlotDragToolFlags_Delayed
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
module DummyFlags
|
|
379
|
+
None = ImGui::Native::ImPlotDummyFlags_None
|
|
380
|
+
end
|
|
381
|
+
|
|
382
|
+
module ErrorBarsFlags
|
|
383
|
+
None = ImGui::Native::ImPlotErrorBarsFlags_None
|
|
384
|
+
Horizontal = ImGui::Native::ImPlotErrorBarsFlags_Horizontal
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
module Flags
|
|
388
|
+
None = ImGui::Native::ImPlotFlags_None
|
|
389
|
+
NoTitle = ImGui::Native::ImPlotFlags_NoTitle
|
|
390
|
+
NoLegend = ImGui::Native::ImPlotFlags_NoLegend
|
|
391
|
+
NoMouseText = ImGui::Native::ImPlotFlags_NoMouseText
|
|
392
|
+
NoInputs = ImGui::Native::ImPlotFlags_NoInputs
|
|
393
|
+
NoMenus = ImGui::Native::ImPlotFlags_NoMenus
|
|
394
|
+
NoBoxSelect = ImGui::Native::ImPlotFlags_NoBoxSelect
|
|
395
|
+
NoFrame = ImGui::Native::ImPlotFlags_NoFrame
|
|
396
|
+
Equal = ImGui::Native::ImPlotFlags_Equal
|
|
397
|
+
Crosshairs = ImGui::Native::ImPlotFlags_Crosshairs
|
|
398
|
+
CanvasOnly = ImGui::Native::ImPlotFlags_CanvasOnly
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
module HeatmapFlags
|
|
402
|
+
None = ImGui::Native::ImPlotHeatmapFlags_None
|
|
403
|
+
ColMajor = ImGui::Native::ImPlotHeatmapFlags_ColMajor
|
|
404
|
+
end
|
|
405
|
+
|
|
406
|
+
module HistogramFlags
|
|
407
|
+
None = ImGui::Native::ImPlotHistogramFlags_None
|
|
408
|
+
Horizontal = ImGui::Native::ImPlotHistogramFlags_Horizontal
|
|
409
|
+
Cumulative = ImGui::Native::ImPlotHistogramFlags_Cumulative
|
|
410
|
+
Density = ImGui::Native::ImPlotHistogramFlags_Density
|
|
411
|
+
NoOutliers = ImGui::Native::ImPlotHistogramFlags_NoOutliers
|
|
412
|
+
ColMajor = ImGui::Native::ImPlotHistogramFlags_ColMajor
|
|
413
|
+
end
|
|
414
|
+
|
|
415
|
+
module ImageFlags
|
|
416
|
+
None = ImGui::Native::ImPlotImageFlags_None
|
|
417
|
+
end
|
|
418
|
+
|
|
419
|
+
module InfLinesFlags
|
|
420
|
+
None = ImGui::Native::ImPlotInfLinesFlags_None
|
|
421
|
+
Horizontal = ImGui::Native::ImPlotInfLinesFlags_Horizontal
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
module ItemFlags
|
|
425
|
+
None = ImGui::Native::ImPlotItemFlags_None
|
|
426
|
+
NoLegend = ImGui::Native::ImPlotItemFlags_NoLegend
|
|
427
|
+
NoFit = ImGui::Native::ImPlotItemFlags_NoFit
|
|
428
|
+
end
|
|
429
|
+
|
|
430
|
+
module LegendFlags
|
|
431
|
+
None = ImGui::Native::ImPlotLegendFlags_None
|
|
432
|
+
NoButtons = ImGui::Native::ImPlotLegendFlags_NoButtons
|
|
433
|
+
NoHighlightItem = ImGui::Native::ImPlotLegendFlags_NoHighlightItem
|
|
434
|
+
NoHighlightAxis = ImGui::Native::ImPlotLegendFlags_NoHighlightAxis
|
|
435
|
+
NoMenus = ImGui::Native::ImPlotLegendFlags_NoMenus
|
|
436
|
+
Outside = ImGui::Native::ImPlotLegendFlags_Outside
|
|
437
|
+
Horizontal = ImGui::Native::ImPlotLegendFlags_Horizontal
|
|
438
|
+
Sort = ImGui::Native::ImPlotLegendFlags_Sort
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
module LineFlags
|
|
442
|
+
None = ImGui::Native::ImPlotLineFlags_None
|
|
443
|
+
Segments = ImGui::Native::ImPlotLineFlags_Segments
|
|
444
|
+
Loop = ImGui::Native::ImPlotLineFlags_Loop
|
|
445
|
+
SkipNaN = ImGui::Native::ImPlotLineFlags_SkipNaN
|
|
446
|
+
NoClip = ImGui::Native::ImPlotLineFlags_NoClip
|
|
447
|
+
Shaded = ImGui::Native::ImPlotLineFlags_Shaded
|
|
448
|
+
end
|
|
449
|
+
|
|
450
|
+
module Location
|
|
451
|
+
Center = ImGui::Native::ImPlotLocation_Center
|
|
452
|
+
North = ImGui::Native::ImPlotLocation_North
|
|
453
|
+
South = ImGui::Native::ImPlotLocation_South
|
|
454
|
+
West = ImGui::Native::ImPlotLocation_West
|
|
455
|
+
East = ImGui::Native::ImPlotLocation_East
|
|
456
|
+
NorthWest = ImGui::Native::ImPlotLocation_NorthWest
|
|
457
|
+
NorthEast = ImGui::Native::ImPlotLocation_NorthEast
|
|
458
|
+
SouthWest = ImGui::Native::ImPlotLocation_SouthWest
|
|
459
|
+
SouthEast = ImGui::Native::ImPlotLocation_SouthEast
|
|
460
|
+
end
|
|
461
|
+
|
|
462
|
+
module Marker
|
|
463
|
+
None = ImGui::Native::ImPlotMarker_None
|
|
464
|
+
Circle = ImGui::Native::ImPlotMarker_Circle
|
|
465
|
+
Square = ImGui::Native::ImPlotMarker_Square
|
|
466
|
+
Diamond = ImGui::Native::ImPlotMarker_Diamond
|
|
467
|
+
Up = ImGui::Native::ImPlotMarker_Up
|
|
468
|
+
Down = ImGui::Native::ImPlotMarker_Down
|
|
469
|
+
Left = ImGui::Native::ImPlotMarker_Left
|
|
470
|
+
Right = ImGui::Native::ImPlotMarker_Right
|
|
471
|
+
Cross = ImGui::Native::ImPlotMarker_Cross
|
|
472
|
+
Plus = ImGui::Native::ImPlotMarker_Plus
|
|
473
|
+
Asterisk = ImGui::Native::ImPlotMarker_Asterisk
|
|
474
|
+
COUNT = ImGui::Native::ImPlotMarker_COUNT
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
module MouseTextFlags
|
|
478
|
+
None = ImGui::Native::ImPlotMouseTextFlags_None
|
|
479
|
+
NoAuxAxes = ImGui::Native::ImPlotMouseTextFlags_NoAuxAxes
|
|
480
|
+
NoFormat = ImGui::Native::ImPlotMouseTextFlags_NoFormat
|
|
481
|
+
ShowAlways = ImGui::Native::ImPlotMouseTextFlags_ShowAlways
|
|
482
|
+
end
|
|
483
|
+
|
|
484
|
+
module PieChartFlags
|
|
485
|
+
None = ImGui::Native::ImPlotPieChartFlags_None
|
|
486
|
+
Normalize = ImGui::Native::ImPlotPieChartFlags_Normalize
|
|
487
|
+
IgnoreHidden = ImGui::Native::ImPlotPieChartFlags_IgnoreHidden
|
|
488
|
+
Exploding = ImGui::Native::ImPlotPieChartFlags_Exploding
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
module Scale
|
|
492
|
+
Linear = ImGui::Native::ImPlotScale_Linear
|
|
493
|
+
Time = ImGui::Native::ImPlotScale_Time
|
|
494
|
+
Log10 = ImGui::Native::ImPlotScale_Log10
|
|
495
|
+
SymLog = ImGui::Native::ImPlotScale_SymLog
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
module ScatterFlags
|
|
499
|
+
None = ImGui::Native::ImPlotScatterFlags_None
|
|
500
|
+
NoClip = ImGui::Native::ImPlotScatterFlags_NoClip
|
|
501
|
+
end
|
|
502
|
+
|
|
503
|
+
module ShadedFlags
|
|
504
|
+
None = ImGui::Native::ImPlotShadedFlags_None
|
|
505
|
+
end
|
|
506
|
+
|
|
507
|
+
module StairsFlags
|
|
508
|
+
None = ImGui::Native::ImPlotStairsFlags_None
|
|
509
|
+
PreStep = ImGui::Native::ImPlotStairsFlags_PreStep
|
|
510
|
+
Shaded = ImGui::Native::ImPlotStairsFlags_Shaded
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
module StemsFlags
|
|
514
|
+
None = ImGui::Native::ImPlotStemsFlags_None
|
|
515
|
+
Horizontal = ImGui::Native::ImPlotStemsFlags_Horizontal
|
|
516
|
+
end
|
|
517
|
+
|
|
518
|
+
module StyleVar
|
|
519
|
+
LineWeight = ImGui::Native::ImPlotStyleVar_LineWeight
|
|
520
|
+
Marker = ImGui::Native::ImPlotStyleVar_Marker
|
|
521
|
+
MarkerSize = ImGui::Native::ImPlotStyleVar_MarkerSize
|
|
522
|
+
MarkerWeight = ImGui::Native::ImPlotStyleVar_MarkerWeight
|
|
523
|
+
FillAlpha = ImGui::Native::ImPlotStyleVar_FillAlpha
|
|
524
|
+
ErrorBarSize = ImGui::Native::ImPlotStyleVar_ErrorBarSize
|
|
525
|
+
ErrorBarWeight = ImGui::Native::ImPlotStyleVar_ErrorBarWeight
|
|
526
|
+
DigitalBitHeight = ImGui::Native::ImPlotStyleVar_DigitalBitHeight
|
|
527
|
+
DigitalBitGap = ImGui::Native::ImPlotStyleVar_DigitalBitGap
|
|
528
|
+
PlotBorderSize = ImGui::Native::ImPlotStyleVar_PlotBorderSize
|
|
529
|
+
MinorAlpha = ImGui::Native::ImPlotStyleVar_MinorAlpha
|
|
530
|
+
MajorTickLen = ImGui::Native::ImPlotStyleVar_MajorTickLen
|
|
531
|
+
MinorTickLen = ImGui::Native::ImPlotStyleVar_MinorTickLen
|
|
532
|
+
MajorTickSize = ImGui::Native::ImPlotStyleVar_MajorTickSize
|
|
533
|
+
MinorTickSize = ImGui::Native::ImPlotStyleVar_MinorTickSize
|
|
534
|
+
MajorGridSize = ImGui::Native::ImPlotStyleVar_MajorGridSize
|
|
535
|
+
MinorGridSize = ImGui::Native::ImPlotStyleVar_MinorGridSize
|
|
536
|
+
PlotPadding = ImGui::Native::ImPlotStyleVar_PlotPadding
|
|
537
|
+
LabelPadding = ImGui::Native::ImPlotStyleVar_LabelPadding
|
|
538
|
+
LegendPadding = ImGui::Native::ImPlotStyleVar_LegendPadding
|
|
539
|
+
LegendInnerPadding = ImGui::Native::ImPlotStyleVar_LegendInnerPadding
|
|
540
|
+
LegendSpacing = ImGui::Native::ImPlotStyleVar_LegendSpacing
|
|
541
|
+
MousePosPadding = ImGui::Native::ImPlotStyleVar_MousePosPadding
|
|
542
|
+
AnnotationPadding = ImGui::Native::ImPlotStyleVar_AnnotationPadding
|
|
543
|
+
FitPadding = ImGui::Native::ImPlotStyleVar_FitPadding
|
|
544
|
+
PlotDefaultSize = ImGui::Native::ImPlotStyleVar_PlotDefaultSize
|
|
545
|
+
PlotMinSize = ImGui::Native::ImPlotStyleVar_PlotMinSize
|
|
546
|
+
COUNT = ImGui::Native::ImPlotStyleVar_COUNT
|
|
547
|
+
end
|
|
548
|
+
|
|
549
|
+
module SubplotFlags
|
|
550
|
+
None = ImGui::Native::ImPlotSubplotFlags_None
|
|
551
|
+
NoTitle = ImGui::Native::ImPlotSubplotFlags_NoTitle
|
|
552
|
+
NoLegend = ImGui::Native::ImPlotSubplotFlags_NoLegend
|
|
553
|
+
NoMenus = ImGui::Native::ImPlotSubplotFlags_NoMenus
|
|
554
|
+
NoResize = ImGui::Native::ImPlotSubplotFlags_NoResize
|
|
555
|
+
NoAlign = ImGui::Native::ImPlotSubplotFlags_NoAlign
|
|
556
|
+
ShareItems = ImGui::Native::ImPlotSubplotFlags_ShareItems
|
|
557
|
+
LinkRows = ImGui::Native::ImPlotSubplotFlags_LinkRows
|
|
558
|
+
LinkCols = ImGui::Native::ImPlotSubplotFlags_LinkCols
|
|
559
|
+
LinkAllX = ImGui::Native::ImPlotSubplotFlags_LinkAllX
|
|
560
|
+
LinkAllY = ImGui::Native::ImPlotSubplotFlags_LinkAllY
|
|
561
|
+
ColMajor = ImGui::Native::ImPlotSubplotFlags_ColMajor
|
|
562
|
+
end
|
|
563
|
+
|
|
564
|
+
module TextFlags
|
|
565
|
+
None = ImGui::Native::ImPlotTextFlags_None
|
|
566
|
+
Vertical = ImGui::Native::ImPlotTextFlags_Vertical
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
module TimeFmt
|
|
570
|
+
None = ImGui::Native::ImPlotTimeFmt_None
|
|
571
|
+
Us = ImGui::Native::ImPlotTimeFmt_Us
|
|
572
|
+
SUs = ImGui::Native::ImPlotTimeFmt_SUs
|
|
573
|
+
SMs = ImGui::Native::ImPlotTimeFmt_SMs
|
|
574
|
+
S = ImGui::Native::ImPlotTimeFmt_S
|
|
575
|
+
MinSMs = ImGui::Native::ImPlotTimeFmt_MinSMs
|
|
576
|
+
HrMinSMs = ImGui::Native::ImPlotTimeFmt_HrMinSMs
|
|
577
|
+
HrMinS = ImGui::Native::ImPlotTimeFmt_HrMinS
|
|
578
|
+
HrMin = ImGui::Native::ImPlotTimeFmt_HrMin
|
|
579
|
+
Hr = ImGui::Native::ImPlotTimeFmt_Hr
|
|
580
|
+
end
|
|
581
|
+
|
|
582
|
+
module TimeUnit
|
|
583
|
+
Us = ImGui::Native::ImPlotTimeUnit_Us
|
|
584
|
+
Ms = ImGui::Native::ImPlotTimeUnit_Ms
|
|
585
|
+
S = ImGui::Native::ImPlotTimeUnit_S
|
|
586
|
+
Min = ImGui::Native::ImPlotTimeUnit_Min
|
|
587
|
+
Hr = ImGui::Native::ImPlotTimeUnit_Hr
|
|
588
|
+
Day = ImGui::Native::ImPlotTimeUnit_Day
|
|
589
|
+
Mo = ImGui::Native::ImPlotTimeUnit_Mo
|
|
590
|
+
Yr = ImGui::Native::ImPlotTimeUnit_Yr
|
|
591
|
+
COUNT = ImGui::Native::ImPlotTimeUnit_COUNT
|
|
592
|
+
end
|
|
593
|
+
end
|