forked from AllenDang/cimgui-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cimplot_enums.go
455 lines (382 loc) · 9.4 KB
/
cimplot_enums.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
// Code generated by cmd/codegen from https://github.com/AllenDang/cimgui-go.
// DO NOT EDIT.
package imgui
// original name: ImAxis_
type PlotAxisEnum int32
const (
AxisX1 = 0
AxisX2 = 1
AxisX3 = 2
AxisY1 = 3
AxisY2 = 4
AxisY3 = 5
AxisCOUNT = 6
)
// original name: ImPlotAxisFlags_
type PlotAxisFlags int32
const (
PlotAxisFlagsNone = 0
PlotAxisFlagsNoLabel = 1
PlotAxisFlagsNoGridLines = 2
PlotAxisFlagsNoTickMarks = 4
PlotAxisFlagsNoTickLabels = 8
PlotAxisFlagsNoInitialFit = 16
PlotAxisFlagsNoMenus = 32
PlotAxisFlagsNoSideSwitch = 64
PlotAxisFlagsNoHighlight = 128
PlotAxisFlagsOpposite = 256
PlotAxisFlagsForeground = 512
PlotAxisFlagsInvert = 1024
PlotAxisFlagsAutoFit = 2048
PlotAxisFlagsRangeFit = 4096
PlotAxisFlagsPanStretch = 8192
PlotAxisFlagsLockMin = 16384
PlotAxisFlagsLockMax = 32768
PlotAxisFlagsLock = 49152
PlotAxisFlagsNoDecorations = 15
PlotAxisFlagsAuxDefault = 258
)
// original name: ImPlotBarGroupsFlags_
type PlotBarGroupsFlags int32
const (
PlotBarGroupsFlagsNone = 0
PlotBarGroupsFlagsHorizontal = 1024
PlotBarGroupsFlagsStacked = 2048
)
// original name: ImPlotBarsFlags_
type PlotBarsFlags int32
const (
PlotBarsFlagsNone = 0
PlotBarsFlagsHorizontal = 1024
)
// original name: ImPlotBin_
type PlotBin int32
const (
PlotBinSqrt = -1
PlotBinSturges = -2
PlotBinRice = -3
PlotBinScott = -4
)
// original name: ImPlotCol_
type PlotCol int32
const (
PlotColLine = 0
PlotColFill = 1
PlotColMarkerOutline = 2
PlotColMarkerFill = 3
PlotColErrorBar = 4
PlotColFrameBg = 5
PlotColPlotBg = 6
PlotColPlotBorder = 7
PlotColLegendBg = 8
PlotColLegendBorder = 9
PlotColLegendText = 10
PlotColTitleText = 11
PlotColInlayText = 12
PlotColAxisText = 13
PlotColAxisGrid = 14
PlotColAxisTick = 15
PlotColAxisBg = 16
PlotColAxisBgHovered = 17
PlotColAxisBgActive = 18
PlotColSelection = 19
PlotColCrosshairs = 20
PlotColCOUNT = 21
)
// original name: ImPlotColormapScaleFlags_
type PlotColormapScaleFlags int32
const (
PlotColormapScaleFlagsNone = 0
PlotColormapScaleFlagsNoLabel = 1
PlotColormapScaleFlagsOpposite = 2
PlotColormapScaleFlagsInvert = 4
)
// original name: ImPlotColormap_
type PlotColormap int32
const (
PlotColormapDeep = 0
PlotColormapDark = 1
PlotColormapPastel = 2
PlotColormapPaired = 3
PlotColormapViridis = 4
PlotColormapPlasma = 5
PlotColormapHot = 6
PlotColormapCool = 7
PlotColormapPink = 8
PlotColormapJet = 9
PlotColormapTwilight = 10
PlotColormapRdBu = 11
PlotColormapBrBG = 12
PlotColormapPiYG = 13
PlotColormapSpectral = 14
PlotColormapGreys = 15
)
// original name: ImPlotCond_
type PlotCond int32
const (
PlotCondNone = 0
PlotCondAlways = 1
PlotCondOnce = 2
)
// original name: ImPlotDateFmt_
type PlotDateFmt int32
const (
PlotDateFmtNone = 0
PlotDateFmtDayMo = 1
PlotDateFmtDayMoYr = 2
PlotDateFmtMoYr = 3
PlotDateFmtMo = 4
PlotDateFmtYr = 5
)
// original name: ImPlotDigitalFlags_
type PlotDigitalFlags int32
const (
PlotDigitalFlagsNone = 0
)
// original name: ImPlotDragToolFlags_
type PlotDragToolFlags int32
const (
PlotDragToolFlagsNone = 0
PlotDragToolFlagsNoCursors = 1
PlotDragToolFlagsNoFit = 2
PlotDragToolFlagsNoInputs = 4
PlotDragToolFlagsDelayed = 8
)
// original name: ImPlotDummyFlags_
type PlotDummyFlags int32
const (
PlotDummyFlagsNone = 0
)
// original name: ImPlotErrorBarsFlags_
type PlotErrorBarsFlags int32
const (
PlotErrorBarsFlagsNone = 0
PlotErrorBarsFlagsHorizontal = 1024
)
// original name: ImPlotFlags_
type PlotFlags int32
const (
PlotFlagsNone = 0
PlotFlagsNoTitle = 1
PlotFlagsNoLegend = 2
PlotFlagsNoMouseText = 4
PlotFlagsNoInputs = 8
PlotFlagsNoMenus = 16
PlotFlagsNoBoxSelect = 32
PlotFlagsNoFrame = 64
PlotFlagsEqual = 128
PlotFlagsCrosshairs = 256
PlotFlagsCanvasOnly = 55
)
// original name: ImPlotHeatmapFlags_
type PlotHeatmapFlags int32
const (
PlotHeatmapFlagsNone = 0
PlotHeatmapFlagsColMajor = 1024
)
// original name: ImPlotHistogramFlags_
type PlotHistogramFlags int32
const (
PlotHistogramFlagsNone = 0
PlotHistogramFlagsHorizontal = 1024
PlotHistogramFlagsCumulative = 2048
PlotHistogramFlagsDensity = 4096
PlotHistogramFlagsNoOutliers = 8192
PlotHistogramFlagsColMajor = 16384
)
// original name: ImPlotImageFlags_
type PlotImageFlags int32
const (
PlotImageFlagsNone = 0
)
// original name: ImPlotInfLinesFlags_
type PlotInfLinesFlags int32
const (
PlotInfLinesFlagsNone = 0
PlotInfLinesFlagsHorizontal = 1024
)
// original name: ImPlotItemFlags_
type PlotItemFlags int32
const (
PlotItemFlagsNone = 0
PlotItemFlagsNoLegend = 1
PlotItemFlagsNoFit = 2
)
// original name: ImPlotLegendFlags_
type PlotLegendFlags int32
const (
PlotLegendFlagsNone = 0
PlotLegendFlagsNoButtons = 1
PlotLegendFlagsNoHighlightItem = 2
PlotLegendFlagsNoHighlightAxis = 4
PlotLegendFlagsNoMenus = 8
PlotLegendFlagsOutside = 16
PlotLegendFlagsHorizontal = 32
PlotLegendFlagsSort = 64
)
// original name: ImPlotLineFlags_
type PlotLineFlags int32
const (
PlotLineFlagsNone = 0
PlotLineFlagsSegments = 1024
PlotLineFlagsLoop = 2048
PlotLineFlagsSkipNaN = 4096
PlotLineFlagsNoClip = 8192
PlotLineFlagsShaded = 16384
)
// original name: ImPlotLocation_
type PlotLocation int32
const (
PlotLocationCenter = 0
PlotLocationNorth = 1
PlotLocationSouth = 2
PlotLocationWest = 4
PlotLocationEast = 8
PlotLocationNorthWest = 5
PlotLocationNorthEast = 9
PlotLocationSouthWest = 6
PlotLocationSouthEast = 10
)
// original name: ImPlotMarker_
type PlotMarker int32
const (
PlotMarkerNone = -1
PlotMarkerCircle = 0
PlotMarkerSquare = 1
PlotMarkerDiamond = 2
PlotMarkerUp = 3
PlotMarkerDown = 4
PlotMarkerLeft = 5
PlotMarkerRight = 6
PlotMarkerCross = 7
PlotMarkerPlus = 8
PlotMarkerAsterisk = 9
PlotMarkerCOUNT = 10
)
// original name: ImPlotMouseTextFlags_
type PlotMouseTextFlags int32
const (
PlotMouseTextFlagsNone = 0
PlotMouseTextFlagsNoAuxAxes = 1
PlotMouseTextFlagsNoFormat = 2
PlotMouseTextFlagsShowAlways = 4
)
// original name: ImPlotPieChartFlags_
type PlotPieChartFlags int32
const (
PlotPieChartFlagsNone = 0
PlotPieChartFlagsNormalize = 1024
)
// original name: ImPlotScale_
type PlotScale int32
const (
PlotScaleLinear = 0
PlotScaleTime = 1
PlotScaleLog10 = 2
PlotScaleSymLog = 3
)
// original name: ImPlotScatterFlags_
type PlotScatterFlags int32
const (
PlotScatterFlagsNone = 0
PlotScatterFlagsNoClip = 1024
)
// original name: ImPlotShadedFlags_
type PlotShadedFlags int32
const (
PlotShadedFlagsNone = 0
)
// original name: ImPlotStairsFlags_
type PlotStairsFlags int32
const (
PlotStairsFlagsNone = 0
PlotStairsFlagsPreStep = 1024
PlotStairsFlagsShaded = 2048
)
// original name: ImPlotStemsFlags_
type PlotStemsFlags int32
const (
PlotStemsFlagsNone = 0
PlotStemsFlagsHorizontal = 1024
)
// original name: ImPlotStyleVar_
type PlotStyleVar int32
const (
PlotStyleVarLineWeight = 0
PlotStyleVarMarker = 1
PlotStyleVarMarkerSize = 2
PlotStyleVarMarkerWeight = 3
PlotStyleVarFillAlpha = 4
PlotStyleVarErrorBarSize = 5
PlotStyleVarErrorBarWeight = 6
PlotStyleVarDigitalBitHeight = 7
PlotStyleVarDigitalBitGap = 8
PlotStyleVarPlotBorderSize = 9
PlotStyleVarMinorAlpha = 10
PlotStyleVarMajorTickLen = 11
PlotStyleVarMinorTickLen = 12
PlotStyleVarMajorTickSize = 13
PlotStyleVarMinorTickSize = 14
PlotStyleVarMajorGridSize = 15
PlotStyleVarMinorGridSize = 16
PlotStyleVarPlotPadding = 17
PlotStyleVarLabelPadding = 18
PlotStyleVarLegendPadding = 19
PlotStyleVarLegendInnerPadding = 20
PlotStyleVarLegendSpacing = 21
PlotStyleVarMousePosPadding = 22
PlotStyleVarAnnotationPadding = 23
PlotStyleVarFitPadding = 24
PlotStyleVarPlotDefaultSize = 25
PlotStyleVarPlotMinSize = 26
PlotStyleVarCOUNT = 27
)
// original name: ImPlotSubplotFlags_
type PlotSubplotFlags int32
const (
PlotSubplotFlagsNone = 0
PlotSubplotFlagsNoTitle = 1
PlotSubplotFlagsNoLegend = 2
PlotSubplotFlagsNoMenus = 4
PlotSubplotFlagsNoResize = 8
PlotSubplotFlagsNoAlign = 16
PlotSubplotFlagsShareItems = 32
PlotSubplotFlagsLinkRows = 64
PlotSubplotFlagsLinkCols = 128
PlotSubplotFlagsLinkAllX = 256
PlotSubplotFlagsLinkAllY = 512
PlotSubplotFlagsColMajor = 1024
)
// original name: ImPlotTextFlags_
type PlotTextFlags int32
const (
PlotTextFlagsNone = 0
PlotTextFlagsVertical = 1024
)
// original name: ImPlotTimeFmt_
type PlotTimeFmt int32
const (
PlotTimeFmtNone = 0
PlotTimeFmtUs = 1
PlotTimeFmtSUs = 2
PlotTimeFmtSMs = 3
PlotTimeFmtS = 4
PlotTimeFmtMinSMs = 5
PlotTimeFmtHrMinSMs = 6
PlotTimeFmtHrMinS = 7
PlotTimeFmtHrMin = 8
PlotTimeFmtHr = 9
)
// original name: ImPlotTimeUnit_
type PlotTimeUnit int32
const (
PlotTimeUnitUs = 0
PlotTimeUnitMs = 1
PlotTimeUnitS = 2
PlotTimeUnitMin = 3
PlotTimeUnitHr = 4
PlotTimeUnitDay = 5
PlotTimeUnitMo = 6
PlotTimeUnitYr = 7
PlotTimeUnitCOUNT = 8
)