FLImaging 6.7.10.2
DefinitionsGUI.h
1#pragma once
2#include "DefinitionsGUIViewGraph.h"
3#include "DefinitionsGUIView3D.h"
4
12
16namespace FLImagingCLR
17{
21 namespace GUI
22 {
34 public enum class EViewImageLoadOption
35 {
42 Default = 0x00000000,
43
50 Load = 0x00000001,
51
58 Append = 0x00000002,
59
66 Insert = 0x00000004,
67
74 RecursiveIfFolder = 0x01000000,
75
82 OpenDialog = 0x00100000,
83
90 DialogTypeFile = 0x10000000,
91
98 DialogTypeFolder = 0x20000000,
99 };
100
102 {
103 return static_cast<EViewImageLoadOption>(static_cast<int32_t>(a) | static_cast<int32_t>(b));
104 }
105
107 {
108 return static_cast<EViewImageLoadOption>(static_cast<int32_t>(a) & static_cast<int32_t>(b));
109 }
110
112 {
113 return static_cast<EViewImageLoadOption>(~static_cast<int32_t>(a));
114 }
115
116 inline bool operator!(EViewImageLoadOption a)
117 {
118 return static_cast<bool>(!static_cast<int32_t>(a));
119 }
120
121 inline const EViewImageLoadOption& operator|=(EViewImageLoadOption& a, const EViewImageLoadOption& b)
122 {
123 return a = a | b;
124 }
125
126 inline const EViewImageLoadOption& operator&=(EViewImageLoadOption& a, const EViewImageLoadOption& b)
127 {
128 return a = a & b;
129 }
130
138 {
146
154 };
155
162 public enum class EPixelNumberMode
163 {
171
179
187 };
188
195 public enum class EMenuItem : int64_t
196 {
204 None = 32768 + 1000,
205
214
223
232
241
250
259
268
277
286
295
304
313
322
331
340
349
358
367
376
385
394
403
412
421
430
439
448
457
466
475
484
493
502
511
520
529
538
547
556
565
574
583
592
601
610
619
628
637
646
655
664
673
682
691
700
709
718
727
736
745
754
763
772
781
790
799
808
817
826
835
844
853
862
871
880
889
898
907
916
925
934
943
952
961
969
978
987
995
1003
1011
1019
1027
1035
1043
1051
1059
1067
1075
1083
1091
1099
1107
1115
1123
1131
1139
1147
1155
1163
1171
1179
1187
1195
1203
1211
1219
1227
1236 };
1237
1238
1245 public enum class EMenuItemImageFigure : int64_t
1246 {
1253 None = (int64_t)EMenuItem::End + 1,
1254
1262
1270
1278
1286
1294
1302
1310
1318
1326
1334
1343
1352
1361
1369
1378
1387
1395
1403
1411
1419
1427
1435
1443
1451
1459
1467
1475
1484 };
1485
1492 public enum class EMenuItemObjectFigure : int64_t
1493 {
1502
1510
1518
1526
1534
1543
1552
1561
1570
1579
1588
1597
1606
1615
1624
1632
1640
1648
1656
1664
1672
1680
1688
1696
1704
1712
1720
1729
1738
1747
1756
1764
1772
1780
1788
1796
1804
1812
1820
1828
1836
1844
1852
1860
1868
1876
1884
1892
1900
1908
1916
1924
1932
1940
1948
1956
1964
1972
1980
1988
1996
2004
2012
2020
2028
2036
2044
2052
2060
2068
2076
2084
2092
2100
2108
2116
2124
2132
2140
2148
2156
2164
2172
2180
2188
2196
2204
2212
2220
2228
2236
2244
2252
2260
2268
2276
2284
2292
2300
2308
2316
2324
2332
2340
2348
2356
2364
2372
2380
2388
2396
2404
2412
2420
2428
2436
2444
2452
2460
2468
2476
2484
2492
2500
2508
2516
2524
2532
2540
2548
2556
2564
2572
2580
2588
2596
2604
2612
2620
2630
2640
2648
2656
2664
2672
2680
2688
2696
2704
2712
2720
2728
2736
2744
2752
2760
2768
2776
2784
2792
2800
2808
2816
2824
2832
2840
2848
2856
2864
2872
2880
2888
2896
2904
2912
2920
2928
2936
2944
2952
2960
2968
2976
2984
2992 };
2993
3000 public enum class EMenuItemObjectMeasure : int64_t
3001 {
3010
3019
3028
3037
3046
3055
3064
3073
3081
3089
3097
3105
3113
3121
3130 };
3131
3132
3139 public enum class EImageRotateAngle : uint64_t
3140 {
3148 None = 0,
3149
3158
3167
3176 };
3177
3184 public enum class EImageFlipDirection
3185 {
3193 None = 0x00,
3194
3203
3211 Vertical = 0x02,
3212
3221 };
3222
3229 public enum class EAvailableViewImageContextMenu : uint64_t
3230 {
3237 None = 0x00000000,
3238
3245 All = 0xffffffffffffffff,
3246
3256 ImageFigure = 0x00000001,
3257
3265 Load = 0x00000002,
3266
3274 Load_DXF = 0x00000004,
3275
3282 Load_GBR = 0x00000008,
3283
3291 Save = 0x00000010,
3292
3300 ClearFile = 0x00000020,
3301
3309 CreateImage = 0x00000040,
3310
3318 ImageMiniMap = 0x00000080,
3319
3327 ShowPageIndex = 0x00000100,
3328
3336 ThumbnailView = 0x00000200,
3337
3345 PageControl = 0x00000400,
3346
3354 Zoom = 0x00000800,
3355
3363 Panning = 0x00001000,
3364
3372 ShowScrollBar = 0x00002000,
3373
3381 ShowStatusBar = 0x00004000,
3382
3390 ShowToolBar = 0x00008000,
3391
3399 ShowGrid = 0x00010000,
3400
3408 ShowCrosshair = 0x00020000,
3409
3418
3427
3434 ShowPixelValue = 0x00100000,
3435
3443 PixelNumberMode = 0x00200000,
3444
3452 PixelAccuracy = 0x00400000,
3453
3461 ShowImageCenter = 0x00800000,
3462
3470 CanvasColorPicker = 0x01000000,
3471
3478 LeaveTeachingMode = 0x02000000,
3479
3487 Measure = 0x04000000,
3488
3496 Figure_Create = 0x08000000,
3497
3505 Figure_Load = 0x10000000,
3506
3515
3523 SyncView = 0x40000000,
3524
3532 SyncWindow = 0x80000000,
3533
3541 ShowAllLayers = 0x0000000100000000,
3542
3550 HideAllLayers = 0x0000000200000000,
3551
3559 ShowLayer_Image = 0x0000000400000000,
3560
3568 ShowLayer_Drawing = 0x0000000800000000,
3569
3577 LayerProperties = 0x0000001000000000,
3578
3586 ConvertLayerToFigureObject = 0x0000002000000000,
3587
3596
3604 ClearLayers = 0x0000008000000000,
3605
3613 ZoomFitToLayers = 0x0000010000000000,
3614
3622 Image_Flip = 0x0000020000000000,
3623
3631 Image_Rotate = 0x0000040000000000,
3632
3640 CopyPaste = 0x0000080000000000,
3641
3649 ShowImageInfo = 0x0000100000000000,
3650
3658 SetFloatingImageValueRange = 0x0000200000000000,
3659
3667 Help = 0x0000400000000000,
3668
3676 Object_GlobalSetting = 0x0000800000000000,
3677
3685 ClearAllObjects = 0x0001000000000000,
3686
3693 PixelSegmentationMode = 0x0002000000000000,
3694
3702 RearrangePageOrder = 0x0004000000000000,
3703
3710 SetDecimalPlaceOfCoordinate = 0x0008000000000000,
3711
3719 ClearPage = 0x0010000000000000,
3720
3728 ReductionInterpolation = 0x0020000000000000,
3729
3737 ClearNamedLayer = 0x0040000000000000,
3738
3747
3756
3765
3773 ZoomFitToNamedLayer = 0x0400000000000000,
3774
3782 ShowNamedLayer = 0x0800000000000000,
3783
3791 MiniMap_ShowNamedLayer = 0x1000000000000000,
3792
3800 Figure_FreeDraw = 0x2000000000000000,
3801
3809 ImagePage_InvertSelection = 0x4000000000000000,
3810
3818 AutoSaveImage = 0x8000000000000000,
3819 };
3820
3822 {
3823 return static_cast<EAvailableViewImageContextMenu>(static_cast<int64_t>(a) | static_cast<int64_t>(b));
3824 }
3825
3827 {
3828 return static_cast<EAvailableViewImageContextMenu>(static_cast<int64_t>(a) & static_cast<int64_t>(b));
3829 }
3830
3832 {
3833 return a = a | b;
3834 }
3835
3837 {
3838 return a = a & b;
3839 }
3840
3842 {
3843 return static_cast<EAvailableViewImageContextMenu>(~static_cast<int64_t>(a));
3844 }
3845
3846 inline bool operator!(EAvailableViewImageContextMenu a)
3847 {
3848 return static_cast<bool>(!static_cast<int64_t>(a));
3849 }
3850
3857 public enum class EGUIViewImageHitArea
3858 {
3866 None = 0x000000,
3867
3875 MiniMap = 0x000001,
3876
3885
3893 ThumbnailView = 0x000004,
3894
3903
3911 Thumbnail = 0x000010,
3912
3920 Figure = 0x000020,
3921
3929 MultiFigures = 0x000040,
3930
3938 ImageFigure = 0x000080,
3939
3948
3956 StatusBar = 0x000200,
3957
3965 PageIndex = 0x000400,
3966
3974 PrevPageArrow = 0x000800,
3975
3983 NextPageArrow = 0x001000,
3984
3992 Measurement = 0x002000,
3993
4002 };
4003
4005 {
4006 return static_cast<EGUIViewImageHitArea>(static_cast<int32_t>(a) | static_cast<int32_t>(b));
4007 }
4008
4010 {
4011 return static_cast<EGUIViewImageHitArea>(static_cast<int32_t>(a) & static_cast<int32_t>(b));
4012 }
4013
4014 inline EGUIViewImageHitArea operator~(EGUIViewImageHitArea a)
4015 {
4016 return static_cast<EGUIViewImageHitArea>(~static_cast<int32_t>(a));
4017 }
4018
4019 inline bool operator!(EGUIViewImageHitArea a)
4020 {
4021 return static_cast<bool>(!static_cast<int32_t>(a));
4022 }
4023
4024 inline const EGUIViewImageHitArea& operator|=(EGUIViewImageHitArea& a, const EGUIViewImageHitArea& b)
4025 {
4026 return a = a | b;
4027 }
4028
4029 inline const EGUIViewImageHitArea& operator&=(EGUIViewImageHitArea& a, const EGUIViewImageHitArea& b)
4030 {
4031 return a = a & b;
4032 }
4033
4041 public enum class EObjectFigureHitTest : int64_t
4042 {
4050 None = 0x00000,
4051
4059 Move = 0x00001,
4060
4068 Rotate = 0x00002,
4069
4077 Transform = 0x00004,
4078
4085 Inflate = 0x00008,
4086
4094 Select = 0x00010,
4095
4096
4104 GripVertex = 0x00020,
4105
4113 GripLine = 0x00040,
4114
4122 ArcDegree = 0x00080,
4123
4132
4141
4150
4159
4167 GripArc = 0x01000,
4168
4177
4186
4195
4204
4213
4222
4231
4239 ExclusiveRegion = 0x8000000,
4240
4249
4258
4267
4276
4284 Hover = 0x100000000,
4285 };
4286
4288 {
4289 return static_cast<EObjectFigureHitTest>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
4290 }
4291
4293 {
4294 return static_cast<EObjectFigureHitTest>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
4295 }
4296
4297 inline const EObjectFigureHitTest& operator|=(EObjectFigureHitTest& a, const EObjectFigureHitTest& b)
4298 {
4299 return a = a | b;
4300 }
4301
4302 inline const EObjectFigureHitTest& operator&=(EObjectFigureHitTest& a, const EObjectFigureHitTest& b)
4303 {
4304 return a = a & b;
4305 }
4306
4307 inline EObjectFigureHitTest operator~(EObjectFigureHitTest a)
4308 {
4309 return static_cast<EObjectFigureHitTest>(~static_cast<uint64_t>(a));
4310 }
4311
4312 inline bool operator!(EObjectFigureHitTest a)
4313 {
4314 return static_cast<bool>(!static_cast<uint64_t>(a));
4315 }
4316
4323 public enum class ETeachingMode
4324 {
4332 None = 0,
4333
4342
4351
4360
4369
4378 };
4379
4386 public enum class EGUIViewImagePenStyle
4387 {
4396
4405
4414
4422
4430
4439
4447
4455
4463
4471
4479 };
4480
4488 public enum class EGUIViewImageFontWeight
4489 {
4498
4506 THIN = 100,
4507
4516
4524 LIGHT = 300,
4525
4533 NORMAL = 400,
4534
4542 MEDIUM = 500,
4543
4552
4559 BOLD = 700,
4560
4568
4575 HEAVY = 900,
4576
4584
4592
4600
4608
4616 };
4617
4626 {
4633 TOP = 0x0000,
4634
4641 BOTTOM = 0x0010,
4642
4649 CENTER = 0x0020,
4650
4657 MASK = 0x0030,
4658 };
4659
4667 {
4674 LEFT = 0x0000,
4675
4682 RIGHT = 0x0001,
4683
4690 CENTER = 0x0002,
4691
4698 JUSTIFIED = 0x0004,
4699
4707
4714 LEFT_TOP = 0x0000,
4715
4722 RIGHT_TOP = 0x0001,
4723
4730 CENTER_TOP = 0x0002,
4731
4738 LEFT_BOTTOM = 0x0010,
4739
4747
4755
4762 LEFT_CENTER = 0x0020,
4763
4771
4779
4787 };
4788
4789 enum
4790 {
4798
4806 };
4807
4814 public enum class EZoomMode
4815 {
4823
4831
4839 };
4840
4847 public enum class EViewImageSyncOption
4848 {
4855 None = 0,
4856
4864
4872
4880 };
4881
4888 public enum class EFileFormat
4889 {
4897
4905
4913
4921
4929
4937 };
4938
4945 public enum class ELayerDrawingMethod
4946 {
4953 Auto = 0x00000000,
4954
4961 Manual = 0x00000001,
4962 };
4963
4970 public enum class ELayerAutoClearMode : int64_t
4971 {
4978 None = 0x00000000,
4979
4986 All = 0xffffffff,
4987
4994 PageChanged = 0x00000001,
4995
5002 SetImage = 0x00000002,
5003 };
5004
5006 {
5007 return static_cast<ELayerAutoClearMode>(static_cast<int64_t>(a) | static_cast<int64_t>(b));
5008 }
5009
5011 {
5012 return static_cast<ELayerAutoClearMode>(static_cast<int64_t>(a) & static_cast<int64_t>(b));
5013 }
5014
5015 inline ELayerAutoClearMode operator~(ELayerAutoClearMode a)
5016 {
5017 return static_cast<ELayerAutoClearMode>(~static_cast<int64_t>(a));
5018 }
5019
5020 inline bool operator!(ELayerAutoClearMode a)
5021 {
5022 return static_cast<bool>(!static_cast<int64_t>(a));
5023 }
5024
5031 public enum class EOrientation
5032 {
5040
5048 };
5049
5056 public enum class EControl
5057 {
5065
5073
5081
5089
5097
5105
5113
5121
5129
5137
5145
5153
5161
5169
5177
5185
5193
5201 };
5202
5209 public enum class EAvailableFigureContextMenu : uint64_t
5210 {
5217 None = 0x00000000,
5218
5225 PushBackToImage = 0x00000001,
5226
5233 MakeFigureValid = 0x00000002,
5234
5241 SetName = 0x00000004,
5242
5250
5257 EditFigure = 0x00000008,
5258
5266
5274
5282
5290
5291
5299
5307
5314 MagnetAngle = 0x00000400,
5315
5323
5331
5338 SwitchToPoint = 0x00001000,
5339
5346 SwitchToLine = 0x00002000,
5347
5354 SwitchToRect = 0x00004000,
5355
5362 SwitchToQuad = 0x00008000,
5363
5370 SwitchToCircle = 0x00010000,
5371
5378 SwitchToEllipse = 0x00020000,
5379
5386 SwitchToDoughnut = 0x00040000,
5387
5395
5403
5411
5419
5426 SwitchToRegion = 0x00800000,
5427
5435
5442 SwitchToRoundRect = 0x02000000,
5443
5451
5459
5466 ArcClosingMethod = 0x10000000,
5467
5474 ConfirmFigure = 0x20000000,
5475
5482 CancelFigure = 0x40000000,
5483
5490 DeleteFigure = 0x80000000,
5491
5498 SetInstantApplyFigure = 0x0000000100000000,
5499
5506 GetRegion = 0x0000000200000000,
5507
5514 DeletePoint = 0x0000000400000000,
5515
5522 ShowInformationText = 0x0000000800000000,
5523
5530 ShowWindingSequence = 0x0000001000000000,
5531
5538 ShowControlPoint = 0x0000002000000000,
5539
5547
5555
5562 BringToFront = 0x0000008000000000,
5563
5570 BringForward = 0x0000010000000000,
5571
5578 SendToBack = 0x0000020000000000,
5579
5586 SendBackward = 0x0000040000000000,
5587
5595
5602 AssignFigure = 0x0000080000000000,
5603
5610 Group = 0x0000100000000000,
5611
5618 Ungroup = 0x0000200000000000,
5619
5626 SaveFigureToFileSystem = 0x0000400000000000,
5627
5634 FlattenFigureArray = 0x0000800000000000,
5635
5642 FigureArrayChangeZOrder = 0x0001000000000000,
5643
5650 GetIntersection = 0x0002000000000000,
5651
5658 GetConvexHull = 0x0010000000000000,
5659
5666 GetBoundary = 0x0020000000000000,
5667
5674 GetMinimumEnclosingRectangle = 0x0040000000000000,
5675
5683
5690 Sort = 0x0080000000000000,
5691
5698 ClearExclusiveRegion = 0x0100000000000000,
5699
5706 EnableRasterOperation = 0x0200000000000000,
5707
5714 Expression = 0x0400000000000000,
5715
5722 GetPointsOfMinimumDistance = 0x0800000000000000,
5723
5730 GetPointsOfMaximumDistance = 0x1000000000000000,
5731
5739
5746 All = 0xffffffffffffffff
5747 };
5748
5750 {
5751 return static_cast<EAvailableFigureContextMenu>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
5752 }
5753
5755 {
5756 return static_cast<EAvailableFigureContextMenu>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
5757 }
5758
5760 {
5761 return a = a | b;
5762 }
5763
5765 {
5766 return a = a & b;
5767 }
5768
5770 {
5771 return static_cast<EAvailableFigureContextMenu>(~static_cast<uint64_t>(a));
5772 }
5773
5774 inline bool operator!(EAvailableFigureContextMenu a)
5775 {
5776 return static_cast<bool>(!static_cast<uint64_t>(a));
5777 }
5778
5785 public enum class EAvailableFigureContextMenu2 : uint64_t
5786 {
5793 None = 0x00000000,
5794
5802
5810
5818
5826
5834
5842
5850
5858
5866
5874
5882
5890
5898
5906
5914
5922
5930
5938
5946
5954
5955
5963
5970 SetArcDegree = 0x200000000,
5971
5978 Flip = 0x400000000,
5979
5986 Rotate = 0x800000000,
5987
5994 Warp_Perspective = 0x1000000000,
5995
6002 Warp_Bilinear = 0x2000000000,
6003
6010 Warp_Bicubic = 0x4000000000,
6011
6018 Warp_Lanczos = 0x8000000000,
6019
6026 Warp_ThinPlate = 0x10000000000,
6027
6029
6036 Extend = 0x20000000000,
6037
6044 Scale = 0x40000000000,
6045
6052 Inflate = 0x80000000000,
6053
6060 FitToImage = 0x100000000000,
6061
6068 Reduce = 0x200000000000,
6069
6076 SetAttribute = 0x400000000000,
6077
6084 Split = 0x800000000000,
6085
6093
6101
6108 All = 0xffffffffffffffff
6109 };
6110
6112 {
6113 return static_cast<EAvailableFigureContextMenu2>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
6114 }
6115
6117 {
6118 return static_cast<EAvailableFigureContextMenu2>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
6119 }
6120
6122 {
6123 return a = a | b;
6124 }
6125
6127 {
6128 return a = a & b;
6129 }
6130
6132 {
6133 return static_cast<EAvailableFigureContextMenu2>(~static_cast<uint64_t>(a));
6134 }
6135
6136 inline bool operator!(EAvailableFigureContextMenu2 a)
6137 {
6138 return static_cast<bool>(!static_cast<uint64_t>(a));
6139 }
6140
6148 {
6155 None = 0x00000000,
6156
6163 All = 0xffffffffffffffff,
6164
6171 ShowFigure = 0x00000001,
6172
6179 ShowText = 0x00000002,
6180
6187 EnableHover = 0x00000004,
6188
6195 SetZOrder = 0x00000008,
6196
6203 ByCondition = 0x00000010,
6204
6211 Popup = 0x00000020,
6212
6219 PopupAll = 0x00000040,
6220
6228
6235 Remove = 0x00000080,
6236
6244
6251 ClearAll = 0x00000100,
6252
6260
6268
6275 Copy = 0x00000800,
6276
6283 Paste = 0x00001000,
6284
6291 SetOpacity = 0x00002000,
6292
6299 SetRealSizeText = 0x00004000,
6300
6307 SetTextFont = 0x00008000,
6308
6316 };
6317
6319 {
6320 return static_cast<EAvailableViewImageContextMenuImageFigure>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
6321 }
6322
6324 {
6325 return static_cast<EAvailableViewImageContextMenuImageFigure>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
6326 }
6327
6329 {
6330 return a = a | b;
6331 }
6332
6334 {
6335 return a = a & b;
6336 }
6337
6339 {
6340 return static_cast<EAvailableViewImageContextMenuImageFigure>(~static_cast<uint64_t>(a));
6341 }
6342
6343 inline bool operator!(EAvailableViewImageContextMenuImageFigure a)
6344 {
6345 return static_cast<bool>(!static_cast<uint64_t>(a));
6346 }
6347
6354 public enum class EFigureObjectInformationText : uint64_t
6355 {
6362 None = 0x0000,
6363
6370 Coordinate = 0x0001,
6371
6378 Size = 0x0002,
6379
6386 Angle = 0x0004,
6387
6395
6403
6411
6419
6427 };
6428
6430 {
6431 return static_cast<EFigureObjectInformationText>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
6432 }
6433
6435 {
6436 return static_cast<EFigureObjectInformationText>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
6437 }
6438
6440 {
6441 return static_cast<EFigureObjectInformationText>(~static_cast<uint64_t>(a));
6442 }
6443
6444 inline bool operator!(EFigureObjectInformationText a)
6445 {
6446 return static_cast<bool>(!static_cast<uint64_t>(a));
6447 }
6448
6455 public enum class EKeyType : uint64_t
6456 {
6463 F5 = 0x05,
6464
6471 F6 = 0x06,
6472
6479 F7 = 0x07,
6480
6487 F8 = 0x08,
6488
6495 F9 = 0x09,
6496
6503 F10 = 0x0A,
6504
6511 F11 = 0x0B,
6512 };
6513
6520 public enum class EModifierKeyType : uint64_t
6521 {
6528 None = 0x00,
6529
6536 LCONTROL = 0x01,
6537
6544 LSHIFT = 0x02,
6545
6552 LMENU = 0x04,
6553
6560 Count = 0x08,
6561 };
6562
6564 {
6565 return static_cast<EModifierKeyType>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
6566 }
6567
6569 {
6570 return static_cast<EModifierKeyType>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
6571 }
6572
6573 inline EModifierKeyType operator~(EModifierKeyType a)
6574 {
6575 return static_cast<EModifierKeyType>(~static_cast<uint64_t>(a));
6576 }
6577
6578 inline bool operator!(EModifierKeyType a)
6579 {
6580 return static_cast<bool>(!static_cast<uint64_t>(a));
6581 }
6582
6589 public enum class ECodeType
6590 {
6597 Cpp = 0,
6598
6606
6614 };
6615
6622 public enum class ESortOrder
6623 {
6630 None = 0,
6631
6639
6647
6655 };
6656
6663 public enum class EMenuItemPaneMenuTree
6664 {
6672
6680
6688
6696
6704
6712
6720
6728
6736
6744
6752
6760
6768
6776
6784
6792
6800
6808
6816
6824
6832
6840
6848
6856
6864
6872
6880
6888
6896
6904
6912
6920
6928
6936
6944
6952
6960
6968 };
6969
6976 public enum class EPaneType
6977 {
6984 None = 0x0000,
6985
6992 Menu = 0x0001,
6993
7000 Properties = 0x0002,
7001
7008 Log = 0x0004,
7009
7016 Code = 0x0008,
7017
7024 ExampleSNAP = 0x0010,
7025
7033
7041
7048 ColorTable = 0x0080,
7049
7056 ViewGraph = 0x0100,
7057
7064 Sheet = 0x0200,
7065
7073
7081 };
7082
7083 inline EPaneType operator|(EPaneType a, EPaneType b)
7084 {
7085 return static_cast<EPaneType>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
7086 }
7087
7088 inline EPaneType operator&(EPaneType a, EPaneType b)
7089 {
7090 return static_cast<EPaneType>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
7091 }
7092
7093 inline EPaneType operator~(EPaneType a)
7094 {
7095 return static_cast<EPaneType>(~static_cast<uint64_t>(a));
7096 }
7097
7098 inline bool operator!(EPaneType a)
7099 {
7100 return static_cast<bool>(!static_cast<uint64_t>(a));
7101 }
7102
7110 {
7117 None = 0x0000,
7118
7125 ImageEdge = 0x0001,
7126
7133 ImageCenter = 0x0002,
7134
7142
7149 FigureEdge = 0x0004,
7150
7158
7166
7174 };
7175
7182 public enum class EGUIAlignment
7183 {
7190 LEFT = 0x0000,
7191
7198 RIGHT = 0x0001,
7199
7206 CENTER = 0x0002,
7207
7214 JUSTIFIED = 0x0004,
7215
7222 LEFT_TOP = 0x0000,
7223
7230 RIGHT_TOP = 0x0001,
7231
7238 CENTER_TOP = 0x0002,
7239
7246 LEFT_BOTTOM = 0x0010,
7247
7255
7263
7270 LEFT_CENTER = 0x0020,
7271
7279
7287
7295
7303
7310 MASK = 0x0037,
7311 };
7312
7319 public enum class EGUIStringTrimming
7320 {
7327 None = 0,
7328
7336
7343 Word = 2,
7344
7352
7360
7368 };
7369
7376 public enum class EProgressCtrlTextMode : uint32_t
7377 {
7385
7393
7401
7409 };
7410
7417 public enum class EViewImageMouseCapturePolicy : uint64_t
7418 {
7425 None = 0x0000,
7426
7434
7441 FreeDraw = 0x0002,
7442
7450
7457 MultiSelect = 0x0008,
7458
7465 Panning = 0x0010,
7466
7473 All = 0xffff,
7474 };
7475
7477 {
7478 return static_cast<EViewImageMouseCapturePolicy>(static_cast<uint64_t>(a) | static_cast<uint64_t>(b));
7479 }
7480
7482 {
7483 return static_cast<EViewImageMouseCapturePolicy>(static_cast<uint64_t>(a) & static_cast<uint64_t>(b));
7484 }
7485
7487 {
7488 return a = a | b;
7489 }
7490
7492 {
7493 return a = a & b;
7494 }
7495
7497 {
7498 return static_cast<EViewImageMouseCapturePolicy>(~static_cast<uint64_t>(a));
7499 }
7500
7501 inline bool operator!(EViewImageMouseCapturePolicy a)
7502 {
7503 return static_cast<bool>(!static_cast<uint64_t>(a));
7504 }
7505
7512 public enum class EPermission
7513 {
7520 View = 0x1,
7521
7529 };
7530
7538 {
7546
7554
7562
7570 };
7571
7572
7579 public enum class EViewImageStatusBarItem
7580 {
7588
7596
7604
7612
7620
7628
7636
7644
7652
7660
7668
7676 };
7677
7678 }
7679}
ELayerAutoClearMode
In auto clear mode of the image view layer, lists cases in which auto clear of the layer is applied a...
Definition DefinitionsGUI.h:4971
@ PageChanged
If the page of the image above the image view changes.
Definition DefinitionsGUI.h:4994
@ SetImage
If the image above the image view changes.
Definition DefinitionsGUI.h:5002
ECoordinateOrientation2D
Types of Coordinate Systems (Categorized by the Direction of X-Axis and Y-Axis Increments)
Definition DefinitionsGUI.h:7538
@ X_Right_Y_Up
x: increases rightwards, y: increases upwards
Definition DefinitionsGUI.h:7553
@ X_Right_Y_Down
x: increases rightwards, y: increases downwards
Definition DefinitionsGUI.h:7545
@ X_Left_Y_Down
x: increases leftwards, y: increases downwards
Definition DefinitionsGUI.h:7561
@ X_Left_Y_Up
x: increases leftwards, y: increases upwards
Definition DefinitionsGUI.h:7569
EControl
Control.
Definition DefinitionsGUI.h:5057
@ GridLayout
Grid Layout.
Definition DefinitionsGUI.h:5192
@ ProgressBar
ProgressBar.
Definition DefinitionsGUI.h:5160
@ ProgressBarFloatingPoint
Floating Point Progress Bar.
Definition DefinitionsGUI.h:5168
@ Slider
Slider.
Definition DefinitionsGUI.h:5144
@ StaticText
Static Text.
Definition DefinitionsGUI.h:5072
@ CheckBox
Check Box.
Definition DefinitionsGUI.h:5128
@ ListCtrl
List Ctrl.
Definition DefinitionsGUI.h:5112
@ Sheet
Sheet (Table)
Definition DefinitionsGUI.h:5176
@ Button
Button.
Definition DefinitionsGUI.h:5136
@ ListCtrlMassive
List Ctrl Massive.
Definition DefinitionsGUI.h:5120
@ ComboBox_Editable
Combo Box with Edit control.
Definition DefinitionsGUI.h:5104
@ SliderFloatingPoint
SliderFloatingPoint.
Definition DefinitionsGUI.h:5152
@ EditCtrl
Edit Ctrl.
Definition DefinitionsGUI.h:5080
@ Password
Password Edit Ctrl.
Definition DefinitionsGUI.h:5088
@ BoxLayout
Box Layout.
Definition DefinitionsGUI.h:5184
@ ComboBox
Combo Box.
Definition DefinitionsGUI.h:5096
EAvailableViewImageContextMenu
Available context menu for image view.
Definition DefinitionsGUI.h:3230
@ ZoomFitToLayers
Scale and Offset adjustment so that Figures and text on the layer fit to the screen.
Definition DefinitionsGUI.h:3613
@ Measure
Measurement Menu.
Definition DefinitionsGUI.h:3487
@ Image_Rotate
Image rotation menu.
Definition DefinitionsGUI.h:3631
@ Figure_Create
Figure creation menu.
Definition DefinitionsGUI.h:3496
@ ImageFigure
All context menu for ImageFigure (Figure stored in Image), including this flag, activate all menu in ...
Definition DefinitionsGUI.h:3256
@ Zoom
Scale menu in image view.
Definition DefinitionsGUI.h:3354
@ PageControl
Page Move Menu.
Definition DefinitionsGUI.h:3345
@ Figure_FreeDraw
Freehand drawing menu.
Definition DefinitionsGUI.h:3800
@ RearrangePageOrder
Image page reordering.
Definition DefinitionsGUI.h:3702
@ CopyPaste
Copy and paste images menu.
Definition DefinitionsGUI.h:3640
@ ClearPage
Clear pages of the image.
Definition DefinitionsGUI.h:3719
@ Figure_ClearFigure
Clear Figure menu.
Definition DefinitionsGUI.h:3514
@ Image_Flip
Image flip menu.
Definition DefinitionsGUI.h:3622
@ ClearLayers
Clear layers Menu.
Definition DefinitionsGUI.h:3604
@ Figure_Load
Load Figure menu.
Definition DefinitionsGUI.h:3505
@ PixelNumberMode
Pixel value mode setting menu.
Definition DefinitionsGUI.h:3443
@ ThumbnailView
Image thumbnail view Menu.
Definition DefinitionsGUI.h:3336
@ ImageMiniMap
Image Mini Map Menu.
Definition DefinitionsGUI.h:3318
@ SyncView
View Synchronization menu.
Definition DefinitionsGUI.h:3523
EGUIViewImageTextAlignment
Alignment text in an image view.
Definition DefinitionsGUI.h:4667
@ VERTICAL_MASK
Vertical alignment mask (top, center, bottom alignment)
Definition DefinitionsGUI.h:4786
@ RIGHT_TOP
Alignment with the reference point at the top right of the text.
Definition DefinitionsGUI.h:4722
@ RIGHT
Alignment with the reference point on the right side of the text.
Definition DefinitionsGUI.h:4682
@ RIGHT_BOTTOM
Alignment with the reference point at the bottom right of the text.
Definition DefinitionsGUI.h:4746
@ JUSTIFIED
Justified alignment on both sides.
Definition DefinitionsGUI.h:4698
@ LEFT_BOTTOM
Alignment with the reference point at the bottom left of the text.
Definition DefinitionsGUI.h:4738
@ LEFT_TOP
Alignment with the reference point at the top left of the text.
Definition DefinitionsGUI.h:4714
@ LEFT
Alignment with the reference point on the left side of the text.
Definition DefinitionsGUI.h:4674
@ RIGHT_CENTER
Alignment with the reference point at the right center (vertical) of the text.
Definition DefinitionsGUI.h:4770
@ LEFT_CENTER
Alignment with the reference point at the left center (vertical) of the text.
Definition DefinitionsGUI.h:4762
@ CENTER_TOP
Alignment with the reference point at the top center (horizontal) of the text.
Definition DefinitionsGUI.h:4730
@ CENTER_BOTTOM
Alignment with the reference point at the bottom center (horizontal) of the text.
Definition DefinitionsGUI.h:4754
@ HORIZONTAL_MASK
Horizontal alignment mask (left, center, right alignment)
Definition DefinitionsGUI.h:4706
@ CENTER_CENTER
Alignment with the reference point at the center (horizontal and vertical) of the text.
Definition DefinitionsGUI.h:4778
EViewImageStatusBarItem
Status Bar Item of CGUIViewImage.
Definition DefinitionsGUI.h:7580
@ ImageWidth
Image width.
Definition DefinitionsGUI.h:7611
@ ImageChannels
Image channels.
Definition DefinitionsGUI.h:7635
@ CursorX
Mouse cursor X coordinate.
Definition DefinitionsGUI.h:7651
@ PixelValueAtCursor
Pixel value at cursor.
Definition DefinitionsGUI.h:7667
@ ImageHeight
Image height.
Definition DefinitionsGUI.h:7619
@ ZoomLevel
Zoom level.
Definition DefinitionsGUI.h:7643
@ CursorY
Mouse cursor Y coordinate.
Definition DefinitionsGUI.h:7659
@ FileAndPageName
File / page name.
Definition DefinitionsGUI.h:7587
@ ImageDepth
Image depth.
Definition DefinitionsGUI.h:7627
@ CurrentPage
Current page index item.
Definition DefinitionsGUI.h:7595
@ TotalPages
Total pages count.
Definition DefinitionsGUI.h:7603
EImageFlipDirection
Direction of flip.
Definition DefinitionsGUI.h:3185
@ Vertical
Vertical direction.
Definition DefinitionsGUI.h:3211
@ Both
Vertical and horizontal direction.
Definition DefinitionsGUI.h:3220
@ Horizontal
Horizontal direction.
Definition DefinitionsGUI.h:3202
EGUIAlignment
Alignment information.
Definition DefinitionsGUI.h:7183
@ EGUIAlignmentHorizontal_MASK
Horizontal alignment mask.
Definition DefinitionsGUI.h:7294
@ EGUIAlignmentVertical_MASK
Vertical alignment mask.
Definition DefinitionsGUI.h:7302
EViewImageMouseCapturePolicy
Flags that control under which conditions mouse capture is enabled for the image view.
Definition DefinitionsGUI.h:7418
@ MultiSelect
Enables mouse capture during multi-selection operations using a selection rectangle.
Definition DefinitionsGUI.h:7457
@ TransformFigure
Enables mouse capture during figure transformation operations such as move, rotate,...
Definition DefinitionsGUI.h:7449
@ TeachFigureAndMeasurement
Enables mouse capture during figure teaching and measurement operations.
Definition DefinitionsGUI.h:7433
EAvailableFigureContextMenu2
Available Context Menu for Figure Objects.
Definition DefinitionsGUI.h:5786
@ Extend
Extend directional Figures (Line, Rect, Quad, Ellipse) in the direction each figure is directed to.
Definition DefinitionsGUI.h:6036
@ SetArcDegree
Change start degree and delta degree for circle, ellipse, and doughnut objects.
Definition DefinitionsGUI.h:5970
@ ConvertTemplateTypeElementwise_ToAllType
Convert Data Type to all type.
Definition DefinitionsGUI.h:5962
@ Flip
Flip based on the center of gravity in Figure.
Definition DefinitionsGUI.h:5978
@ ConvertDeclTypeElementwise_ToAllType
All conversion menu.
Definition DefinitionsGUI.h:5921
@ SetAttribute
A menu to set attributes.
Definition DefinitionsGUI.h:6076
EMenuItemObjectFigure
Menu items related to manipulatable Figure objects in the image view.
Definition DefinitionsGUI.h:1493
@ SwitchToPoint
Change figure type to Point.
Definition DefinitionsGUI.h:1907
@ DeclType_Array
Create figure of Array.
Definition DefinitionsGUI.h:1687
@ SwitchToRect
Change figure type to Rect.
Definition DefinitionsGUI.h:1923
@ DeclType_ComplexRegion
Create figure of ComplexRegion.
Definition DefinitionsGUI.h:1679
@ DeselectFigure
Deselect figure.
Definition DefinitionsGUI.h:2171
@ FitToImage
Fit figure to image width and height.
Definition DefinitionsGUI.h:1803
@ SetNameAndPushBackToImage
Set figure name and then push back figure to image.
Definition DefinitionsGUI.h:1542
@ SetTarget
Set the selected figure as the target for figure operations (such as transformations).
Definition DefinitionsGUI.h:2547
@ SwitchToBezierQuarticCurve
Change figure type to BezierQuarticCurve.
Definition DefinitionsGUI.h:1987
@ MakeFigureValid
Make figure valid.
Definition DefinitionsGUI.h:1560
@ Load_GBR
Load GBR (Gerber) file.
Definition DefinitionsGUI.h:1525
@ GetRegionOfSubtraction
Get subtraction region of two or more figures.
Definition DefinitionsGUI.h:2131
@ GetRegionOfExclusiveOr
Get exclusive or region of two or more figures.
Definition DefinitionsGUI.h:2139
@ Sort_SortOrder2D_Y_Desc_X_Desc
1st Descending Y, 2nd Descending X
Definition DefinitionsGUI.h:2671
@ TemplateType_Int32
Change figure template type to Int32.
Definition DefinitionsGUI.h:1771
@ SwitchToEllipse
Change figure type to Ellipse.
Definition DefinitionsGUI.h:1947
@ Flip_Vertical_Elementwise
A menu to individually flip each of the selected figures or each element in the FigureArray in the ve...
Definition DefinitionsGUI.h:2339
@ DeclType_BezierCubicCurve
Create figure of BezierCubicCurve.
Definition DefinitionsGUI.h:1655
@ Rotate90
Rotate figure 90 degree.
Definition DefinitionsGUI.h:2363
@ ShowWindingDirection
Show winding direction of selected figure.
Definition DefinitionsGUI.h:2179
@ Flip_Vertical
Flip figure in the vertical direction.
Definition DefinitionsGUI.h:2331
@ ConvertTemplateTypeElementwise_ToInt32
Change figure template type to Int32.
Definition DefinitionsGUI.h:2943
@ EnableRasterOperation
Set raster operation of figure.
Definition DefinitionsGUI.h:2807
@ ConvertDeclTypeElementwise_ToBezierQuarticCurve
Change figure type to BezierQuarticCurve.
Definition DefinitionsGUI.h:2903
@ SwitchToDoughnut
Change figure type to Doughnut.
Definition DefinitionsGUI.h:1955
@ GetBoundary_Elementwise
Menu to obtain individual boundary rectangles for each element within the multiple selected shapes or...
Definition DefinitionsGUI.h:2563
@ ConvertDeclTypeElementwise_ToCircle
Change figure type to Circle.
Definition DefinitionsGUI.h:2855
@ Sort_SortOrder2D_X_Asc_Y_Asc
1st Ascending X, 2nd Ascending Y
Definition DefinitionsGUI.h:2679
@ GetConvexHull
Get convex hull of selected figure.
Definition DefinitionsGUI.h:2523
@ MakeArc
Make full circle arc.
Definition DefinitionsGUI.h:2035
@ Sort_SortOrder2D_X_Desc_Y_Asc
1st Descending X, 2nd Ascending Y
Definition DefinitionsGUI.h:2695
@ PushBackToImage
PushBack figure to image.
Definition DefinitionsGUI.h:1551
@ GetRegionOfIntersection
Get intersection region of two or more figures.
Definition DefinitionsGUI.h:2115
@ ConvertTemplateTypeElementwise_ToFloat
Change figure template type to Float.
Definition DefinitionsGUI.h:2959
@ SwitchToQuad
Change figure type to Quad.
Definition DefinitionsGUI.h:1931
@ GetMinimumEnclosingRectangle_Elementwise
Menu to obtain individual minimum enclosing rectangles for each element within the multiple selected ...
Definition DefinitionsGUI.h:2579
@ Sort_SortOrder2D_X_Desc_Y_Desc
1st Descending X, 2nd Ascending Y
Definition DefinitionsGUI.h:2703
@ Warp_Bilinear
Warp transform a figure using the bilinear projection.
Definition DefinitionsGUI.h:2443
@ ComplexRegion_SwitchToBezierQuarticCurve
Change selected segment type to BezierQuarticCurve.
Definition DefinitionsGUI.h:1883
@ Rotate180
Rotate figure 180 degree.
Definition DefinitionsGUI.h:2379
@ Flip_Both
Flip figure in the horizontal and vertical direction.
Definition DefinitionsGUI.h:2347
@ DeclType_Region
Create figure of Region.
Definition DefinitionsGUI.h:1671
@ DeclType_RoundRect
Create figure of RoundRect.
Definition DefinitionsGUI.h:1711
@ SwitchToRegion
Change figure type to Region.
Definition DefinitionsGUI.h:1995
@ Sort_SortOrder2D_Y_Desc_X_Asc
1st Descending Y, 2nd Ascending X
Definition DefinitionsGUI.h:2663
@ SetInstantApplyFigure
Apply change of figure instantly.
Definition DefinitionsGUI.h:2099
@ AssignFigure
Assign figure.
Definition DefinitionsGUI.h:2975
@ SwitchToCircle
Change figure type to Circle.
Definition DefinitionsGUI.h:1939
@ GetPointsOfMaximumDistance_Elementwise
Get points of the maximum distance for each element within the multiple selected Figures or FigureArr...
Definition DefinitionsGUI.h:2611
@ TemplateType_Float
Change figure template type to Float.
Definition DefinitionsGUI.h:1787
@ RotateArbitrary
Rotate figure with arbitrary degree.
Definition DefinitionsGUI.h:2411
@ DeclType_Line
Create figure of Line.
Definition DefinitionsGUI.h:1596
@ SwitchToBezierCubicCurve
Change figure type to BezierCubicCurve.
Definition DefinitionsGUI.h:1979
@ Load_DXF
Load DXF (Drawing Exchange Format) file.
Definition DefinitionsGUI.h:1517
@ Warp_ThinPlate
Warp transform a figure using the thin plate projection.
Definition DefinitionsGUI.h:2491
@ CenterType_CenterOfGravity
Set center type of figure as center of gravity.
Definition DefinitionsGUI.h:2719
@ ShowFigureArrayElementSequenceRecursively
Show FigureArray element sequence recursively.
Definition DefinitionsGUI.h:2203
@ Sort_SortOrder2D_X_Asc_Y_Desc
1st Ascending X, 2nd Descending Y
Definition DefinitionsGUI.h:2687
@ Warp_Perspective
Warp transform a figure using the perspective projection.
Definition DefinitionsGUI.h:2427
@ DeclType_Rect
Create figure of Rect.
Definition DefinitionsGUI.h:1605
@ Warp_ThinPlate_Elementwise
Menu for individually applying a ThinPlate deformation transformation to each element within a multi-...
Definition DefinitionsGUI.h:2499
@ MakeCircle
Make arc full circle.
Definition DefinitionsGUI.h:2027
@ ConvertDeclTypeElementwise_ToCubicSpline
Change figure type to CubicSpline.
Definition DefinitionsGUI.h:2879
@ SwitchToLine
Change figure type to Line.
Definition DefinitionsGUI.h:1915
@ DeclType_Circle
Create figure of Circle.
Definition DefinitionsGUI.h:1623
@ ClearFreeDraw
Clear all freehand drawings.
Definition DefinitionsGUI.h:1755
@ Warp_Lanczos
Warp transform a figure using the Lanczos projection.
Definition DefinitionsGUI.h:2475
@ ComplexRegion_SwitchToBezierQuadraticCurve
Change selected segment type to BezierQuadraticCurve.
Definition DefinitionsGUI.h:1867
@ FreeDrawEraser
Enter freehand eraser mode.
Definition DefinitionsGUI.h:1737
@ Rotate270
Rotate figure 270 degree.
Definition DefinitionsGUI.h:2395
@ SwitchTo_ApplyElementwise
Menu that applies to each element when setting a figure's DeclType.
Definition DefinitionsGUI.h:1899
@ ConvertDeclTypeElementwise_ToPointArray
Change figure type to PointArray.
Definition DefinitionsGUI.h:2935
@ EArcClosingMethod_EachOther
Set arc closing method each other.
Definition DefinitionsGUI.h:2051
@ ConvertDeclTypeElementwise_ToLine
Change figure type to Line.
Definition DefinitionsGUI.h:2831
@ ConvertTemplateTypeElementwise_ToDouble
Change figure template type to Double.
Definition DefinitionsGUI.h:2967
@ SwitchToCubicSpline
Change figure type to CubicSpline.
Definition DefinitionsGUI.h:1963
@ EArcClosingMethod_Center
Set arc closing method center.
Definition DefinitionsGUI.h:2043
@ Sort_SetClusterCoefficient
A menu that sets the coefficient value of cluster when sorting the Figure order with ClusterMode.
Definition DefinitionsGUI.h:2639
@ MagnetToImageBoundary
Toggle magnet mode to selected figure object to stick to the edge of the image.
Definition DefinitionsGUI.h:1819
@ Reduce_Elementwise
A menu to reduce the number of points for each of the selected figures or each element in the FigureA...
Definition DefinitionsGUI.h:2751
@ Sort_SortOrder2D_Y_Asc_X_Asc
1st Ascending Y, 2nd Ascending X
Definition DefinitionsGUI.h:2647
@ GroupSelectedFigures
Group selected figures.
Definition DefinitionsGUI.h:2243
@ DeclType_Doughnut
Create figure of Doughnut.
Definition DefinitionsGUI.h:1703
@ Edit
Edit figure properties.
Definition DefinitionsGUI.h:1578
@ FitToImage_Elementwise
A menu to individually fit each of the selected figures or each element in the FigureArray to image w...
Definition DefinitionsGUI.h:1811
@ GetMinimumEnclosingRectangle
Get minimum enclosing rectangle of selected figure.
Definition DefinitionsGUI.h:2571
@ DeclType_Text
Create figure of text.
Definition DefinitionsGUI.h:1719
@ OpenDialog_Transform_Elementwise
Menu to open the Figure transformation dialog(Elementwise).
Definition DefinitionsGUI.h:2515
@ DeclType_CubicSpline
Create figure of CubicSpline.
Definition DefinitionsGUI.h:1639
@ DeclType_Quad
Create figure of Quad.
Definition DefinitionsGUI.h:1614
@ ClearExclusiveRegion
Clear exclusive region of figure.
Definition DefinitionsGUI.h:2735
@ ComplexRegion_SwitchToEllipseArc
Change selected segment type to EllipseArc.
Definition DefinitionsGUI.h:1851
@ Scale
Menu for scaling the figure proportionally based on the pivot coordinates.
Definition DefinitionsGUI.h:2775
@ End
Synchronize the point of view with selected view.
Definition DefinitionsGUI.h:2991
@ CenterType_MinimumEnclosingRectangle
Set center type of figure as minimum enclosing rectangle.
Definition DefinitionsGUI.h:2727
@ DeleteFigure
Delete figure.
Definition DefinitionsGUI.h:2091
@ SwitchToRoundRect
Change figure type to RoundRect.
Definition DefinitionsGUI.h:2011
@ Flip_Horizontal_Elementwise
A menu to individually flip each of the selected figures or each element in the FigureArray in the ho...
Definition DefinitionsGUI.h:2323
@ Split
A menu to split a Rect to FigureArray.
Definition DefinitionsGUI.h:2759
@ ConfirmFigure
Confirm figure.
Definition DefinitionsGUI.h:2075
@ ConvertDeclTypeElementwise_ToRect
Change figure type to Rect.
Definition DefinitionsGUI.h:2839
@ FlattenFigureArray
If there are FigureArrays inside FigureArray, flatten the FugureArray.
Definition DefinitionsGUI.h:2227
@ FigureArrayChangeZOrder
A menu that changes the z-order of the inner element of FigureArray.
Definition DefinitionsGUI.h:2235
@ LeaveFreeDrawMode
Exit freehand pen or eraser mode.
Definition DefinitionsGUI.h:1746
@ TemplateType_Double
Change figure template type to Double.
Definition DefinitionsGUI.h:1795
@ GetIntersection
Get intersection coordinates of two or more figures.
Definition DefinitionsGUI.h:2107
@ ComplexRegion_SwitchToCubicSpline
Change selected segment type to CubicSpline.
Definition DefinitionsGUI.h:1859
@ ConvertDeclTypeElementwise_ToDoughnut
Change figure type to Doughnut.
Definition DefinitionsGUI.h:2871
@ HideFigure
Hide figure.
Definition DefinitionsGUI.h:2163
@ GetConvexHull_Elementwise
Menu to obtain individual Convex Hulls for each element within the multiple selected shapes or Figure...
Definition DefinitionsGUI.h:2531
@ DeclType_BezierQuadraticCurve
Create figure of BezierQuadraticCurve.
Definition DefinitionsGUI.h:1647
@ EArcClosingMethod_NoClose
Set arc closing method no close.
Definition DefinitionsGUI.h:2059
@ Warp_Bilinear_Elementwise
A menu to individually apply warp transformation using the Bilinear method to each of the selected fi...
Definition DefinitionsGUI.h:2451
@ Sort_ClusterMode
A menu that specifies cluster mode when sorting Figure.
Definition DefinitionsGUI.h:2629
@ Expression
Get Figure that meets a specific condition.
Definition DefinitionsGUI.h:2815
@ SwitchToBezierQuadraticCurve
Change figure type to BezierQuadraticCurve.
Definition DefinitionsGUI.h:1971
@ Rotate180_Elementwise
A menu to individually rotate each of the selected figures or each element in the FigureArray by 180 ...
Definition DefinitionsGUI.h:2387
@ Warp_Bicubic_Elementwise
A menu to individually apply warp transformation using the Bicubic method to each of the selected fig...
Definition DefinitionsGUI.h:2467
@ ConvertDeclTypeElementwise_ToBezierCubicCurve
Change figure type to BezierCubicCurve.
Definition DefinitionsGUI.h:2895
@ Inflate
Menu for inflating the figure to fit its bounding rectangle by the specified length.
Definition DefinitionsGUI.h:2791
@ Warp_Bicubic
Warp transform a figure using the bicubic projection.
Definition DefinitionsGUI.h:2459
@ Text_SetText
Set text of CFLFigureText object.
Definition DefinitionsGUI.h:1891
@ ConvertDeclTypeElementwise_ToQuad
Change figure type to Quad.
Definition DefinitionsGUI.h:2847
@ TemplateType_ApplyElementwise
Menu that applies to each element when setting a figure's TemplateType.
Definition DefinitionsGUI.h:1763
@ ConvertDeclTypeElementwise_ToRegion
Change figure type to Region.
Definition DefinitionsGUI.h:2911
@ Rotate270_Elementwise
A menu to individually rotate each of the selected figures or each element in the FigureArray by 270 ...
Definition DefinitionsGUI.h:2403
@ SwitchToPointArray
Change figure type to PointArray.
Definition DefinitionsGUI.h:2019
@ MagnetAngle
If the angle approaches a 90 degree multiple when rotating a figure object, the menu specifies the an...
Definition DefinitionsGUI.h:1827
@ RotateArbitrary_Elementwise
A menu to individually rotate each of the selected figures or each element in the FigureArray by an a...
Definition DefinitionsGUI.h:2419
@ ConvertDeclTypeElementwise_ToEllipse
Change figure type to Ellipse.
Definition DefinitionsGUI.h:2863
@ GetBoundary
Get boundary rectangle of selected figure.
Definition DefinitionsGUI.h:2555
@ ShowInformationText
Show information text of the figure.
Definition DefinitionsGUI.h:2219
@ ConvertDeclTypeElementwise_ToBezierQuadraticCurve
Change figure type to BezierQuadraticCurve.
Definition DefinitionsGUI.h:2887
@ ChangeMultiSelectOrder
Change multi select order of figures.
Definition DefinitionsGUI.h:2275
@ GetPointsOfMinimumDistance
Get points of the minimum distance.
Definition DefinitionsGUI.h:2587
@ FreeDraw
Enter freehand drawing mode.
Definition DefinitionsGUI.h:1728
@ GetPointsOfMinimumDistance_Elementwise
Get points of the minimum distance for each element within the multiple selected Figures or FigureArr...
Definition DefinitionsGUI.h:2595
@ Scale_Elementwise
A menu to scale each of the selected figures or each element in the FigureArray proportionally based ...
Definition DefinitionsGUI.h:2783
@ GroupSelectedFiguresToPointArray
Group selected figures to PointArray.
Definition DefinitionsGUI.h:2251
@ Warp_Lanczos_Elementwise
A menu to individually apply warp transformation using the Lanczos method to each of the selected fig...
Definition DefinitionsGUI.h:2483
@ Sort_Execute
A menu that sort Figure.
Definition DefinitionsGUI.h:2619
@ SwitchToComplexRegion
Change figure type to ComplexRegion.
Definition DefinitionsGUI.h:2003
@ DeclType_Ellipse
Create figure of Ellipse.
Definition DefinitionsGUI.h:1631
@ ComplexRegion_SwitchToBezierCubicCurve
Change selected segment type to BezierCubicCurve.
Definition DefinitionsGUI.h:1875
@ ShowControlPoint
Show control points of Cubic spline or Bezier curves.
Definition DefinitionsGUI.h:2211
@ DeclType_BezierQuarticCurve
Create figure of BezierQuarticCurve.
Definition DefinitionsGUI.h:1663
@ ComplexRegion_SwitchToLine
Change selected segment type to Line.
Definition DefinitionsGUI.h:1835
@ Clear
Clear all the figure objects.
Definition DefinitionsGUI.h:2067
@ ConvertDeclTypeElementwise_ToComplexRegion
Change figure type to ComplexRegion.
Definition DefinitionsGUI.h:2919
@ UngroupSelectedFigures
Ungroup selected figures.
Definition DefinitionsGUI.h:2259
@ FlattenAndAssignFigure
Make FigureArray with selected figures with flattening so that doesn't exist nested Figure Array.
Definition DefinitionsGUI.h:2983
@ Flip_Both_Elementwise
A menu to individually flip each of the selected figures or each element in the FigureArray in both h...
Definition DefinitionsGUI.h:2355
@ Rotate90_Elementwise
A menu to individually rotate each of the selected figures or each element in the FigureArray by 90 d...
Definition DefinitionsGUI.h:2371
@ CancelFigure
Cancel figure.
Definition DefinitionsGUI.h:2083
@ ComplexRegion_SwitchToArc
Change selected segment type to Arc.
Definition DefinitionsGUI.h:1843
@ DeclType_PointArray
Create figure of PointArray.
Definition DefinitionsGUI.h:1695
@ GetPointsOfMaximumDistance
Get points of the maximum distance.
Definition DefinitionsGUI.h:2603
@ ShowFigureArrayElementSequence
Show FigureArray element sequence.
Definition DefinitionsGUI.h:2195
@ SetSource
Set the selected figure as the source for figure operations (such as transformations).
Definition DefinitionsGUI.h:2539
@ Reduce
A menu to reduce the number of points in objects such as CFLRegion by approximating them with the spe...
Definition DefinitionsGUI.h:2743
@ DeletePoint
Delete point of figure.
Definition DefinitionsGUI.h:2147
@ ShowMultiSelectOrder
Show multi select order of figures.
Definition DefinitionsGUI.h:2267
@ GetRegionOfUnion
Get union region of two or more figures.
Definition DefinitionsGUI.h:2123
@ SetName
Set figure name.
Definition DefinitionsGUI.h:1569
@ Flip_Horizontal
Flip figure in the horizontal direction.
Definition DefinitionsGUI.h:2315
@ CenterType_RectangleBoundaryCenter
Set center type of figure as rectangle boundary center.
Definition DefinitionsGUI.h:2711
@ Sort_SortOrder2D_Y_Asc_X_Desc
1st Ascending Y, 2nd Descending X
Definition DefinitionsGUI.h:2655
@ Warp_Perspective_Elementwise
A menu to individually apply warp transformation using the Perspective method to each of the selected...
Definition DefinitionsGUI.h:2435
@ DeclType_Point
Create figure of Point.
Definition DefinitionsGUI.h:1587
@ ShowWindingSequence
Show winding sequence of selected figure.
Definition DefinitionsGUI.h:2187
@ ConvertDeclTypeElementwise_ToPoint
Change figure type to Point.
Definition DefinitionsGUI.h:2823
@ TemplateType_Int64
Change figure template type to Int64.
Definition DefinitionsGUI.h:1779
@ Inflate_Elementwise
A menu to inflate each of the selected figures or each element in the FigureArray to fit its bounding...
Definition DefinitionsGUI.h:2799
@ Split_Elementwise
A menu to split each of the selected figures or each element in the FigureArray into a FigureArray by...
Definition DefinitionsGUI.h:2767
@ OpenDialog_Transform
Menu to open the Figure transformation dialog.
Definition DefinitionsGUI.h:2507
@ ConvertDeclTypeElementwise_ToRoundRect
Change figure type to RoundRect.
Definition DefinitionsGUI.h:2927
@ ConvertTemplateTypeElementwise_ToInt64
Change figure template type to Int64.
Definition DefinitionsGUI.h:2951
EObjectFigureHitTest
Mouse hit test for figures on image view.
Definition DefinitionsGUI.h:4042
@ GripEllipseArc
Grip the Ellipse Arc in the Complex Region.
Definition DefinitionsGUI.h:4176
@ GripArc
Grip the Circle Arc of the Complex Region.
Definition DefinitionsGUI.h:4167
@ ExclusiveRegion
If you set an Exclusive Region.
Definition DefinitionsGUI.h:4239
@ GripControlPointEnd
Grip the end control point of the CubicSpline or BezierCubicCurve.
Definition DefinitionsGUI.h:4140
@ TransformDoughnutRadius
To adjust the radius of Doughnut.
Definition DefinitionsGUI.h:4230
@ GripControlPoint
Grip the control point of CubicSpline or BezierCubicCurve.
Definition DefinitionsGUI.h:4158
@ Transform
Figure transformation.
Definition DefinitionsGUI.h:4077
@ GripLine
Grip line segment.
Definition DefinitionsGUI.h:4113
@ GripInterpolatedLine
Grip the interpolation straight line.
Definition DefinitionsGUI.h:4248
@ Move
Move a figure.
Definition DefinitionsGUI.h:4059
@ GripControlPointStart
Grip the start control point of the CubicSpline or BezierCubicCurve.
Definition DefinitionsGUI.h:4131
@ Rotate
Rotating a figure.
Definition DefinitionsGUI.h:4068
@ GripBezierCubicCurve
Grip the BezierCubicCurve of ComplexRegion.
Definition DefinitionsGUI.h:4203
@ ArcDegree
Change start degree or delta degree for circle, ellipse, and doughnut.
Definition DefinitionsGUI.h:4122
@ SelectOnMultiSelectedFigures
Select a Figure from multiple selected figures while holding down Ctrl key.
Definition DefinitionsGUI.h:4275
@ GripBezierQuarticCurve
Grip the BezierQuarticCurve of ComplexRegion.
Definition DefinitionsGUI.h:4212
@ GripBezierQuadraticCurve
Grip the BezierQuadraticCurve of the ComplexRegion.
Definition DefinitionsGUI.h:4194
@ RoundRect_GripRadiusVertex
Grip the Radius adjustment point of RoundRect.
Definition DefinitionsGUI.h:4266
@ GripControlPointMid
Grip the mid control point on CubicSpline or BezierQuarticCurve.
Definition DefinitionsGUI.h:4149
@ GripCubicSpline
Grip the CubicSpline in the Complex Region.
Definition DefinitionsGUI.h:4185
@ GripVertex
Grip vertex.
Definition DefinitionsGUI.h:4104
@ ComplexRegion_GripEndVertex
Grip the last vertex of Line, Circle Arc, Ellipse Arc, CubicSpline, and BezierCubicCurve inside Compl...
Definition DefinitionsGUI.h:4257
@ Select
Select a Figure.
Definition DefinitionsGUI.h:4094
@ GripBezierCurve
Grip the Bezier Curve of the Complex Region.
Definition DefinitionsGUI.h:4221
@ Hover
When the mouse is over the figure.
Definition DefinitionsGUI.h:4284
EProgressCtrlTextMode
String display mode for ProgressCtrl.
Definition DefinitionsGUI.h:7377
@ PositionPerMax
Displays the current location for the maximum value, e.g. "440/1000".
Definition DefinitionsGUI.h:7400
@ Percentage
Percentage display. Example: "44%".
Definition DefinitionsGUI.h:7384
@ Position
Show current location, e.g. "440".
Definition DefinitionsGUI.h:7392
@ UserDefinedText
Display custom text, e.g. "Waiting...".
Definition DefinitionsGUI.h:7408
ELayerDrawingMethod
Mode that determines when a layer's drawing objects are drawn on the image view. You can specify whet...
Definition DefinitionsGUI.h:4946
@ Auto
Default value.
Definition DefinitionsGUI.h:4953
@ Manual
Mode for Drawing Layer Only at Update Call Time.
Definition DefinitionsGUI.h:4961
ESortOrder
Sorting order.
Definition DefinitionsGUI.h:6623
@ Ascending
Sort in ascending order.
Definition DefinitionsGUI.h:6638
@ Descending
Sort by descending order.
Definition DefinitionsGUI.h:6646
EMenuItemImageFigure
Menu item of image figure stored in the image.
Definition DefinitionsGUI.h:1246
@ OpenFigureListWindow
Menu item to open the figure list window for the image.
Definition DefinitionsGUI.h:1277
@ Popup
Pop up the figures on image.
Definition DefinitionsGUI.h:1325
@ EnableHover
Menu that sets whether to highlight the Figure stored in the image when the mouse touches it.
Definition DefinitionsGUI.h:1450
@ Remove
Remove selected figures on image.
Definition DefinitionsGUI.h:1360
@ SetRealSizeText
Menu that sets whether to display the name of the figure stored in the image in real size or not.
Definition DefinitionsGUI.h:1434
@ BringToFront
Bring figure to front.
Definition DefinitionsGUI.h:1293
@ RemoveByCondition
Menu to remove Figures stored in image that match conditions (e.g., width greater than 10,...
Definition DefinitionsGUI.h:1377
@ PopupByCondition
Menu to pop up Figures stored in image that match conditions (e.g., width greater than 10,...
Definition DefinitionsGUI.h:1351
@ MultiSelect_Popup
Pop up the figures on image.
Definition DefinitionsGUI.h:1333
@ OpenFigureClassesWindow
Menu item to open the figure class list window for the image.
Definition DefinitionsGUI.h:1285
@ Paste
Menu item that pastes figures from the clipboard into the image as image figures.
Definition DefinitionsGUI.h:1474
@ CopySelected
Menu item that copies the selected figures stored in the image.
Definition DefinitionsGUI.h:1458
@ SetOpacity
Menu that sets border or fill opacity for figures stored in an image.
Definition DefinitionsGUI.h:1442
@ MultiSelect_SetDrawingAttribute
Drawing attribute settings menu for the figure stored in the image.
Definition DefinitionsGUI.h:1418
@ CopyAll
Menu item that copies all of the figures stored in the image.
Definition DefinitionsGUI.h:1466
@ RemoveByConditionFromAllPages
A menu that removes shapes from all pages that meet certain conditions (for example,...
Definition DefinitionsGUI.h:1386
@ MultiSelect_Remove
Remove selected figure on image.
Definition DefinitionsGUI.h:1368
@ ClearAll
Remove all the figures on image.
Definition DefinitionsGUI.h:1394
@ SendToBack
Send figure to back.
Definition DefinitionsGUI.h:1309
@ End
The last menu.
Definition DefinitionsGUI.h:1483
@ BringForward
Bring figure forward.
Definition DefinitionsGUI.h:1301
@ PopupAll
Pop all the figures on image up.
Definition DefinitionsGUI.h:1342
@ SetDrawingAttribute
Drawing attribute settings menu for the figure stored in the image.
Definition DefinitionsGUI.h:1410
@ SetTextFont
Font settings menu for the name of the figure stored in the image.
Definition DefinitionsGUI.h:1426
@ ShowFigure
Show the figures on image.
Definition DefinitionsGUI.h:1261
@ SendBackward
Send figure backward.
Definition DefinitionsGUI.h:1317
@ ClearFromAllPages
Clear all Figures from all pages.
Definition DefinitionsGUI.h:1402
@ ShowText
Show the text(figure name, figure text) on image.
Definition DefinitionsGUI.h:1269
EPaneType
Pane type.
Definition DefinitionsGUI.h:6977
@ ColorTable
CGUIPaneColorTable 타입 Pane.
Definition DefinitionsGUI.h:7048
@ ViewGraph
CGUIPaneViewGraph 타입 Pane.
Definition DefinitionsGUI.h:7056
@ DialogCustomEmbedded
CGUIPaneDialogCustomEmbedded 타입 Pane.
Definition DefinitionsGUI.h:7032
@ PlotDataSheet
CGUIPanePlotDataSheet 타입 Pane.
Definition DefinitionsGUI.h:7040
@ Properties
CGUIPaneProperties 타입 Pane.
Definition DefinitionsGUI.h:7000
@ MainPane
Pane collection configured by default in MainFrame.
Definition DefinitionsGUI.h:7080
@ Menu
CGUIPaneMenu 타입 Pane.
Definition DefinitionsGUI.h:6992
@ MiniGraphSheet
CGUIPaneMiniGraphSheet 타입 Pane.
Definition DefinitionsGUI.h:7072
@ Code
CGUIPaneCode 타입 Pane.
Definition DefinitionsGUI.h:7016
@ Log
CGUIPaneLog 타입 Pane.
Definition DefinitionsGUI.h:7008
@ ExampleSNAP
CGUIPaneExampleSNAP 타입 Pane.
Definition DefinitionsGUI.h:7024
EMenuItem
Image view menu item.
Definition DefinitionsGUI.h:196
@ CopyPages
Copy selected pages to clipboard.
Definition DefinitionsGUI.h:429
@ ClearSelectedPage
Clear selected page.
Definition DefinitionsGUI.h:366
@ ReductionInterpolation
Menu to set reduction interpolation.
Definition DefinitionsGUI.h:924
@ MiniMap_ShowAllLayers
Show all layers on mini map.
Definition DefinitionsGUI.h:1178
@ ClearAllLayers
Clear drawings of all the layers.
Definition DefinitionsGUI.h:1146
@ MiniMap_ShowLayer_ImageFigure_Text
Show Image Figure Text layer on mini map.
Definition DefinitionsGUI.h:1226
@ ShowImageCenter
Show image center.
Definition DefinitionsGUI.h:933
@ ShowStatusBarItem_CursorY
Show the Y coordinate of the cursor in the status bar.
Definition DefinitionsGUI.h:798
@ SaveCurrentPageWithLayers
Save current page with layers.
Definition DefinitionsGUI.h:321
@ SetScale
Set scale of image view.
Definition DefinitionsGUI.h:609
@ CreateImage
Create image.
Definition DefinitionsGUI.h:393
@ ShowStatusBarItem_CurrentPage
Show the current page number in the status bar.
Definition DefinitionsGUI.h:726
@ ConvertAllFigureObjectsToLayer
Draw all the figure objects to layer.
Definition DefinitionsGUI.h:1114
@ ShowStatusBarItem_ImageDepth
Show the image depth in the status bar.
Definition DefinitionsGUI.h:771
@ Image_Rotate270
Rotate the image 270 degrees.
Definition DefinitionsGUI.h:681
@ InsertFolder
Load to insert folder.
Definition DefinitionsGUI.h:285
@ ShowStatusBarItem_FileAndPageName
Show the file and page name in the status bar.
Definition DefinitionsGUI.h:717
@ ShowPixelValue
Show pixel value.
Definition DefinitionsGUI.h:870
@ ZoomOut
Zoom out.
Definition DefinitionsGUI.h:582
@ MiniMap_ShowLayer_ImageFigure_Figure
Show Image Figure layer on mini map.
Definition DefinitionsGUI.h:1218
@ Image_Flip_Both
Flip the image in the horizontal and vertical direction.
Definition DefinitionsGUI.h:654
@ SetFloatingImageValueRange
Set the range of floating image value.
Definition DefinitionsGUI.h:960
@ ImagePage_InvertSelection
Menu item for inverting the current selection of image pages.
Definition DefinitionsGUI.h:564
@ PixelNumberMode_Binary
Set pixel number mode as binary.
Definition DefinitionsGUI.h:906
@ PixelAccuracy
Set pixel accuracy.
Definition DefinitionsGUI.h:879
@ AppendFile_Raw
Load to append .raw file.
Definition DefinitionsGUI.h:249
@ ShowCrosshair
Show crosshair.
Definition DefinitionsGUI.h:834
@ ShowStatusBarItem_CursorX
Show the X coordinate of the cursor in the status bar.
Definition DefinitionsGUI.h:789
@ ShowStatusBarItem_PixelValueAtCursor
Show the pixel value at the cursor position in the status bar.
Definition DefinitionsGUI.h:807
@ ShowLayer_Drawing
Show drawing layer.
Definition DefinitionsGUI.h:1050
@ ShowStatusBarItem_ImageChannels
Show the number of image channels in the status bar.
Definition DefinitionsGUI.h:762
@ Image_Rotate180
Rotate the image 180 degrees.
Definition DefinitionsGUI.h:672
@ MiniMap_ShowLayer_Image
Show image layer on mini map.
Definition DefinitionsGUI.h:1194
@ ConvertSelectedFigureObjectToLayer
Draw selected figure objects to layer.
Definition DefinitionsGUI.h:1098
@ ShowAllLayers
Show all layers.
Definition DefinitionsGUI.h:1026
@ DropFile
Drop file.
Definition DefinitionsGUI.h:294
@ AutoPageScroll_Stop
Menu item to stop automatic page scrolling.
Definition DefinitionsGUI.h:546
@ ConvertAllLayersToFigureObject
Convert the figures on all the layers to figure objects.
Definition DefinitionsGUI.h:1090
@ ZoomIn
Zoom in.
Definition DefinitionsGUI.h:573
@ ConvertSelectedFigureObjectToNamedLayer
Draw selected figure objects to named layer.
Definition DefinitionsGUI.h:1106
@ ZoomFit
Zoom to fit.
Definition DefinitionsGUI.h:591
@ InsertFile_Raw
Load to insert .raw file.
Definition DefinitionsGUI.h:267
@ ClearCurrentPage
Clear current page.
Definition DefinitionsGUI.h:357
@ Help
Popup the help dialog.
Definition DefinitionsGUI.h:977
@ ShowStatusBarItem_TotalPages
Show the total number of pages in the status bar.
Definition DefinitionsGUI.h:735
@ ConvertLayerToFigureObject
Convert the figures on selected layers to figure objects.
Definition DefinitionsGUI.h:1074
@ ZoomToActualSize
Zoom to actual size.
Definition DefinitionsGUI.h:600
@ PixelSegmentationMode
Menu to see Pixel values by coloring them.
Definition DefinitionsGUI.h:915
@ ShowGrid
Show grid.
Definition DefinitionsGUI.h:825
@ SetViewCenterAndScale
Move the designated coordinates to the center of the image view.
Definition DefinitionsGUI.h:627
@ ShowStatusBarItem_ImageHeight
Show the image height in the status bar.
Definition DefinitionsGUI.h:753
@ AppendPage
Append page.
Definition DefinitionsGUI.h:375
@ ShowFigureCoordinateOnCursor
Display the figure's coordinates on mouse cursor position.
Definition DefinitionsGUI.h:852
@ InsertFile
Load to insert file.
Definition DefinitionsGUI.h:258
@ End
The last menu.
Definition DefinitionsGUI.h:1235
@ Object_GlobalSetting
Global setting of Image View Object.
Definition DefinitionsGUI.h:986
@ ZoomFitToNamedLayer
Scale and offset adjustment menu so that figures and texts on named layer are filled on the screen.
Definition DefinitionsGUI.h:1162
@ ShowImagePixelValueOnCursor
Display image pixel value on mouse cursor position.
Definition DefinitionsGUI.h:861
@ SyncViewPointOfView
Synchronize the point of view with selected view.
Definition DefinitionsGUI.h:1002
@ ClearNamedLayer
Clear drawings on named layer.
Definition DefinitionsGUI.h:1138
@ MiniMap_ShowLayer_Drawing
Show drawing layer on mini map.
Definition DefinitionsGUI.h:1202
@ FixThumbnailView
Fix thumbnail view.
Definition DefinitionsGUI.h:483
@ ClearAllObjects
Clear all the figure objects and measurement objects.
Definition DefinitionsGUI.h:994
@ FirstPage
Move to the first page of the image.
Definition DefinitionsGUI.h:492
@ PrevPage
Move to the previous page of the image.
Definition DefinitionsGUI.h:501
@ Image_Flip_Vertical
Flip the image in the vertical direction.
Definition DefinitionsGUI.h:645
@ NextPage
Move to the next page of the image.
Definition DefinitionsGUI.h:519
@ SaveCurrentPage
Save current page.
Definition DefinitionsGUI.h:312
@ ShowNamedLayer
Show drawing layer by name.
Definition DefinitionsGUI.h:1058
@ InsertPage
Insert page.
Definition DefinitionsGUI.h:384
@ ShowToolBar
Show tool bar.
Definition DefinitionsGUI.h:699
@ CanvasColorPicker
Popup the canvas color setting dialog.
Definition DefinitionsGUI.h:942
@ ShowStatusBarItem_ImageWidth
Show the image width in the status bar.
Definition DefinitionsGUI.h:744
@ CopyImage
Copy image to clipboard.
Definition DefinitionsGUI.h:420
@ AutoPageScroll_Start
Menu item to start automatic page scrolling.
Definition DefinitionsGUI.h:537
@ PasteImageAt
Paste image at selected page index.
Definition DefinitionsGUI.h:438
@ ShowImageMiniMap
Show image mini map.
Definition DefinitionsGUI.h:456
@ ConvertAllFigureObjectsToNamedLayer
Draw all the figure objects to named layer.
Definition DefinitionsGUI.h:1122
@ ShowLayer_Image
Show image layer.
Definition DefinitionsGUI.h:1042
@ ConvertNamedLayerToFigureObject
Convert the figures on named layers to figure objects.
Definition DefinitionsGUI.h:1082
@ HideAllLayers
Hide all layers.
Definition DefinitionsGUI.h:1034
@ Image_Flip_Horizontal
Flip the image in the horizontal direction.
Definition DefinitionsGUI.h:636
@ MiniMap_ShowNamedLayer
Show drawing named layer on mini map.
Definition DefinitionsGUI.h:1210
@ Image_Rotate90
Rotate the image 90 degrees.
Definition DefinitionsGUI.h:663
@ LastPage
Move to the last page of the image.
Definition DefinitionsGUI.h:528
@ ZoomFitToLayer
Scale and offset adjustment menu so that figures and texts on selected layer are filled on the screen...
Definition DefinitionsGUI.h:1154
@ ShowImageCoordinateOnCursor
Display image coordinates on mouse cursor position.
Definition DefinitionsGUI.h:843
@ SavePages
Save selected page.
Definition DefinitionsGUI.h:330
@ LoadFile_Raw
Load .raw file.
Definition DefinitionsGUI.h:231
@ LeaveTeachingMode
Cancel teaching mode.
Definition DefinitionsGUI.h:816
@ LayerProperties
Show layer properties pane dialog.
Definition DefinitionsGUI.h:1066
@ PixelNumberMode_Hexadecimal
Set pixel number mode as hexadecimal.
Definition DefinitionsGUI.h:897
@ Save
Save file.
Definition DefinitionsGUI.h:303
@ ClearLayer
Clear drawings on selected layer.
Definition DefinitionsGUI.h:1130
@ RearrangePageOrder_MoveToLastPage
Rearrange page order, move selected page to the back.
Definition DefinitionsGUI.h:411
@ ShowStatusBar
Show status bar.
Definition DefinitionsGUI.h:708
@ ClearThenPasteImage
Clear current image file on view, then paste image from clipboard.
Definition DefinitionsGUI.h:447
@ SelectPage
Move to the selected page of the image.
Definition DefinitionsGUI.h:510
@ ShowThumbnailView
Show thumbnail view.
Definition DefinitionsGUI.h:474
@ Panning
Set panning mode.
Definition DefinitionsGUI.h:618
@ ClearFile
Clear file.
Definition DefinitionsGUI.h:348
@ MiniMap_HideAllLayers
Hide all layers on mini map.
Definition DefinitionsGUI.h:1186
@ PixelNumberMode_Decimal
Set pixel number mode as decimal.
Definition DefinitionsGUI.h:888
@ ShowScrollBar
Show scroll bar.
Definition DefinitionsGUI.h:690
@ AppendFile
Load to append file.
Definition DefinitionsGUI.h:240
@ ShowStatusBarItem_ZoomLevel
Show the zoom level in the status bar.
Definition DefinitionsGUI.h:780
@ ShowImageInfo
Popup the image information dialog.
Definition DefinitionsGUI.h:951
@ SyncWindow
Synchronize the window.
Definition DefinitionsGUI.h:1018
@ RearrangePageOrder_MoveToFirstPage
Rearrange page order, move selected page to the front.
Definition DefinitionsGUI.h:402
@ AutoSaveImage
Menu item for saving image automatically.
Definition DefinitionsGUI.h:339
@ AutoPageScroll_Settings
Menu item for settings related to the automatic page scrolling feature.
Definition DefinitionsGUI.h:555
@ LoadFolder
Load folder.
Definition DefinitionsGUI.h:222
@ ShowPageIndex
Show page index of image.
Definition DefinitionsGUI.h:465
@ SyncViewPageIndex
Synchronize the page of image with selected view.
Definition DefinitionsGUI.h:1010
@ LoadFile
Load file.
Definition DefinitionsGUI.h:213
@ SetDecimalPlaceOfCoordinate
Sets the number of decimal places displayed for the coordinates.
Definition DefinitionsGUI.h:968
@ FitAllLayersOnCanvas
Scale and offset adjustment menu so that figures and texts on the all layers are filled on the screen...
Definition DefinitionsGUI.h:1170
@ AppendFolder
Load to append folder.
Definition DefinitionsGUI.h:276
EGUIViewImageParagraphAlignment
Alignment of paragraphs in an image view.
Definition DefinitionsGUI.h:4626
@ MASK
MASK.
Definition DefinitionsGUI.h:4657
@ BOTTOM
Bottom alignment.
Definition DefinitionsGUI.h:4641
@ TOP
Top alignment.
Definition DefinitionsGUI.h:4633
@ CENTER
Center alignment.
Definition DefinitionsGUI.h:4649
EPermission
Permission.
Definition DefinitionsGUI.h:7513
@ View
Permissions to view.
Definition DefinitionsGUI.h:7520
@ Modify_Execute
Permissions to modify and execute.
Definition DefinitionsGUI.h:7528
EPixelNumberMode
Pixel value display options in image view.
Definition DefinitionsGUI.h:163
@ Hexadecimal
hexadecimal notation
Definition DefinitionsGUI.h:178
@ Binary
Binary notation.
Definition DefinitionsGUI.h:186
@ Decimal
decimal notation
Definition DefinitionsGUI.h:170
EImageRotateAngle
Available image rotation angle in image view.
Definition DefinitionsGUI.h:3140
@ Degree270
270 degrees
Definition DefinitionsGUI.h:3175
@ Degree90
90 degrees
Definition DefinitionsGUI.h:3157
@ Degree180
180 degrees
Definition DefinitionsGUI.h:3166
EKeyType
Keyboard input value.
Definition DefinitionsGUI.h:6456
@ F6
F6.
Definition DefinitionsGUI.h:6471
@ F5
F5.
Definition DefinitionsGUI.h:6463
@ F7
F7.
Definition DefinitionsGUI.h:6479
@ F8
F8.
Definition DefinitionsGUI.h:6487
@ F11
F11.
Definition DefinitionsGUI.h:6511
@ F9
F9.
Definition DefinitionsGUI.h:6495
@ F10
F10.
Definition DefinitionsGUI.h:6503
EViewImageFigureObjectMagnetOption
Magnet Options for Image View Figure Objects.
Definition DefinitionsGUI.h:7110
@ ImageCenter
Magnet in the center of the image.
Definition DefinitionsGUI.h:7133
@ FigureEdge
Magnet at the edge of the figure.
Definition DefinitionsGUI.h:7149
@ FigureCenter
Magnet in the center of the figure.
Definition DefinitionsGUI.h:7157
@ Image
Magnet at the edge and center of the image.
Definition DefinitionsGUI.h:7141
@ ImageEdge
Magnet at the edge of the image.
Definition DefinitionsGUI.h:7125
EFigureObjectInformationText
Text options representing information for a figure object.
Definition DefinitionsGUI.h:6355
@ PixelAccuracyApplied
Displays the coordinate, size values of the figure object with pixel accuracy.
Definition DefinitionsGUI.h:6418
@ Coordinate_PixelAccuracyApplied
Displays the coordinate of the figure object with pixel accuracy.
Definition DefinitionsGUI.h:6394
@ Angle
Displays the angle of the figure object.
Definition DefinitionsGUI.h:6386
@ Size
Displays the size of the figure object, such as width, height, length, radius, etc.
Definition DefinitionsGUI.h:6378
@ Coordinate
Displays the coordinate of the figure object.
Definition DefinitionsGUI.h:6370
@ Size_PixelAccuracyApplied
Displays the size of the figure object, such as width, height, length, radius, etc with pixel accurac...
Definition DefinitionsGUI.h:6402
EGUIViewImageHitArea
The area where the mouse is located on the image view.
Definition DefinitionsGUI.h:3858
@ MiniMapDisplayingArea
Mini map displaying 영역
Definition DefinitionsGUI.h:3884
@ MultiFigures
More than one Figure object.
Definition DefinitionsGUI.h:3929
@ MiniMap
Mini map area.
Definition DefinitionsGUI.h:3875
@ PageIndex
Page Index.
Definition DefinitionsGUI.h:3965
@ MultiMeasurements
More than one Figure object.
Definition DefinitionsGUI.h:4001
@ Figure
Figure Object.
Definition DefinitionsGUI.h:3920
@ Measurement
Measurement Object.
Definition DefinitionsGUI.h:3992
@ PrevPageArrow
Move next page arrow.
Definition DefinitionsGUI.h:3974
@ Thumbnail
Thumbnail.
Definition DefinitionsGUI.h:3911
@ MultiImageFigures
Figures stored in the image.
Definition DefinitionsGUI.h:3947
@ ThumbnailViewTop
The upper area of the ThumbnailView, where the height of the ThumbnailView can be adjusted when dragg...
Definition DefinitionsGUI.h:3902
@ StatusBar
Status bar.
Definition DefinitionsGUI.h:3956
@ NextPageArrow
Move previous page arrow.
Definition DefinitionsGUI.h:3983
EAvailableFigureContextMenu
Available Context Menu for Figure Objects.
Definition DefinitionsGUI.h:5210
@ Group
Grouping menu.
Definition DefinitionsGUI.h:5610
@ ExtractBoundaryAndContour
A menu for obtaining the boundary and contour of a shape.
Definition DefinitionsGUI.h:5682
@ GetRegion
Area Calculation Menu.
Definition DefinitionsGUI.h:5506
@ ComplexRegionSwitchTo
Converting elements of a Complex Region figure to Line, Arc, EllipseArc, CubicSpline,...
Definition DefinitionsGUI.h:5330
@ Ungroup
Ungroup Menu.
Definition DefinitionsGUI.h:5618
@ Sort
Sort the order of Figure Array or Multiple Figures.
Definition DefinitionsGUI.h:5690
@ Magnet
All Magnet Actions Menu.
Definition DefinitionsGUI.h:5322
@ SaveFigureToFileSystem
Save Figure object file.
Definition DefinitionsGUI.h:5626
@ ShowGuideDrawing
Display Guide Drawing Menu.
Definition DefinitionsGUI.h:5554
@ SetZOrder
ZOrder Settings.
Definition DefinitionsGUI.h:5594
@ SwitchTo
All conversion menu.
Definition DefinitionsGUI.h:5458
@ TemplateType
Convert a Figure data type to all type.
Definition DefinitionsGUI.h:5298
@ ArcClosingMethod
Specify the End-point Processing menu for Wonho.
Definition DefinitionsGUI.h:5466
@ EditFigure
Edit Figure Menu.
Definition DefinitionsGUI.h:5257
EViewImageCreatePageOption
An option of page creation in image view.
Definition DefinitionsGUI.h:138
EAvailableViewImageContextMenuImageFigure
Available context menu for figure objects stored in the image.
Definition DefinitionsGUI.h:6148
@ ByCondition
Menu to get Figure objects from Figures stored in image that match conditions (e.g....
Definition DefinitionsGUI.h:6203
@ Copy
Menu item that copies the selected figures stored in the image.
Definition DefinitionsGUI.h:6275
EGUIViewImageFontWeight
Font thickness of image view.
Definition DefinitionsGUI.h:4489
@ SEMIBOLD
Semibold thick.
Definition DefinitionsGUI.h:4551
@ BLACK
a heavy thickness
Definition DefinitionsGUI.h:4615
@ NORMAL
Normal thickness.
Definition DefinitionsGUI.h:4533
@ BOLD
Bold thickness.
Definition DefinitionsGUI.h:4559
@ EXTRABOLD
Extra bold thickness.
Definition DefinitionsGUI.h:4567
@ ULTRALIGHT
Extra light thickness.
Definition DefinitionsGUI.h:4583
@ EXTRALIGHT
Extra light thickness.
Definition DefinitionsGUI.h:4515
@ HEAVY
Heavy thickness.
Definition DefinitionsGUI.h:4575
@ REGULAR
Regular thickness.
Definition DefinitionsGUI.h:4591
@ ULTRABOLD
Extra bold thickness.
Definition DefinitionsGUI.h:4607
@ DEMIBOLD
Semi bold thick.
Definition DefinitionsGUI.h:4599
@ MEDIUM
Medium thickness.
Definition DefinitionsGUI.h:4542
@ DONTCARE
DONTCARE.
Definition DefinitionsGUI.h:4497
@ THIN
Thin thickness.
Definition DefinitionsGUI.h:4506
@ LIGHT
Light thickness.
Definition DefinitionsGUI.h:4524
@ EGUIView3DLayerHeightMapColor
Height map color of 3D view layer.
Definition DefinitionsGUI.h:4805
@ EGUIViewImageLayerTransparencyColor
Transparent color of image view layer.
Definition DefinitionsGUI.h:4797
EGUIStringTrimming
Cut option if string is out of layout square.
Definition DefinitionsGUI.h:7320
@ Word
Specifies that the string is broken at the boundary of the last word in the layout rectangle.
Definition DefinitionsGUI.h:7343
@ EllipsisPath
Specifies that the center is removed from the string and replaced by an ellipsis. The algorithm maint...
Definition DefinitionsGUI.h:7367
@ Character
Specifies that the string is broken at the boundary of the last character in the layout rectangle,...
Definition DefinitionsGUI.h:7335
@ EllipsisCharacter
Specifies that the string is broken at the boundary of the last character within the layout rectangle...
Definition DefinitionsGUI.h:7351
@ EllipsisWord
Specifies that the string is broken at the boundary of the last word in the layout rectangle and an a...
Definition DefinitionsGUI.h:7359
EMenuItemObjectMeasure
Menu items related to measurement tool objects in the image view.
Definition DefinitionsGUI.h:3001
@ Distance
Set measure distance teaching mode.
Definition DefinitionsGUI.h:3018
@ Deactivate
Deactivate selected measure object.
Definition DefinitionsGUI.h:3120
@ RegionArea
Set measure region area teaching mode.
Definition DefinitionsGUI.h:3080
@ LeaveMeasureMode
Cancel measure teaching mode.
Definition DefinitionsGUI.h:3104
@ Gradient
Set measure gradient teaching mode.
Definition DefinitionsGUI.h:3054
@ EndOfMeasureMenu
The end item of measure.
Definition DefinitionsGUI.h:3088
@ Circumcenter
Set measure circumcenter teaching mode.
Definition DefinitionsGUI.h:3063
@ ParallelDistance
Set measure parallel distance teaching mode.
Definition DefinitionsGUI.h:3036
@ DistanceCircle
Set measure distance circle teaching mode.
Definition DefinitionsGUI.h:3072
@ Activate
Activate selected measure object.
Definition DefinitionsGUI.h:3112
@ InteriorAngle
Set measure interior angle teaching mode.
Definition DefinitionsGUI.h:3045
@ Increments
Set measure increments teaching mode.
Definition DefinitionsGUI.h:3027
ECodeType
Code type.
Definition DefinitionsGUI.h:6590
@ CSharp
C#.
Definition DefinitionsGUI.h:6605
@ Cpp
C++.
Definition DefinitionsGUI.h:6597
ETeachingMode
Teaching mode.
Definition DefinitionsGUI.h:4324
@ Figure_FreeDrawEraser
Freehand eraser mode (supported only in CGUIViewImage)
Definition DefinitionsGUI.h:4359
@ ViewGraph_AddData
Add Data Mode in View Graph.
Definition DefinitionsGUI.h:4377
EViewImageSyncOption
Image view synchronization options.
Definition DefinitionsGUI.h:4848
@ PointOfView
Point-of-view synchronization.
Definition DefinitionsGUI.h:4863
@ Count
Number of synchronization options.
Definition DefinitionsGUI.h:4879
EMenuItemPaneMenuTree
Menu items in the menu tree.
Definition DefinitionsGUI.h:6664
@ MenuItemFixedViewPlacementSet_Select
Select Fixed View Placement Presets.
Definition DefinitionsGUI.h:6895
@ MenuItemViewBase_Maximize
View Maximization Menu.
Definition DefinitionsGUI.h:6967
@ SortDescending
Sort child items in descending order by string.
Definition DefinitionsGUI.h:6695
@ CloseAllButThis
Close all but this window.
Definition DefinitionsGUI.h:6783
@ MenuItemLogIn_ManageUsers
Manage user permissions (add, query, modify, delete, set permissions, etc.) menu.
Definition DefinitionsGUI.h:6951
@ CloseAll
Close all child items.
Definition DefinitionsGUI.h:6767
@ MenuItemFixedViewPlacementSet_Edit
Modify Fixed View Placement Presets.
Definition DefinitionsGUI.h:6903
@ MenuItemModel_Rename
Model Name Settings.
Definition DefinitionsGUI.h:6863
@ CancelSort
Cancel sort.
Definition DefinitionsGUI.h:6703
@ MenuItemModel_Duplicate
Model Duplication.
Definition DefinitionsGUI.h:6847
@ DeleteAllButThis
Remove all but this window.
Definition DefinitionsGUI.h:6791
@ MenuItemFixedViewPreset_Export
Export Fixed View Set.
Definition DefinitionsGUI.h:6887
@ OpenNewWindow
Open in a new window.
Definition DefinitionsGUI.h:6711
@ MenuItemLogIn_LogIn_LogOut
Login or Logout Menu.
Definition DefinitionsGUI.h:6935
@ MenuItemModel_Select
Select a model.
Definition DefinitionsGUI.h:6839
@ CollapseAll
Fold all sub-items.
Definition DefinitionsGUI.h:6679
@ DeleteAll
Remove all child items.
Definition DefinitionsGUI.h:6775
@ SortAscending
Sort child items in ascending order by string.
Definition DefinitionsGUI.h:6687
@ AddToFavorite
Add to Favorites.
Definition DefinitionsGUI.h:6807
@ RemoveFromFavorite
Remove from favorites.
Definition DefinitionsGUI.h:6815
@ MenuItemFixedViewPlacementSet_Export
Export Fixed View Placement Preset.
Definition DefinitionsGUI.h:6927
@ MenuItemFixedViewPlacementSet_Import
Import Fixed View Placement Preset.
Definition DefinitionsGUI.h:6919
@ OpenNewWindowAll
Open multiple selected items in a new window.
Definition DefinitionsGUI.h:6759
@ MenuItemFixedViewPreset_Import
Import Fixed View Set.
Definition DefinitionsGUI.h:6879
@ MenuItemLogIn_ChangePassword
Change password menu for the currently logged-in user.
Definition DefinitionsGUI.h:6943
@ MenuItemViewBase_Minimize
View Minimization Menu.
Definition DefinitionsGUI.h:6959
@ OpenAll
Open all child items.
Definition DefinitionsGUI.h:6751
@ MenuItemFavorite_ClearAll
Remove all favorite items.
Definition DefinitionsGUI.h:6823
@ MenuItemFixedViewPreset_AddFixedViewPlacementSet
Add Fixed View Set.
Definition DefinitionsGUI.h:6871
@ MenuItemFixedViewPlacementSet_Remove
Remove Fixed View Placement Presets.
Definition DefinitionsGUI.h:6911
@ Open
Open a window.
Definition DefinitionsGUI.h:6719
@ Close
Close the window.
Definition DefinitionsGUI.h:6735
@ MenuItemModel_Delete
Delete Model.
Definition DefinitionsGUI.h:6855
@ MenuItemManagerModel_AddNewModel
Add a new model.
Definition DefinitionsGUI.h:6831
@ Delete
Remove windows and remove menu items from tree.
Definition DefinitionsGUI.h:6743
@ ExpandAll
Expand all sub-items.
Definition DefinitionsGUI.h:6671
@ AddNewSubMenuItem
Adding a New SubMenu Item.
Definition DefinitionsGUI.h:6799
EFileFormat
Image File Format.
Definition DefinitionsGUI.h:4889
@ PNG
PNG.
Definition DefinitionsGUI.h:4920
@ FLIF
FLIF.
Definition DefinitionsGUI.h:4936
@ Unknown
Unknown.
Definition DefinitionsGUI.h:4896
@ JPG
JPG.
Definition DefinitionsGUI.h:4912
@ BMP
BMP.
Definition DefinitionsGUI.h:4904
@ TIFF
TIFF.
Definition DefinitionsGUI.h:4928
EGUIViewImagePenStyle
Pen Style in Image View.
Definition DefinitionsGUI.h:4387
@ InsideFrame
Inside Frame Style.
Definition DefinitionsGUI.h:4446
@ Dash
Dash style.
Definition DefinitionsGUI.h:4404
@ ItemCount
Number of enum.
Definition DefinitionsGUI.h:4478
@ Alternate
Alternate style.
Definition DefinitionsGUI.h:4462
@ Solid_RoundCap
single-line with round end cap style
Definition DefinitionsGUI.h:4470
@ Dot
Dot style.
Definition DefinitionsGUI.h:4413
@ Null
No style.
Definition DefinitionsGUI.h:4438
@ DashDotDot
Dash dot dot style.
Definition DefinitionsGUI.h:4429
@ Solid
single-line style
Definition DefinitionsGUI.h:4395
@ UserStyle
User Styles.
Definition DefinitionsGUI.h:4454
@ DashDot
Dash dot style.
Definition DefinitionsGUI.h:4421
EViewImageLoadOption
Image View Load Options Example. The following code will load folder with recursive....
Definition DefinitionsGUI.h:35
@ Append
Load and append.
Definition DefinitionsGUI.h:58
@ Default
기본
Definition DefinitionsGUI.h:42
@ OpenDialog
Open dialog.
Definition DefinitionsGUI.h:82
@ Insert
Load and insert.
Definition DefinitionsGUI.h:66
@ RecursiveIfFolder
Recursively import folders.
Definition DefinitionsGUI.h:74
@ DialogTypeFolder
Open folder dialog.
Definition DefinitionsGUI.h:98
@ DialogTypeFile
Open file dialog.
Definition DefinitionsGUI.h:90
@ Load
Default Load.
Definition DefinitionsGUI.h:50
EOrientation
Direction.
Definition DefinitionsGUI.h:5032
EModifierKeyType
Modifier key input value.
Definition DefinitionsGUI.h:6521
@ LCONTROL
Left Ctrl.
Definition DefinitionsGUI.h:6536
@ LMENU
Left Menu (Alt)
Definition DefinitionsGUI.h:6552
@ LSHIFT
Left Shift.
Definition DefinitionsGUI.h:6544
EZoomMode
Zoom in and out mode.
Definition DefinitionsGUI.h:4815
@ ZoomInMode
Zoom In mode.
Definition DefinitionsGUI.h:4830
@ ZoomOutMode
Zoom Out mode.
Definition DefinitionsGUI.h:4838
@ All
All menu.
Definition DefinitionsGUIView3D.h:2957
@ None
No menu.
Definition DefinitionsGUIView3D.h:2949