FLImaging 6.7.7.7
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
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
이미지 뷰 레이어의 자동 클리어 모드로, 사용자가 CGUIViewImageLayer 의 Clear() 함수를 명시적으로 호출하지 않아도 자동으로 Layer 의 자동 클리어가 적용되는...
Definition DefinitionsGUI.h:4971
@ PageChanged
이미지 뷰 위의 이미지의 페이지가 변경되었을 경우
Definition DefinitionsGUI.h:4994
@ SetImage
이미지 뷰 위의 이미지가 변경되었을 경우
Definition DefinitionsGUI.h:5002
ECoordinateOrientation2D
좌표계 종류(x축과 y축의 증가 방향으로 구분)
Definition DefinitionsGUI.h:7538
@ X_Right_Y_Up
x: 왼쪽에서 오른쪽으로 갈수록 증가, y: 아랫쪽에서 윗쪽으로 갈수록 증가
Definition DefinitionsGUI.h:7553
@ X_Right_Y_Down
x: 왼쪽에서 오른쪽으로 갈수록 증가, y: 윗쪽에서 아랫쪽으로 갈수록 증가
Definition DefinitionsGUI.h:7545
@ X_Left_Y_Down
x: 오른쪽에서 왼쪽으로 갈수록 증가, y: 윗쪽에서 아랫쪽으로 갈수록 증가
Definition DefinitionsGUI.h:7561
@ X_Left_Y_Up
x: 오른쪽에서 왼쪽으로 갈수록 증가, y: 아랫쪽에서 윗쪽으로 갈수록 증가
Definition DefinitionsGUI.h:7569
EControl
컨트롤
Definition DefinitionsGUI.h:5057
@ GridLayout
그리드 레이아웃
Definition DefinitionsGUI.h:5192
@ ProgressBar
진행 막대
Definition DefinitionsGUI.h:5160
@ ProgressBarFloatingPoint
부동 소수점 진행 막대
Definition DefinitionsGUI.h:5168
@ Slider
슬라이더
Definition DefinitionsGUI.h:5144
@ StaticText
Static Text
Definition DefinitionsGUI.h:5072
@ CheckBox
체크 박스
Definition DefinitionsGUI.h:5128
@ ListCtrl
목록 Ctrl
Definition DefinitionsGUI.h:5112
@ Sheet
시트(표)
Definition DefinitionsGUI.h:5176
@ Button
버튼
Definition DefinitionsGUI.h:5136
@ ListCtrlMassive
List Ctrl Massive
Definition DefinitionsGUI.h:5120
@ ComboBox_Editable
편집 컨트롤이 있는 콤보 상자
Definition DefinitionsGUI.h:5104
@ SliderFloatingPoint
부동 소수점 슬라이더
Definition DefinitionsGUI.h:5152
@ EditCtrl
Edit Ctrl
Definition DefinitionsGUI.h:5080
@ Password
Password Edit Ctrl
Definition DefinitionsGUI.h:5088
@ BoxLayout
상자 레이아웃
Definition DefinitionsGUI.h:5184
@ ComboBox
Combo Box
Definition DefinitionsGUI.h:5096
EAvailableViewImageContextMenu
이미지 뷰에 대한 가능한 컨텍스트 메뉴
Definition DefinitionsGUI.h:3230
@ ZoomFitToLayers
레이어 위 도형 및 텍스트가 화면에 꽉 차도록 스케일 및 오프셋 조정 메뉴
Definition DefinitionsGUI.h:3613
@ Measure
측정 메뉴
Definition DefinitionsGUI.h:3487
@ Image_Rotate
이미지 회전 메뉴
Definition DefinitionsGUI.h:3631
@ Figure_Create
도형 생성 메뉴
Definition DefinitionsGUI.h:3496
@ ImageFigure
ImageFigure(Image 안에 저장되어 있는 Figure)에 관한 모든 컨텍스트 메뉴, 이 플래그를 포함할 경우 EAvailableViewImageContextMenuImag...
Definition DefinitionsGUI.h:3256
@ Zoom
이미지 뷰의 스케일 확대, 축소, 핏 메뉴
Definition DefinitionsGUI.h:3354
@ PageControl
페이지 이동 메뉴
Definition DefinitionsGUI.h:3345
@ Figure_FreeDraw
자유 그리기 관련 메뉴
Definition DefinitionsGUI.h:3800
@ RearrangePageOrder
이미지 페이지 순서 변경 기능
Definition DefinitionsGUI.h:3702
@ CopyPaste
이미지 복사 및 붙여 넣기 메뉴
Definition DefinitionsGUI.h:3640
@ ClearPage
이미지의 페이지들을 삭제
Definition DefinitionsGUI.h:3719
@ Figure_ClearFigure
도형 정리 메뉴
Definition DefinitionsGUI.h:3514
@ Image_Flip
이미지 반전 메뉴
Definition DefinitionsGUI.h:3622
@ ClearLayers
레이어 정리 메뉴
Definition DefinitionsGUI.h:3604
@ Figure_Load
도형 불러오기 메뉴
Definition DefinitionsGUI.h:3505
@ PixelNumberMode
픽셀 값 표기 모드 설정 메뉴
Definition DefinitionsGUI.h:3443
@ ThumbnailView
이미지 미리보기 창 메뉴
Definition DefinitionsGUI.h:3336
@ ImageMiniMap
미니맵 메뉴
Definition DefinitionsGUI.h:3318
@ SyncView
뷰 동기화 메뉴
Definition DefinitionsGUI.h:3523
EGUIViewImageTextAlignment
이미지 뷰의 텍스트 정렬
Definition DefinitionsGUI.h:4667
@ VERTICAL_MASK
수직 방향 정렬 마스크(위쪽, 중앙, 아래쪽 정렬)
Definition DefinitionsGUI.h:4786
@ RIGHT_TOP
기준점이 문자열의 오른쪽 위에 위치하는 정렬
Definition DefinitionsGUI.h:4722
@ RIGHT
기준점이 문자열의 오른쪽에 위치하는 정렬
Definition DefinitionsGUI.h:4682
@ RIGHT_BOTTOM
기준점이 문자열의 오른쪽 아래에 위치하는 정렬
Definition DefinitionsGUI.h:4746
@ JUSTIFIED
양쪽 정렬
Definition DefinitionsGUI.h:4698
@ LEFT_BOTTOM
기준점이 문자열의 왼쪽 아래에 위치하는 정렬
Definition DefinitionsGUI.h:4738
@ LEFT_TOP
기준점이 문자열의 왼쪽 위에 위치하는 정렬
Definition DefinitionsGUI.h:4714
@ LEFT
기준점이 문자열의 왼쪽에 위치하는 정렬
Definition DefinitionsGUI.h:4674
@ RIGHT_CENTER
기준점이 문자열의 오른쪽 중앙(수직 방향)에 위치하는 정렬
Definition DefinitionsGUI.h:4770
@ LEFT_CENTER
기준점이 문자열의 왼쪽 중앙(수직 방향)에 위치하는 정렬
Definition DefinitionsGUI.h:4762
@ CENTER_TOP
기준점이 문자열의 중앙(수평방향) 위쪽(수직 방향)에 위치하는 정렬
Definition DefinitionsGUI.h:4730
@ CENTER_BOTTOM
기준점이 문자열의 중앙(수평방향) 아래(수직 방향)에 위치하는 정렬
Definition DefinitionsGUI.h:4754
@ HORIZONTAL_MASK
수평 방향 정렬 마스크(왼쪽, 중앙, 오른쪽 정렬)
Definition DefinitionsGUI.h:4706
@ CENTER_CENTER
기준점이 문자열의 중앙(수평 및 수직 방향)에 위치하는 정렬
Definition DefinitionsGUI.h:4778
EViewImageStatusBarItem
CGUIViewImage의 상태 바 아이템
Definition DefinitionsGUI.h:7580
@ ImageWidth
이미지 너비
Definition DefinitionsGUI.h:7611
@ ImageChannels
이미지 채널 수
Definition DefinitionsGUI.h:7635
@ CursorX
마우스 커서 X 좌표 아이템
Definition DefinitionsGUI.h:7651
@ PixelValueAtCursor
마우스 커서 위치의 픽셀 값 아이템
Definition DefinitionsGUI.h:7667
@ ImageHeight
이미지 높이
Definition DefinitionsGUI.h:7619
@ ZoomLevel
이미지 뷰어의 줌 레벨
Definition DefinitionsGUI.h:7643
@ CursorY
마우스 커서 Y 좌표 아이템
Definition DefinitionsGUI.h:7659
@ FileAndPageName
파일 이름 아이템
Definition DefinitionsGUI.h:7587
@ ImageDepth
이미지 깊이
Definition DefinitionsGUI.h:7627
@ CurrentPage
현재 페이지 인덱스 아이템
Definition DefinitionsGUI.h:7595
@ TotalPages
전체 페이지 인덱스 아이템
Definition DefinitionsGUI.h:7603
EImageFlipDirection
이미지를 뒤집는 방향
Definition DefinitionsGUI.h:3185
@ Vertical
세로 방향
Definition DefinitionsGUI.h:3211
@ Both
양방향
Definition DefinitionsGUI.h:3220
@ Horizontal
가로 방향
Definition DefinitionsGUI.h:3202
EGUIAlignment
정렬 정보
Definition DefinitionsGUI.h:7183
@ EGUIAlignmentHorizontal_MASK
수평 방향 정렬 마스크
Definition DefinitionsGUI.h:7294
@ EGUIAlignmentVertical_MASK
수직 방향 정렬 마스크
Definition DefinitionsGUI.h:7302
EViewImageMouseCapturePolicy
어떤 상황에서 이미지 뷰의 마우스 캡처를 할지를 제어하는 플래그
Definition DefinitionsGUI.h:7418
@ MultiSelect
다중 선택 영역을 지정할 때 마우스 캡처를 수행함
Definition DefinitionsGUI.h:7457
@ TransformFigure
도형을 이동, 회전, 크기 조절 등의 방식으로 변형할 때 마우스 캡처를 수행함
Definition DefinitionsGUI.h:7449
@ TeachFigureAndMeasurement
도형 티칭 및 측정 동작에서 마우스 캡처를 수행함
Definition DefinitionsGUI.h:7433
EAvailableFigureContextMenu2
도형 객체에 대한 가능한 컨텍스트 메뉴
Definition DefinitionsGUI.h:5786
@ Extend
방향성이 있는 도형(Line, Rect, Quad, Ellipse)을 각각의 도형이 지향하는 방향으로 늘리는 기능
Definition DefinitionsGUI.h:6036
@ SetArcDegree
원, 타원, 도넛 객체의 start degree 및 delta degree 변경 메뉴
Definition DefinitionsGUI.h:5970
@ ConvertTemplateTypeElementwise_ToAllType
도형의 모든 변수 자료형으로 변환 메뉴
Definition DefinitionsGUI.h:5962
@ Flip
Figure 의 무게중심을 기준으로 좌우 또는 상하 뒤집기 메뉴
Definition DefinitionsGUI.h:5978
@ ConvertDeclTypeElementwise_ToAllType
모든 변환 메뉴
Definition DefinitionsGUI.h:5921
@ SetAttribute
속성 설정 메뉴
Definition DefinitionsGUI.h:6076
EMenuItemObjectFigure
이미지 뷰의 조작 가능한 도형 객체에 관한 메뉴 아이템
Definition DefinitionsGUI.h:1493
@ SwitchToPoint
Point 로 변환 메뉴
Definition DefinitionsGUI.h:1907
@ DeclType_Array
Array 으로 변환 메뉴
Definition DefinitionsGUI.h:1687
@ SwitchToRect
Rect 로 변환 메뉴
Definition DefinitionsGUI.h:1923
@ DeclType_ComplexRegion
ComplexRegion 도형 생성 메뉴
Definition DefinitionsGUI.h:1679
@ DeselectFigure
도형 선택 해제 메뉴
Definition DefinitionsGUI.h:2171
@ FitToImage
도형 크기를 이미지 너비 및 높이에 맞추기 메뉴
Definition DefinitionsGUI.h:1803
@ SetNameAndPushBackToImage
도형 이름 설정 후 이미지에 저장 메뉴
Definition DefinitionsGUI.h:1542
@ SetTarget
선택한 도형을 도형 연산(변환 등)의 타겟으로 설정
Definition DefinitionsGUI.h:2547
@ SwitchToBezierQuarticCurve
BezierQuarticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1987
@ MakeFigureValid
유효한 도형으로 만들기 메뉴
Definition DefinitionsGUI.h:1560
@ Load_GBR
GBR 파일 (Gerber) 불러오기 메뉴
Definition DefinitionsGUI.h:1525
@ GetRegionOfSubtraction
도형 차집합 영역 얻기 메뉴
Definition DefinitionsGUI.h:2131
@ GetRegionOfExclusiveOr
도형 XOR 영역 얻기 메뉴
Definition DefinitionsGUI.h:2139
@ Sort_SortOrder2D_Y_Desc_X_Desc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 Y내림차순, 2순위 X내림차순
Definition DefinitionsGUI.h:2671
@ TemplateType_Int32
도형의 변수 자료형 Int32 로 변환 메뉴
Definition DefinitionsGUI.h:1771
@ SwitchToEllipse
Ellipse 로 변환 메뉴
Definition DefinitionsGUI.h:1947
@ Flip_Vertical_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 좌우 반전하는 메뉴
Definition DefinitionsGUI.h:2339
@ DeclType_BezierCubicCurve
BezierCubicCurve 도형 생성 메뉴
Definition DefinitionsGUI.h:1655
@ Rotate90
도형 90도 회전 메뉴
Definition DefinitionsGUI.h:2363
@ ShowWindingDirection
도형의 Winding 방향 보이기 메뉴
Definition DefinitionsGUI.h:2179
@ Flip_Vertical
도형 좌우반전 메뉴
Definition DefinitionsGUI.h:2331
@ ConvertTemplateTypeElementwise_ToInt32
도형의 변수 자료형 Int32 로 변환 메뉴
Definition DefinitionsGUI.h:2943
@ EnableRasterOperation
Figure 의 Rasterized 상태 설정
Definition DefinitionsGUI.h:2807
@ ConvertDeclTypeElementwise_ToBezierQuarticCurve
BezierQuarticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:2903
@ SwitchToDoughnut
Doughnut 으로 변환 메뉴
Definition DefinitionsGUI.h:1955
@ GetBoundary_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 경계 직사각형을 얻어 오는 메뉴
Definition DefinitionsGUI.h:2563
@ ConvertDeclTypeElementwise_ToCircle
Circle 로 변환 메뉴
Definition DefinitionsGUI.h:2855
@ Sort_SortOrder2D_X_Asc_Y_Asc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 X오름차순, 2순위 Y오름차순
Definition DefinitionsGUI.h:2679
@ GetConvexHull
도형의 Convex hull 얻기 메뉴
Definition DefinitionsGUI.h:2523
@ MakeArc
Arc 로 만들기 메뉴
Definition DefinitionsGUI.h:2035
@ Sort_SortOrder2D_X_Desc_Y_Asc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 X내림차순, 2순위 Y오름차순
Definition DefinitionsGUI.h:2695
@ PushBackToImage
도형 이미지에 설정 메뉴
Definition DefinitionsGUI.h:1551
@ GetRegionOfIntersection
도형 교차 영역 얻기 메뉴
Definition DefinitionsGUI.h:2115
@ ConvertTemplateTypeElementwise_ToFloat
도형의 변수 자료형 Float 로 변환 메뉴
Definition DefinitionsGUI.h:2959
@ SwitchToQuad
Quad 로 변환 메뉴
Definition DefinitionsGUI.h:1931
@ GetMinimumEnclosingRectangle_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 최소 외접 직사각형을 얻어 오는 메뉴
Definition DefinitionsGUI.h:2579
@ Sort_SortOrder2D_X_Desc_Y_Desc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 X내림차순, 2순위 Y내림차순
Definition DefinitionsGUI.h:2703
@ Warp_Bilinear
Figure 를 Bilinear 방식을 사용하여 휘어짐 변환하는 기능
Definition DefinitionsGUI.h:2443
@ ComplexRegion_SwitchToBezierQuarticCurve
BezierQuarticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1883
@ Rotate180
도형 180도 회전 메뉴
Definition DefinitionsGUI.h:2379
@ Flip_Both
도형 상하좌우반전 메뉴
Definition DefinitionsGUI.h:2347
@ DeclType_Region
Region 도형 생성 메뉴
Definition DefinitionsGUI.h:1671
@ DeclType_RoundRect
RoundRect 로 변환 메뉴
Definition DefinitionsGUI.h:1711
@ SwitchToRegion
Region 으로 변환 메뉴
Definition DefinitionsGUI.h:1995
@ Sort_SortOrder2D_Y_Desc_X_Asc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 Y내림차순, 2순위 X오름차순
Definition DefinitionsGUI.h:2663
@ SetInstantApplyFigure
도형의 변경 사항을 즉시 적용 메뉴
Definition DefinitionsGUI.h:2099
@ AssignFigure
도형 대입 메뉴
Definition DefinitionsGUI.h:2975
@ SwitchToCircle
Circle 로 변환 메뉴
Definition DefinitionsGUI.h:1939
@ GetPointsOfMaximumDistance_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 도형 간의 가장 긴 거리를 이루는 두 점 얻기 메뉴
Definition DefinitionsGUI.h:2611
@ TemplateType_Float
도형의 변수 자료형 Float 로 변환 메뉴
Definition DefinitionsGUI.h:1787
@ RotateArbitrary
도형 임의 각도 회전 메뉴
Definition DefinitionsGUI.h:2411
@ DeclType_Line
Line 도형 생성 메뉴
Definition DefinitionsGUI.h:1596
@ SwitchToBezierCubicCurve
BezierCubicCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1979
@ Load_DXF
DXF 파일 (Drawing Exchange Format) 불러오기 메뉴
Definition DefinitionsGUI.h:1517
@ Warp_ThinPlate
Figure 를 ThinPlate 방식을 사용하여 휘어짐 변환하는 기능
Definition DefinitionsGUI.h:2491
@ CenterType_CenterOfGravity
Figure 의 중심 종류 지정 메뉴, 무게 중심
Definition DefinitionsGUI.h:2719
@ ShowFigureArrayElementSequenceRecursively
FigureArray 내부에 FigureArray 가 존재하는 경우, 재귀적으로 도형 순서를 보이기 메뉴
Definition DefinitionsGUI.h:2203
@ Sort_SortOrder2D_X_Asc_Y_Desc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 X오름차순, 2순위 Y내림차순
Definition DefinitionsGUI.h:2687
@ Warp_Perspective
Figure 를 Perspective 방식을 사용하여 휘어짐 변환하는 기능
Definition DefinitionsGUI.h:2427
@ DeclType_Rect
Rect 도형 생성 메뉴
Definition DefinitionsGUI.h:1605
@ Warp_ThinPlate_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 ThinPlate 방식을 사용하여 휘어짐 변환하는 메뉴
Definition DefinitionsGUI.h:2499
@ MakeCircle
Circle 로 만들기 메뉴
Definition DefinitionsGUI.h:2027
@ ConvertDeclTypeElementwise_ToCubicSpline
CubicSpline 으로 변환 메뉴
Definition DefinitionsGUI.h:2879
@ SwitchToLine
Line 으로 변환 메뉴
Definition DefinitionsGUI.h:1915
@ DeclType_Circle
Circle 도형 생성 메뉴
Definition DefinitionsGUI.h:1623
@ ClearFreeDraw
자유 그리기 지우개 모두 지우기
Definition DefinitionsGUI.h:1755
@ Warp_Lanczos
Figure 를 Lanczos 방식을 사용하여 휘어짐 변환하는 기능
Definition DefinitionsGUI.h:2475
@ ComplexRegion_SwitchToBezierQuadraticCurve
BezierQuadraticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1867
@ FreeDrawEraser
자유 그리기 지우개 모드 진입
Definition DefinitionsGUI.h:1737
@ Rotate270
도형 270도 회전 메뉴
Definition DefinitionsGUI.h:2395
@ SwitchTo_ApplyElementwise
도형의 타입 변환 시 각 원소에 대해 적용하는 메뉴
Definition DefinitionsGUI.h:1899
@ ConvertDeclTypeElementwise_ToPointArray
PointArray 로 변환 메뉴
Definition DefinitionsGUI.h:2935
@ EArcClosingMethod_EachOther
원호의 끝점 처리 서로 연결 메뉴
Definition DefinitionsGUI.h:2051
@ ConvertDeclTypeElementwise_ToLine
Line 으로 변환 메뉴
Definition DefinitionsGUI.h:2831
@ ConvertTemplateTypeElementwise_ToDouble
도형의 변수 자료형 Double 로 변환 메뉴
Definition DefinitionsGUI.h:2967
@ SwitchToCubicSpline
CubicSpline 으로 변환 메뉴
Definition DefinitionsGUI.h:1963
@ EArcClosingMethod_Center
원호의 끝점 처리 중앙점 메뉴
Definition DefinitionsGUI.h:2043
@ Sort_SetClusterCoefficient
Figure 순서를 ClusterMode로 정렬 시 Cluster 의 coefficient 값을 설정하는 메뉴
Definition DefinitionsGUI.h:2639
@ MagnetToImageBoundary
도형 객체가 이미지의 가장자리에서 이동 중일 경우 가장자리에 붙도록 하는 마그넷 모드 설정 메뉴
Definition DefinitionsGUI.h:1819
@ Reduce_Elementwise
다중 선택한 도형 각각 또는 FigureArray 의 내부 원소 각각에 대해, 설정된 정밀도로 근사화하여 점 개수를 줄이는 메뉴
Definition DefinitionsGUI.h:2751
@ Sort_SortOrder2D_Y_Asc_X_Asc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 Y오름차순, 2순위 X오름차순
Definition DefinitionsGUI.h:2647
@ GroupSelectedFigures
도형 그룹화 메뉴
Definition DefinitionsGUI.h:2243
@ DeclType_Doughnut
Doughnut 으로 변환 메뉴
Definition DefinitionsGUI.h:1703
@ Edit
도형 정보 편집 메뉴
Definition DefinitionsGUI.h:1578
@ FitToImage_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형 크기를 이미지 너비 및 높이에 맞추기 메뉴
Definition DefinitionsGUI.h:1811
@ GetMinimumEnclosingRectangle
도형의 Minimum Enclosing Rectangle 얻기 메뉴
Definition DefinitionsGUI.h:2571
@ DeclType_Text
Text 를 Figure 로 생성 메뉴
Definition DefinitionsGUI.h:1719
@ OpenDialog_Transform_Elementwise
도형 변환 다이얼로그를 여는 메뉴(Elementwise)
Definition DefinitionsGUI.h:2515
@ DeclType_CubicSpline
CubicSpline 도형 생성 메뉴
Definition DefinitionsGUI.h:1639
@ DeclType_Quad
Quad 도형 생성 메뉴
Definition DefinitionsGUI.h:1614
@ ClearExclusiveRegion
Region 또는 ComplexRegion 에서 ExclusiveRegion 영역을 제거하는 메뉴
Definition DefinitionsGUI.h:2735
@ ComplexRegion_SwitchToEllipseArc
EllipseArc 로 변환 메뉴
Definition DefinitionsGUI.h:1851
@ Scale
피벗 좌표를 기준으로 하여 도형을 비율에 맞춰 늘리는 메뉴
Definition DefinitionsGUI.h:2775
@ End
뷰 시점 동기화 메뉴
Definition DefinitionsGUI.h:2991
@ CenterType_MinimumEnclosingRectangle
Figure 의 중심 종류 지정 메뉴, 최소 둘레의 직사각형의 중심
Definition DefinitionsGUI.h:2727
@ DeleteFigure
도형 삭제 메뉴
Definition DefinitionsGUI.h:2091
@ SwitchToRoundRect
RoundRect 로 변환 메뉴
Definition DefinitionsGUI.h:2011
@ Flip_Horizontal_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 상하 반전하는 메뉴
Definition DefinitionsGUI.h:2323
@ Split
Rect를 쪼개서 FigureArray로 만드는 메뉴
Definition DefinitionsGUI.h:2759
@ ConfirmFigure
도형 확인 메뉴
Definition DefinitionsGUI.h:2075
@ ConvertDeclTypeElementwise_ToRect
Rect 로 변환 메뉴
Definition DefinitionsGUI.h:2839
@ FlattenFigureArray
FigureArray 내부에 FigureArray 가 있는 경우 Flatten 적용 메뉴
Definition DefinitionsGUI.h:2227
@ FigureArrayChangeZOrder
FigureArray 내부 원소의 z-order 를 변경하는 메뉴
Definition DefinitionsGUI.h:2235
@ LeaveFreeDrawMode
자유 그리기 또는 지우개 모드 종료
Definition DefinitionsGUI.h:1746
@ TemplateType_Double
도형의 변수 자료형 Double 로 변환 메뉴
Definition DefinitionsGUI.h:1795
@ GetIntersection
2개 이상의 도형 교점 얻기 메뉴
Definition DefinitionsGUI.h:2107
@ ComplexRegion_SwitchToCubicSpline
CubicSpline 으로 변환 메뉴
Definition DefinitionsGUI.h:1859
@ ConvertDeclTypeElementwise_ToDoughnut
Doughnut 으로 변환 메뉴
Definition DefinitionsGUI.h:2871
@ HideFigure
도형 감추기 메뉴
Definition DefinitionsGUI.h:2163
@ GetConvexHull_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 Convex hull 을 얻어 오는 메뉴
Definition DefinitionsGUI.h:2531
@ DeclType_BezierQuadraticCurve
BezierQuadraticCurve 도형 생성 메뉴
Definition DefinitionsGUI.h:1647
@ EArcClosingMethod_NoClose
원호의 끝점 처리 잇지 않는 메뉴
Definition DefinitionsGUI.h:2059
@ Warp_Bilinear_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 Bilinear 방식을 사용하여 휘어짐 변환하는 메뉴
Definition DefinitionsGUI.h:2451
@ Sort_ClusterMode
Figure 순서 정렬 시 cluster Mode 여부를 지정하는 메뉴
Definition DefinitionsGUI.h:2629
@ Expression
특정 조건에 부합하는 Figure 를 얻어 오는 메뉴
Definition DefinitionsGUI.h:2815
@ SwitchToBezierQuadraticCurve
BezierQuadraticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1971
@ Rotate180_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 180도 회전하는 메뉴
Definition DefinitionsGUI.h:2387
@ Warp_Bicubic_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 Bicubic 방식을 사용하여 휘어짐 변환하는 메뉴
Definition DefinitionsGUI.h:2467
@ ConvertDeclTypeElementwise_ToBezierCubicCurve
BezierCubicCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:2895
@ Inflate
입력된 길이만큼 도형을 외접 사각형에 맞춰 늘리는 메뉴
Definition DefinitionsGUI.h:2791
@ Warp_Bicubic
Figure 를 Bicubic 방식을 사용하여 휘어짐 변환하는 기능
Definition DefinitionsGUI.h:2459
@ Text_SetText
CFLFigureText 객체의 문자열 설정 메뉴
Definition DefinitionsGUI.h:1891
@ ConvertDeclTypeElementwise_ToQuad
Quad 로 변환 메뉴
Definition DefinitionsGUI.h:2847
@ TemplateType_ApplyElementwise
도형의 변수 자료형 변환 시 각 원소에 대해 적용하는 메뉴
Definition DefinitionsGUI.h:1763
@ ConvertDeclTypeElementwise_ToRegion
Region 으로 변환 메뉴
Definition DefinitionsGUI.h:2911
@ Rotate270_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 270도 회전하는 메뉴
Definition DefinitionsGUI.h:2403
@ SwitchToPointArray
PointArray 로 변환 메뉴
Definition DefinitionsGUI.h:2019
@ MagnetAngle
도형 객체를 회전시킬 때 각도가 90도 배수에 근접하게 되면 90도의 배수로 도형의 각도를 지정하는 메뉴
Definition DefinitionsGUI.h:1827
@ RotateArbitrary_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 임의의 각도로 회전하는 메뉴
Definition DefinitionsGUI.h:2419
@ ConvertDeclTypeElementwise_ToEllipse
Ellipse 로 변환 메뉴
Definition DefinitionsGUI.h:2863
@ GetBoundary
도형의 경계 직사각형 얻기 메뉴
Definition DefinitionsGUI.h:2555
@ ShowInformationText
도형 정보 텍스트 보이기 메뉴
Definition DefinitionsGUI.h:2219
@ ConvertDeclTypeElementwise_ToBezierQuadraticCurve
BezierQuadraticCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:2887
@ ChangeMultiSelectOrder
도형의 다중 선택 순서 변경 메뉴
Definition DefinitionsGUI.h:2275
@ GetPointsOfMinimumDistance
도형 간의 가장 짧은 거리를 이루는 두 점 얻기 메뉴
Definition DefinitionsGUI.h:2587
@ FreeDraw
자유 그리기 모드 진입
Definition DefinitionsGUI.h:1728
@ GetPointsOfMinimumDistance_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 도형 간의 가장 짧은 거리를 이루는 두 점 얻기 메뉴
Definition DefinitionsGUI.h:2595
@ Scale_Elementwise
다중 선택한 도형 각각 또는 FigureArray 의 내부 원소 각각에 대해, 피벗 좌표를 기준으로 하여 도형을 비율에 맞춰 늘리는 메뉴
Definition DefinitionsGUI.h:2783
@ GroupSelectedFiguresToPointArray
도형을 PointArray 로 그룹화 메뉴
Definition DefinitionsGUI.h:2251
@ Warp_Lanczos_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 Lanczos 방식을 사용하여 휘어짐 변환하는 메뉴
Definition DefinitionsGUI.h:2483
@ Sort_Execute
Figure 순서를 정렬하는 메뉴
Definition DefinitionsGUI.h:2619
@ SwitchToComplexRegion
ComplexRegion 으로 변환 메뉴
Definition DefinitionsGUI.h:2003
@ DeclType_Ellipse
Ellipse 도형 생성 메뉴
Definition DefinitionsGUI.h:1631
@ ComplexRegion_SwitchToBezierCubicCurve
BezierCubicCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:1875
@ ShowControlPoint
CubicSpline 또는 BezierCubicCurve 의 Control Point 보이기 메뉴
Definition DefinitionsGUI.h:2211
@ DeclType_BezierQuarticCurve
BezierQuarticCurve 도형 생성 메뉴
Definition DefinitionsGUI.h:1663
@ ComplexRegion_SwitchToLine
ComplexRegion 도형 객체 내부 세그먼트를 Line 으로 변환하는 메뉴
Definition DefinitionsGUI.h:1835
@ Clear
도형 정리 메뉴
Definition DefinitionsGUI.h:2067
@ ConvertDeclTypeElementwise_ToComplexRegion
ComplexRegion 으로 변환 메뉴
Definition DefinitionsGUI.h:2919
@ UngroupSelectedFigures
도형 비그룹화 메뉴
Definition DefinitionsGUI.h:2259
@ FlattenAndAssignFigure
여러 도형을 하나의 FigureArray로 Flatten 후 대입 메뉴
Definition DefinitionsGUI.h:2983
@ Flip_Both_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 상하 좌우 반전하는 메뉴
Definition DefinitionsGUI.h:2355
@ Rotate90_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 90도 회전하는 메뉴
Definition DefinitionsGUI.h:2371
@ CancelFigure
도형 취소 메뉴
Definition DefinitionsGUI.h:2083
@ ComplexRegion_SwitchToArc
Arc 로 변환 메뉴
Definition DefinitionsGUI.h:1843
@ DeclType_PointArray
PointArray 로 변환 메뉴
Definition DefinitionsGUI.h:1695
@ GetPointsOfMaximumDistance
도형 간의 가장 긴 거리를 이루는 두 점 얻기 메뉴
Definition DefinitionsGUI.h:2603
@ ShowFigureArrayElementSequence
FigureArray 내부 도형 순서 보이기 메뉴
Definition DefinitionsGUI.h:2195
@ SetSource
선택한 도형을 도형 연산(변환 등)의 원본으로 설정
Definition DefinitionsGUI.h:2539
@ Reduce
CFLRegion 등 객체에 대해, 설정된 정밀도로 근사화하여 점 개수를 줄이는 메뉴
Definition DefinitionsGUI.h:2743
@ DeletePoint
도형 Point 지우기 메뉴
Definition DefinitionsGUI.h:2147
@ ShowMultiSelectOrder
다중 선택 순서 보이기 메뉴
Definition DefinitionsGUI.h:2267
@ GetRegionOfUnion
도형 합집합 영역 얻기 메뉴
Definition DefinitionsGUI.h:2123
@ SetName
도형 이름 설정 메뉴
Definition DefinitionsGUI.h:1569
@ Flip_Horizontal
도형 상하 반전 메뉴
Definition DefinitionsGUI.h:2315
@ CenterType_RectangleBoundaryCenter
Figure 의 중심 종류 지정 메뉴, 최외곽 사각형의 중심
Definition DefinitionsGUI.h:2711
@ Sort_SortOrder2D_Y_Asc_X_Desc
Figure의 2차원 정렬 기준을 지정하는 메뉴, 1순위 Y오름차순, 2순위 X내림차순
Definition DefinitionsGUI.h:2655
@ Warp_Perspective_Elementwise
다중 선택한 도형 또는 FigureArray 의 내부 원소에 대해 개별적으로 도형을 Perspective 방식을 사용하여 휘어짐 변환하는 메뉴
Definition DefinitionsGUI.h:2435
@ DeclType_Point
Point 도형 생성 메뉴
Definition DefinitionsGUI.h:1587
@ ShowWindingSequence
도형 순서 숫자 보이기 메뉴
Definition DefinitionsGUI.h:2187
@ ConvertDeclTypeElementwise_ToPoint
Point 로 변환 메뉴
Definition DefinitionsGUI.h:2823
@ TemplateType_Int64
도형의 변수 자료형 Int64 로 변환 메뉴
Definition DefinitionsGUI.h:1779
@ Inflate_Elementwise
다중 선택한 도형 각각 또는 FigureArray 의 내부 원소 각각에 대해, 입력된 길이만큼 도형을 외접 사각형에 맞춰 늘리는 메뉴
Definition DefinitionsGUI.h:2799
@ Split_Elementwise
다중 선택한 도형 각각 또는 FigureArray 의 내부 원소 각각에 대해, Rect를 쪼개서 FigureArray로 만드는 메뉴
Definition DefinitionsGUI.h:2767
@ OpenDialog_Transform
도형 변환 다이얼로그를 여는 메뉴
Definition DefinitionsGUI.h:2507
@ ConvertDeclTypeElementwise_ToRoundRect
RoundRect 로 변환 메뉴
Definition DefinitionsGUI.h:2927
@ ConvertTemplateTypeElementwise_ToInt64
도형의 변수 자료형 Int64 로 변환 메뉴
Definition DefinitionsGUI.h:2951
EObjectFigureHitTest
이미지 뷰 위의 도형에 대한 마우스 hit test
Definition DefinitionsGUI.h:4042
@ GripEllipseArc
ComplexRegion 의 Ellipse Arc 를 잡은 경우
Definition DefinitionsGUI.h:4176
@ GripArc
ComplexRegion 의 Circle Arc 를 잡은 경우
Definition DefinitionsGUI.h:4167
@ ExclusiveRegion
Exclusive Region 을 잡은 경우
Definition DefinitionsGUI.h:4239
@ GripControlPointEnd
CubicSpline 또는 BezierCubicCurve 의 end control point 를 잡은 경우
Definition DefinitionsGUI.h:4140
@ TransformDoughnutRadius
Doughnut 의 Radius 를 조정하는 경우
Definition DefinitionsGUI.h:4230
@ GripControlPoint
CubicSpline 또는 BezierCubicCurve 의 control point 를 잡은 경우
Definition DefinitionsGUI.h:4158
@ Transform
도형 변형
Definition DefinitionsGUI.h:4077
@ GripLine
직선을 잡은 경우
Definition DefinitionsGUI.h:4113
@ GripInterpolatedLine
보간 직선을 잡은 경우
Definition DefinitionsGUI.h:4248
@ Move
도형 이동
Definition DefinitionsGUI.h:4059
@ GripControlPointStart
CubicSpline 또는 BezierCubicCurve 의 start control point 를 잡은 경우
Definition DefinitionsGUI.h:4131
@ Rotate
도형 회전
Definition DefinitionsGUI.h:4068
@ GripBezierCubicCurve
ComplexRegion 의 BezierCubicCurve 를 잡은 경우
Definition DefinitionsGUI.h:4203
@ ArcDegree
원, 타원, 도넛의 start degree 또는 delta degree 변경
Definition DefinitionsGUI.h:4122
@ SelectOnMultiSelectedFigures
Ctrl 키를 누른 채로 다중 선택된 도형들 중에서 선택된 경우
Definition DefinitionsGUI.h:4275
@ GripBezierQuarticCurve
ComplexRegion 의 BezierQuarticCurve 를 잡은 경우
Definition DefinitionsGUI.h:4212
@ GripBezierQuadraticCurve
ComplexRegion 의 BezierQuadraticCurve 를 잡은 경우
Definition DefinitionsGUI.h:4194
@ RoundRect_GripRadiusVertex
RoundRect 의 Radius 조정 점을 잡은 경우
Definition DefinitionsGUI.h:4266
@ GripControlPointMid
CubicSpline 또는 BezierQuarticCurve 의 Mid control point 를 잡은 경우
Definition DefinitionsGUI.h:4149
@ GripCubicSpline
ComplexRegion 의 CubicSpline 을 잡은 경우
Definition DefinitionsGUI.h:4185
@ GripVertex
정점을 잡은 경우
Definition DefinitionsGUI.h:4104
@ ComplexRegion_GripEndVertex
ComplexRegion 내부의 Line, Circle Arc, Ellipse Arc, CubicSpline, BezierCubicCurve 의 끝 정점을 잡은 경우
Definition DefinitionsGUI.h:4257
@ Select
도형 선택
Definition DefinitionsGUI.h:4094
@ GripBezierCurve
ComplexRegion 의 BezierCurve 를 잡은 경우
Definition DefinitionsGUI.h:4221
@ Hover
도형 위에 마우스가 있는 경우
Definition DefinitionsGUI.h:4284
EProgressCtrlTextMode
ProgressCtrl 의 문자열 표시 모드
Definition DefinitionsGUI.h:7377
@ PositionPerMax
최대값에 대한 현재 위치 표시. 예 : "440/1000"
Definition DefinitionsGUI.h:7400
@ Percentage
퍼센트 표시. 예 : "44%"
Definition DefinitionsGUI.h:7384
@ Position
현재 위치 표시. 예 : "440"
Definition DefinitionsGUI.h:7392
@ UserDefinedText
사용자 지정 텍스트 표시. 예 : "Waiting.."
Definition DefinitionsGUI.h:7408
ELayerDrawingMethod
이미지 뷰 위에 Layer 의 drawing 객체들을 그리는 시점을 결정하는 모드입니다. 사용자가 CGUIViewImageLayer 의 Update() 함수를 명시적으로 호출할 때에...
Definition DefinitionsGUI.h:4946
@ Auto
기본값
Definition DefinitionsGUI.h:4953
@ Manual
Update 호출 시점에만 Layer 에 Drawing 을 하는 모드
Definition DefinitionsGUI.h:4961
ESortOrder
정렬 순서
Definition DefinitionsGUI.h:6623
@ Ascending
오름차순 정렬
Definition DefinitionsGUI.h:6638
@ Descending
내림차순 정렬
Definition DefinitionsGUI.h:6646
EMenuItemImageFigure
이미지에 저장된 도형에 대한 메뉴 아이템
Definition DefinitionsGUI.h:1246
@ OpenFigureListWindow
이미지에 저장된 도형 목록 창 열기 메뉴
Definition DefinitionsGUI.h:1277
@ Popup
이미지에 저장된 도형 띄우기 메뉴
Definition DefinitionsGUI.h:1325
@ EnableHover
이미지에 저장된 Figure 에 마우스가 닿을 때 하이라이트 할지 여부를 설정하는 메뉴
Definition DefinitionsGUI.h:1450
@ Remove
이미지에 저장된 도형 중 선택된 도형을 제거하는 메뉴
Definition DefinitionsGUI.h:1360
@ SetRealSizeText
이미지에 저장된 도형의 이름을 표시할 때 실제 크기로 표시할지 여부를 설정하는 메뉴
Definition DefinitionsGUI.h:1434
@ BringToFront
이미지에 저장된 도형 맨 앞으로 가져오기 메뉴
Definition DefinitionsGUI.h:1293
@ RemoveByCondition
이미지에 저장된 Figure 중 조건(예를 들어 너비가 10 이상이거나, 타입이 rect 이거나, 이름이 "0"으로 시작 등)에 부합하는 도형을 제거하는 메뉴
Definition DefinitionsGUI.h:1377
@ PopupByCondition
이미지에 저장된 Figure 중 조건(예를 들어 너비가 10 이상이거나, 타입이 rect 이거나, 이름이 "0"으로 시작 등)에 부합하는 도형을 조작 가능한 Figure Object...
Definition DefinitionsGUI.h:1351
@ MultiSelect_Popup
이미지에 저장된 도형 띄우기 메뉴
Definition DefinitionsGUI.h:1333
@ OpenFigureClassesWindow
이미지에 저장된 도형의 클래스 목록 창 열기 메뉴
Definition DefinitionsGUI.h:1285
@ Paste
클립보드에 복사되어 있는 Figure를 Image Figure로 붙여 넣는 메뉴
Definition DefinitionsGUI.h:1474
@ CopySelected
이미지에 저장된 Figure 중 선택한 객체들을 복사하는 메뉴
Definition DefinitionsGUI.h:1458
@ SetOpacity
이미지에 저장된 도형의 테두리 또는 채우기 불투명도를 설정하는 메뉴
Definition DefinitionsGUI.h:1442
@ MultiSelect_SetDrawingAttribute
이미지에 저장된 도형의 그리기 속성을 설정하는 메뉴
Definition DefinitionsGUI.h:1418
@ CopyAll
이미지에 저장된 Figure를 모두 복사하는 메뉴
Definition DefinitionsGUI.h:1466
@ RemoveByConditionFromAllPages
이미지에 저장된 Figure 중 조건(예를 들어 너비가 10 이상이거나, 타입이 rect 이거나, 이름이 "0"으로 시작 등)에 부합하는 도형을 모든 페이지로부터 제거하는 메뉴
Definition DefinitionsGUI.h:1386
@ MultiSelect_Remove
이미지에 저장된 도형 중 선택된 도형을 지우기 메뉴
Definition DefinitionsGUI.h:1368
@ ClearAll
이미지에 저장된 모든 도형 지우기 메뉴
Definition DefinitionsGUI.h:1394
@ SendToBack
이미지에 저장된 도형 맨 뒤로 보내기 메뉴
Definition DefinitionsGUI.h:1309
@ End
마지막 메뉴
Definition DefinitionsGUI.h:1483
@ BringForward
이미지에 저장된 도형 앞으로 가져오기 메뉴
Definition DefinitionsGUI.h:1301
@ PopupAll
이미지에 저장된 모든 도형 띄우기 메뉴
Definition DefinitionsGUI.h:1342
@ SetDrawingAttribute
이미지에 저장된 도형의 그리기 속성을 설정하는 메뉴
Definition DefinitionsGUI.h:1410
@ SetTextFont
이미지에 저장된 도형의 이름에 대한 폰트 설정 메뉴
Definition DefinitionsGUI.h:1426
@ ShowFigure
이미지에 저장된 Figure 보이기 메뉴
Definition DefinitionsGUI.h:1261
@ SendBackward
이미지에 저장된 도형 뒤로 보내기 메뉴
Definition DefinitionsGUI.h:1317
@ ClearFromAllPages
모든 페이지 내에 들어있는 모든 Figure 를 제거하는 메뉴
Definition DefinitionsGUI.h:1402
@ ShowText
이미지에 저장된 Figure 의 이름 및 텍스트 보이기 메뉴
Definition DefinitionsGUI.h:1269
EPaneType
Pane 타입
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
MainFrame 에 기본으로 구성되는 Pane 모음
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
이미지 뷰 메뉴 아이템
Definition DefinitionsGUI.h:196
@ CopyPages
선택한 페이지 또는 여러 페이지들을 클립보드에 복사하는 메뉴
Definition DefinitionsGUI.h:429
@ ClearSelectedPage
선택된 페이지 제거 메뉴
Definition DefinitionsGUI.h:366
@ ReductionInterpolation
축소 보간 기능
Definition DefinitionsGUI.h:924
@ MiniMap_ShowAllLayers
미니맵에서 모든 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1178
@ ClearAllLayers
모든 레이어 정리 메뉴
Definition DefinitionsGUI.h:1146
@ MiniMap_ShowLayer_ImageFigure_Text
이미지에 저장된 도형의 텍스트 레이어를 미니맵에서 보이기 메뉴
Definition DefinitionsGUI.h:1226
@ ShowImageCenter
이미지의 중앙선 보이기 메뉴
Definition DefinitionsGUI.h:933
@ ShowStatusBarItem_CursorY
상태 바의 커서 위치 y 좌표 값 보이기 메뉴
Definition DefinitionsGUI.h:798
@ SaveCurrentPageWithLayers
현재 페이지와 레이어 정보 저장 메뉴
Definition DefinitionsGUI.h:321
@ SetScale
이미지 뷰의 스케일을 임의의 값으로 지정하는 메뉴
Definition DefinitionsGUI.h:609
@ CreateImage
이미지 생성 메뉴
Definition DefinitionsGUI.h:393
@ ShowStatusBarItem_CurrentPage
상태 바의 현재 페이지 넘버 보이기 메뉴
Definition DefinitionsGUI.h:726
@ ConvertAllFigureObjectsToLayer
모든 Figure Object 를 레이어 위에 그리는 메뉴
Definition DefinitionsGUI.h:1114
@ ShowStatusBarItem_ImageDepth
상태 바의 이미지 뎁스 보이기 메뉴
Definition DefinitionsGUI.h:771
@ Image_Rotate270
이미지 270도 회전 메뉴
Definition DefinitionsGUI.h:681
@ InsertFolder
폴더 삽입 메뉴
Definition DefinitionsGUI.h:285
@ ShowStatusBarItem_FileAndPageName
상태 바의 파일 및 페이지 이름 보이기 메뉴
Definition DefinitionsGUI.h:717
@ ShowPixelValue
픽셀값 보이기 메뉴
Definition DefinitionsGUI.h:870
@ ZoomOut
이미지 뷰의 스케일 축소 메뉴
Definition DefinitionsGUI.h:582
@ MiniMap_ShowLayer_ImageFigure_Figure
이미지에 저장된 도형 레이어를 미니맵에서 보이기 메뉴
Definition DefinitionsGUI.h:1218
@ Image_Flip_Both
이미지 상하좌우반전 메뉴
Definition DefinitionsGUI.h:654
@ SetFloatingImageValueRange
부동소수점 이미지의 픽셀값에 대한 최대 및 최소 값의 범위를 지정하는 메뉴
Definition DefinitionsGUI.h:960
@ ImagePage_InvertSelection
현재 선택된 이미지 페이지들을 반전하는 메뉴 항목
Definition DefinitionsGUI.h:564
@ PixelNumberMode_Binary
픽셀 값 이진수 표기 메뉴
Definition DefinitionsGUI.h:906
@ PixelAccuracy
픽셀 분해능 설정 메뉴
Definition DefinitionsGUI.h:879
@ AppendFile_Raw
.raw 파일 추가 메뉴
Definition DefinitionsGUI.h:249
@ ShowCrosshair
십자선 보이기 메뉴
Definition DefinitionsGUI.h:834
@ ShowStatusBarItem_CursorX
상태 바의 커서 위치 x 좌표 값 보이기 메뉴
Definition DefinitionsGUI.h:789
@ ShowStatusBarItem_PixelValueAtCursor
상태 바의 커서 위치에서의 픽셀값 보이기 메뉴
Definition DefinitionsGUI.h:807
@ ShowLayer_Drawing
그리기 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1050
@ ShowStatusBarItem_ImageChannels
상태 바의 이미지 채널 수 보이기 메뉴
Definition DefinitionsGUI.h:762
@ Image_Rotate180
이미지 180도 회전 메뉴
Definition DefinitionsGUI.h:672
@ MiniMap_ShowLayer_Image
미니맵에서 이미지 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1194
@ ConvertSelectedFigureObjectToLayer
선택한 Figure Object 를 레이어 위에 그리는 메뉴
Definition DefinitionsGUI.h:1098
@ ShowAllLayers
모든 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1026
@ DropFile
드롭 파일 메뉴
Definition DefinitionsGUI.h:294
@ AutoPageScroll_Stop
자동으로 페이지 이동을 멈추는 메뉴
Definition DefinitionsGUI.h:546
@ ConvertAllLayersToFigureObject
모든 레이어 위에 그려진 도형을 Figure Object 로 변환하여 이미지 뷰 위에 띄우는 메뉴
Definition DefinitionsGUI.h:1090
@ ZoomIn
이미지 뷰의 스케일 확대 메뉴
Definition DefinitionsGUI.h:573
@ ConvertSelectedFigureObjectToNamedLayer
선택한 Figure Object 를 이름으로 정의된 레이어 위에 그리는 메뉴
Definition DefinitionsGUI.h:1106
@ ZoomFit
이미지 뷰의 스케일을 화면 크기에 맞추는 메뉴
Definition DefinitionsGUI.h:591
@ InsertFile_Raw
.raw 파일 삽입 메뉴
Definition DefinitionsGUI.h:267
@ ClearCurrentPage
현재 페이지 제거 메뉴
Definition DefinitionsGUI.h:357
@ Help
도움말 다이얼로그를 띄우는 메뉴
Definition DefinitionsGUI.h:977
@ ShowStatusBarItem_TotalPages
상태 바의 전체 페이지 수 보이기 메뉴
Definition DefinitionsGUI.h:735
@ ConvertLayerToFigureObject
레이어 위에 그려진 도형을 Figure Object 로 변환하여 이미지 뷰 위에 띄우는 메뉴
Definition DefinitionsGUI.h:1074
@ ZoomToActualSize
이미지 뷰의 스케일을 실제 사이즈로 설정하는 메뉴
Definition DefinitionsGUI.h:600
@ PixelSegmentationMode
Pixel 값을 컬러링 해서 볼 수 있는 기능
Definition DefinitionsGUI.h:915
@ ShowGrid
격자 보이기 메뉴
Definition DefinitionsGUI.h:825
@ SetViewCenterAndScale
지정한 좌표가 이미지 뷰의 중심에 오도록 이동 메뉴
Definition DefinitionsGUI.h:627
@ ShowStatusBarItem_ImageHeight
상태 바의 이미지 높이 보이기 메뉴
Definition DefinitionsGUI.h:753
@ AppendPage
페이지 추가 메뉴
Definition DefinitionsGUI.h:375
@ ShowFigureCoordinateOnCursor
마우스 커서 위치에 대한 도형 좌표 디스플레이 메뉴
Definition DefinitionsGUI.h:852
@ InsertFile
파일 삽입 메뉴
Definition DefinitionsGUI.h:258
@ End
마지막 메뉴
Definition DefinitionsGUI.h:1235
@ Object_GlobalSetting
이미지 뷰 객체에 대한 전역 설정을 하는 메뉴
Definition DefinitionsGUI.h:986
@ ZoomFitToNamedLayer
이름으로 정의된 레이어 위 도형 및 텍스트가 화면에 꽉 차도록 스케일 및 오프셋 조정 메뉴
Definition DefinitionsGUI.h:1162
@ ShowImagePixelValueOnCursor
마우스 커서 위치에 대한 픽셀값 디스플레이 메뉴
Definition DefinitionsGUI.h:861
@ SyncViewPointOfView
뷰 시점 동기화 메뉴
Definition DefinitionsGUI.h:1002
@ ClearNamedLayer
이름으로 정의된 레이어 위 도형 및 텍스트 제거 메뉴
Definition DefinitionsGUI.h:1138
@ MiniMap_ShowLayer_Drawing
미니맵에서 그리기 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1202
@ FixThumbnailView
이미지 미리보기창 고정 메뉴
Definition DefinitionsGUI.h:483
@ ClearAllObjects
모든 도형 및 측정 객체 정리 메뉴
Definition DefinitionsGUI.h:994
@ FirstPage
첫 페이지로 이동 메뉴
Definition DefinitionsGUI.h:492
@ PrevPage
이전 페이지로 이동 메뉴
Definition DefinitionsGUI.h:501
@ Image_Flip_Vertical
이미지 좌우반전 메뉴
Definition DefinitionsGUI.h:645
@ NextPage
다음 페이지로 이동 메뉴
Definition DefinitionsGUI.h:519
@ SaveCurrentPage
현재 페이지 저장 메뉴
Definition DefinitionsGUI.h:312
@ ShowNamedLayer
이름으로 정의된 그리기 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1058
@ InsertPage
페이지 삽입 메뉴
Definition DefinitionsGUI.h:384
@ ShowToolBar
툴바 보이기 메뉴
Definition DefinitionsGUI.h:699
@ CanvasColorPicker
캔버스 컬러 설정 다이얼로그를 띄우는 메뉴
Definition DefinitionsGUI.h:942
@ ShowStatusBarItem_ImageWidth
상태 바의 이미지 너비 보이기 메뉴
Definition DefinitionsGUI.h:744
@ CopyImage
이미지를 클립보드에 복사하는 메뉴
Definition DefinitionsGUI.h:420
@ AutoPageScroll_Start
자동으로 페이지 이동을 시작하는 메뉴
Definition DefinitionsGUI.h:537
@ PasteImageAt
클립보드의 이미지를 현재 선택된 페이지의 뒤에 삽입하며 붙여 넣는 메뉴
Definition DefinitionsGUI.h:438
@ ShowImageMiniMap
미니맵 보이기 메뉴
Definition DefinitionsGUI.h:456
@ ConvertAllFigureObjectsToNamedLayer
모든 Figure Object 를 이름으로 정의된 레이어 위에 그리는 메뉴
Definition DefinitionsGUI.h:1122
@ ShowLayer_Image
이미지 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1042
@ ConvertNamedLayerToFigureObject
이름으로 정의된 레이어 위에 그려진 도형을 Figure Object 로 변환하여 이미지 뷰 위에 띄우는 메뉴
Definition DefinitionsGUI.h:1082
@ HideAllLayers
모든 레이어 감추기 메뉴
Definition DefinitionsGUI.h:1034
@ Image_Flip_Horizontal
이미지 상하반전 메뉴
Definition DefinitionsGUI.h:636
@ MiniMap_ShowNamedLayer
미니맵에서 이름으로 정의된 레이어 보이기 메뉴
Definition DefinitionsGUI.h:1210
@ Image_Rotate90
이미지 90도 회전 메뉴
Definition DefinitionsGUI.h:663
@ LastPage
마지막 페이지로 이동 메뉴
Definition DefinitionsGUI.h:528
@ ZoomFitToLayer
레이어 위 도형 및 텍스트가 화면에 꽉 차도록 스케일 및 오프셋 조정 메뉴
Definition DefinitionsGUI.h:1154
@ ShowImageCoordinateOnCursor
마우스 커서 위치에 대한 이미지 좌표 디스플레이 메뉴
Definition DefinitionsGUI.h:843
@ SavePages
선택한 페이지 저장 메뉴
Definition DefinitionsGUI.h:330
@ LoadFile_Raw
.raw 파일 불러오기 메뉴
Definition DefinitionsGUI.h:231
@ LeaveTeachingMode
티칭모드 취소 메뉴
Definition DefinitionsGUI.h:816
@ LayerProperties
레이어 속성 다이얼로그를 띄우는 메뉴
Definition DefinitionsGUI.h:1066
@ PixelNumberMode_Hexadecimal
픽셀 값 십육진수 표기 메뉴
Definition DefinitionsGUI.h:897
@ Save
저장 메뉴
Definition DefinitionsGUI.h:303
@ ClearLayer
레이어 위 도형 및 텍스트 제거 메뉴
Definition DefinitionsGUI.h:1130
@ RearrangePageOrder_MoveToLastPage
선택한 페이지를 맨 뒤로 이동시키는 메뉴
Definition DefinitionsGUI.h:411
@ ShowStatusBar
상태 바 보이기 메뉴
Definition DefinitionsGUI.h:708
@ ClearThenPasteImage
현재 열려 있는 이미지를 닫은 뒤 클립보드의 이미지를 붙여 넣는 메뉴
Definition DefinitionsGUI.h:447
@ SelectPage
선택 페이지로 이동 메뉴
Definition DefinitionsGUI.h:510
@ ShowThumbnailView
이미지 미리보기 창 보이기 메뉴
Definition DefinitionsGUI.h:474
@ Panning
이미지 뷰의 이동 메뉴
Definition DefinitionsGUI.h:618
@ ClearFile
파일 닫기 메뉴
Definition DefinitionsGUI.h:348
@ MiniMap_HideAllLayers
미니맵에서 모든 레이어 감추기 메뉴
Definition DefinitionsGUI.h:1186
@ PixelNumberMode_Decimal
픽셀 값 십진수 표기 메뉴
Definition DefinitionsGUI.h:888
@ ShowScrollBar
스크롤 바 보이기 메뉴
Definition DefinitionsGUI.h:690
@ AppendFile
파일 추가 메뉴
Definition DefinitionsGUI.h:240
@ ShowStatusBarItem_ZoomLevel
상태 바의 뷰어 스케일 보이기 메뉴
Definition DefinitionsGUI.h:780
@ ShowImageInfo
이미지 정보 다이얼로그를 띄우는 메뉴
Definition DefinitionsGUI.h:951
@ SyncWindow
윈도우 동기화 메뉴
Definition DefinitionsGUI.h:1018
@ RearrangePageOrder_MoveToFirstPage
선택한 페이지를 맨 앞으로 이동시키는 메뉴
Definition DefinitionsGUI.h:402
@ AutoSaveImage
이미지 자동 저장 메뉴
Definition DefinitionsGUI.h:339
@ AutoPageScroll_Settings
자동으로 페이지를 이동하는 기능과 관련된 설정 메뉴
Definition DefinitionsGUI.h:555
@ LoadFolder
폴더 불러오기 메뉴
Definition DefinitionsGUI.h:222
@ ShowPageIndex
이미지 페이지 숫자 보이기 메뉴
Definition DefinitionsGUI.h:465
@ SyncViewPageIndex
뷰 페이지 동기화 메뉴
Definition DefinitionsGUI.h:1010
@ LoadFile
파일 불러오기 메뉴
Definition DefinitionsGUI.h:213
@ SetDecimalPlaceOfCoordinate
좌표의 소수점 표시 자릿수를 설정
Definition DefinitionsGUI.h:968
@ FitAllLayersOnCanvas
모든 레이어 위 도형 및 텍스트가 화면에 꽉 차도록 스케일 및 오프셋 조정 메뉴
Definition DefinitionsGUI.h:1170
@ AppendFolder
폴더 추가 메뉴
Definition DefinitionsGUI.h:276
EGUIViewImageParagraphAlignment
이미지 뷰의 문단 정렬
Definition DefinitionsGUI.h:4626
@ MASK
MASK
Definition DefinitionsGUI.h:4657
@ BOTTOM
아래쪽 정렬
Definition DefinitionsGUI.h:4641
@ TOP
위쪽 정렬
Definition DefinitionsGUI.h:4633
@ CENTER
중앙 정렬
Definition DefinitionsGUI.h:4649
EPermission
권한
Definition DefinitionsGUI.h:7513
@ View
보기 권한
Definition DefinitionsGUI.h:7520
@ Modify_Execute
변경 및 실행 권한
Definition DefinitionsGUI.h:7528
EPixelNumberMode
이미지 뷰의 픽셀값 표기 옵션
Definition DefinitionsGUI.h:163
@ Hexadecimal
십육진수 표기
Definition DefinitionsGUI.h:178
@ Binary
이진수 표기
Definition DefinitionsGUI.h:186
@ Decimal
십진수 표기
Definition DefinitionsGUI.h:170
EImageRotateAngle
이미지 뷰에서 회전 가능한 이미지 회전 각도
Definition DefinitionsGUI.h:3140
@ Degree270
270 도
Definition DefinitionsGUI.h:3175
@ Degree90
90 도
Definition DefinitionsGUI.h:3157
@ Degree180
180 도
Definition DefinitionsGUI.h:3166
EKeyType
키보드 입력값
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
이미지 뷰 도형 객체의 마그넷 옵션
Definition DefinitionsGUI.h:7110
@ ImageCenter
이미지의 중앙에 마그넷
Definition DefinitionsGUI.h:7133
@ FigureEdge
도형의 엣지에 마그넷
Definition DefinitionsGUI.h:7149
@ FigureCenter
도형의 중앙에 마그넷
Definition DefinitionsGUI.h:7157
@ Image
이미지의 엣지와 중앙에 마그넷
Definition DefinitionsGUI.h:7141
@ ImageEdge
이미지의 엣지에 마그넷
Definition DefinitionsGUI.h:7125
EGUIViewImageHitArea
이미지 뷰 위에서 마우스가 위치한 영역입니다.
Definition DefinitionsGUI.h:3858
@ MiniMapDisplayingArea
Mini map displaying 영역
Definition DefinitionsGUI.h:3884
@ MultiFigures
두 개 이상의 Figure 객체
Definition DefinitionsGUI.h:3929
@ MiniMap
Mini map 영역
Definition DefinitionsGUI.h:3875
@ PageIndex
페이지 인덱스
Definition DefinitionsGUI.h:3965
@ MultiMeasurements
두 개 이상의 Figure 객체
Definition DefinitionsGUI.h:4001
@ Figure
Figure 객체
Definition DefinitionsGUI.h:3920
@ Measurement
Measurement 객체
Definition DefinitionsGUI.h:3992
@ PrevPageArrow
다음 페이지 이동 화살표
Definition DefinitionsGUI.h:3974
@ Thumbnail
Thumbnail
Definition DefinitionsGUI.h:3911
@ MultiImageFigures
이미지에 저장된 도형
Definition DefinitionsGUI.h:3947
@ ThumbnailViewTop
ThumbnailView 의 윗 부분 영역으로, 이 영역 위에서 드래그 시 ThumbnailView 의 높이를 조절 가능
Definition DefinitionsGUI.h:3902
@ StatusBar
상태표시줄
Definition DefinitionsGUI.h:3956
@ NextPageArrow
이전 페이지 이동 화살표
Definition DefinitionsGUI.h:3983
EAvailableFigureContextMenu
도형 객체에 대한 가능한 컨텍스트 메뉴
Definition DefinitionsGUI.h:5210
@ Group
그룹화 메뉴
Definition DefinitionsGUI.h:5610
@ ExtractBoundaryAndContour
도형의 경계 및 윤곽을 얻는 메뉴
Definition DefinitionsGUI.h:5682
@ GetRegion
영역 계산 메뉴
Definition DefinitionsGUI.h:5506
@ ComplexRegionSwitchTo
ComplexRegion 도형의 요소 Line, Arc, EllipseArc, CubicSpline, BezierCubicCurve 으로 변환 메뉴
Definition DefinitionsGUI.h:5330
@ Ungroup
그룹 해제 메뉴
Definition DefinitionsGUI.h:5618
@ Sort
FigureArray 또는 다중 Figure 의 순서를 정렬하는 메뉴
Definition DefinitionsGUI.h:5690
@ Magnet
모든 마그넷 동작 메뉴
Definition DefinitionsGUI.h:5322
@ SaveFigureToFileSystem
Figure 객체 파일 저장 메뉴
Definition DefinitionsGUI.h:5626
@ ShowGuideDrawing
GuideDrawing 보이기 메뉴
Definition DefinitionsGUI.h:5554
@ SetZOrder
ZOrder 설정 메뉴
Definition DefinitionsGUI.h:5594
@ SwitchTo
모든 변환 메뉴
Definition DefinitionsGUI.h:5458
@ TemplateType
도형의 모든 변수 자료형으로 변환 메뉴
Definition DefinitionsGUI.h:5298
@ ArcClosingMethod
원호의 끝점 처리 지정 메뉴
Definition DefinitionsGUI.h:5466
@ EditFigure
도형 편집 메뉴
Definition DefinitionsGUI.h:5257
EViewImageCreatePageOption
이미지 뷰의 페이지 생성 옵션
Definition DefinitionsGUI.h:138
EAvailableViewImageContextMenuImageFigure
이미지에 저장된 도형 객체에 대한 가능한 컨텍스트 메뉴
Definition DefinitionsGUI.h:6148
@ ByCondition
이미지에 저장된 Figure 중 조건(예를 들어 너비가 10 이상이거나, 타입이 rect 이거나, 이름이 "0"으로 시작 등)에 부합하는 도형을 얻는 메뉴
Definition DefinitionsGUI.h:6203
@ Copy
이미지에 저장된 Figure 중 선택한 객체들을 복사하는 메뉴
Definition DefinitionsGUI.h:6275
EGUIViewImageFontWeight
이미지 뷰의 폰트 두께
Definition DefinitionsGUI.h:4489
@ SEMIBOLD
약간 두꺼운 두께
Definition DefinitionsGUI.h:4551
@ BLACK
무거운 두께
Definition DefinitionsGUI.h:4615
@ NORMAL
보통 두께
Definition DefinitionsGUI.h:4533
@ BOLD
두꺼운 두께
Definition DefinitionsGUI.h:4559
@ EXTRABOLD
아주 두꺼운 두께
Definition DefinitionsGUI.h:4567
@ ULTRALIGHT
아주 가벼운 두께
Definition DefinitionsGUI.h:4583
@ EXTRALIGHT
아주 가벼운 두께
Definition DefinitionsGUI.h:4515
@ HEAVY
무거운 두께
Definition DefinitionsGUI.h:4575
@ REGULAR
보통 두께
Definition DefinitionsGUI.h:4591
@ ULTRABOLD
아주 두꺼운 두께
Definition DefinitionsGUI.h:4607
@ DEMIBOLD
약간 두꺼운 두께
Definition DefinitionsGUI.h:4599
@ MEDIUM
중간 두께
Definition DefinitionsGUI.h:4542
@ DONTCARE
무관한 두께
Definition DefinitionsGUI.h:4497
@ THIN
얇은 두께
Definition DefinitionsGUI.h:4506
@ LIGHT
가벼운 두께
Definition DefinitionsGUI.h:4524
@ EGUIView3DLayerHeightMapColor
3D 뷰 레이어의 높이 맵 색상
Definition DefinitionsGUI.h:4805
@ EGUIViewImageLayerTransparencyColor
이미지 뷰 레이어의 투명 색상
Definition DefinitionsGUI.h:4797
EGUIStringTrimming
문자열이 레이아웃 사각형을 벗어날 경우 자르기 옵션
Definition DefinitionsGUI.h:7320
@ Word
문자열이 레이아웃 사각형 내에 있는 마지막 단어의 경계에서 끊어지게 되도록 지정합니다.
Definition DefinitionsGUI.h:7343
@ EllipsisPath
가운데가 문자열에서 제거되고 줄임표로 대체되도록 지정합니다. 알고리즘은 문자열의 마지막 부분을 최대한 많이 유지합니다.
Definition DefinitionsGUI.h:7367
@ Character
문자열이 레이아웃 사각형 내에 있는 마지막 문자의 경계에서 끊어지게 되도록 지정합니다. 이것이 기본값입니다.
Definition DefinitionsGUI.h:7335
@ EllipsisCharacter
문자열이 레이아웃 사각형 내에 있는 마지막 문자의 경계에서 끊어지고 문자 뒤에 줄임표(...)가 삽입되도록 지정합니다.
Definition DefinitionsGUI.h:7351
@ EllipsisWord
문자열이 레이아웃 사각형 안에 있는 마지막 단어의 경계에서 끊어지고 단어 뒤에 줄임표(...)가 삽입되도록 지정합니다.
Definition DefinitionsGUI.h:7359
EMenuItemObjectMeasure
이미지 뷰의 측정 도구 객체에 관한 메뉴 아이템
Definition DefinitionsGUI.h:3001
@ Distance
거리 측정 메뉴
Definition DefinitionsGUI.h:3018
@ Deactivate
측정 객체를 수정할 수 없도록 비활성화하는 메뉴
Definition DefinitionsGUI.h:3120
@ RegionArea
영역 측정 메뉴
Definition DefinitionsGUI.h:3080
@ LeaveMeasureMode
측정 모드 종료 메뉴
Definition DefinitionsGUI.h:3104
@ Gradient
기울기 측정 메뉴
Definition DefinitionsGUI.h:3054
@ EndOfMeasureMenu
측정 메뉴 종료 지점
Definition DefinitionsGUI.h:3088
@ Circumcenter
외접원 측정 메뉴
Definition DefinitionsGUI.h:3063
@ ParallelDistance
평행 거리 측정 메뉴
Definition DefinitionsGUI.h:3036
@ DistanceCircle
원의 반지름 측정 메뉴
Definition DefinitionsGUI.h:3072
@ Activate
측정 객체 수정을 활성화하는 메뉴
Definition DefinitionsGUI.h:3112
@ InteriorAngle
내부 각도 측정 메뉴
Definition DefinitionsGUI.h:3045
@ Increments
증분 측정 메뉴
Definition DefinitionsGUI.h:3027
EFigureObjectInformationText
도형 객체의 정보를 나타내는 문자열 옵션
Definition DefinitionsGUI.h:6355
@ PixelAccuracyApplied
도형의 크기를 픽셀 분해능을 적용한 값으로 표시
Definition DefinitionsGUI.h:6418
@ Coordinate_PixelAccuracyApplied
도형의 좌표를 픽셀 분해능을 적용한 값으로 표시
Definition DefinitionsGUI.h:6394
@ Angle
도형의 각도를 표시
Definition DefinitionsGUI.h:6386
@ Size
도형의 너비, 높이, 길이, 반지름 등 크기를 표시
Definition DefinitionsGUI.h:6378
@ Coordinate
도형의 좌표를 표시
Definition DefinitionsGUI.h:6370
@ Size_PixelAccuracyApplied
도형의 너비, 높이, 길이, 반지름 등 크기를 픽셀 분해능을 적용한 값으로 표시
Definition DefinitionsGUI.h:6402
ECodeType
코드 타입
Definition DefinitionsGUI.h:6590
@ CSharp
C#
Definition DefinitionsGUI.h:6605
@ Cpp
C++
Definition DefinitionsGUI.h:6597
ETeachingMode
뷰의 티칭 모드
Definition DefinitionsGUI.h:4324
@ Figure_FreeDrawEraser
자유 그리기 지우개 모드 (CGUIViewImage만 지원)
Definition DefinitionsGUI.h:4359
@ ViewGraph_AddData
ViewGraph 의 데이터 추가 모드
Definition DefinitionsGUI.h:4377
EViewImageSyncOption
이미지 뷰 동기화 옵션
Definition DefinitionsGUI.h:4848
@ PointOfView
시점 동기화
Definition DefinitionsGUI.h:4863
@ Count
동기화 옵션 개수
Definition DefinitionsGUI.h:4879
EMenuItemPaneMenuTree
메뉴 트리의 메뉴 아이템
Definition DefinitionsGUI.h:6664
@ MenuItemFixedViewPlacementSet_Select
고정 뷰 배치 프리셋 선택
Definition DefinitionsGUI.h:6895
@ MenuItemViewBase_Maximize
뷰 최대화 메뉴
Definition DefinitionsGUI.h:6967
@ SortDescending
하위 아이템을 문자열 기준 내림차순 정렬
Definition DefinitionsGUI.h:6695
@ CloseAllButThis
이 창을 제외하고 모두 닫기
Definition DefinitionsGUI.h:6783
@ MenuItemLogIn_ManageUsers
사용자의 권한 관리(사용자 추가, 조회, 수정, 삭제, 권한 설정 등) 메뉴
Definition DefinitionsGUI.h:6951
@ CloseAll
자식 아이템 모두 닫기
Definition DefinitionsGUI.h:6767
@ MenuItemFixedViewPlacementSet_Edit
고정 뷰 배치 프리셋 수정
Definition DefinitionsGUI.h:6903
@ MenuItemModel_Rename
모델 이름 설정
Definition DefinitionsGUI.h:6863
@ CancelSort
정렬 취소
Definition DefinitionsGUI.h:6703
@ MenuItemModel_Duplicate
모델 복제
Definition DefinitionsGUI.h:6847
@ DeleteAllButThis
이 창을 제외하고 모두 제거
Definition DefinitionsGUI.h:6791
@ MenuItemFixedViewPreset_Export
고정 뷰 세트 내보내기
Definition DefinitionsGUI.h:6887
@ OpenNewWindow
새 창에서 열기
Definition DefinitionsGUI.h:6711
@ MenuItemLogIn_LogIn_LogOut
로그인 또는 로그아웃 메뉴
Definition DefinitionsGUI.h:6935
@ MenuItemModel_Select
모델 선택
Definition DefinitionsGUI.h:6839
@ CollapseAll
하위 아이템을 모두 접기
Definition DefinitionsGUI.h:6679
@ DeleteAll
자식 아이템 모두 제거
Definition DefinitionsGUI.h:6775
@ SortAscending
하위 아이템을 문자열 기준 오름차순 정렬
Definition DefinitionsGUI.h:6687
@ AddToFavorite
즐겨찾기에 추가
Definition DefinitionsGUI.h:6807
@ RemoveFromFavorite
즐겨찾기에서 제거
Definition DefinitionsGUI.h:6815
@ MenuItemFixedViewPlacementSet_Export
고정 뷰 배치 프리셋 내보내기
Definition DefinitionsGUI.h:6927
@ MenuItemFixedViewPlacementSet_Import
고정 뷰 배치 프리셋 불러오기
Definition DefinitionsGUI.h:6919
@ OpenNewWindowAll
다중선택한 아이템을 새 창에서 열기
Definition DefinitionsGUI.h:6759
@ MenuItemFixedViewPreset_Import
고정 뷰 세트 불러오기
Definition DefinitionsGUI.h:6879
@ MenuItemLogIn_ChangePassword
현재 로그인된 사용자의 비밀번호 변경 메뉴
Definition DefinitionsGUI.h:6943
@ MenuItemViewBase_Minimize
뷰 최소화 메뉴
Definition DefinitionsGUI.h:6959
@ OpenAll
자식 아이템 모두 열기
Definition DefinitionsGUI.h:6751
@ MenuItemFavorite_ClearAll
즐겨찾기 아이템을 모두 제거
Definition DefinitionsGUI.h:6823
@ MenuItemFixedViewPreset_AddFixedViewPlacementSet
고정 뷰 세트 추가
Definition DefinitionsGUI.h:6871
@ MenuItemFixedViewPlacementSet_Remove
고정 뷰 배치 프리셋 제거
Definition DefinitionsGUI.h:6911
@ Open
창 열기
Definition DefinitionsGUI.h:6719
@ Close
창 닫기
Definition DefinitionsGUI.h:6735
@ MenuItemModel_Delete
모델 삭제
Definition DefinitionsGUI.h:6855
@ MenuItemManagerModel_AddNewModel
새 모델 추가
Definition DefinitionsGUI.h:6831
@ Delete
창 제거 및 메뉴 아이템을 트리에서 제거
Definition DefinitionsGUI.h:6743
@ ExpandAll
하위 아이템을 모두 펼치기
Definition DefinitionsGUI.h:6671
@ AddNewSubMenuItem
새 SubMenu 아이템 추가
Definition DefinitionsGUI.h:6799
EFileFormat
이미지 파일 포맷
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
이미지 뷰의 펜 스타일
Definition DefinitionsGUI.h:4387
@ InsideFrame
내부 프레임 스타일
Definition DefinitionsGUI.h:4446
@ Dash
파선 스타일
Definition DefinitionsGUI.h:4404
@ ItemCount
enum 개수
Definition DefinitionsGUI.h:4478
@ Alternate
교차 스타일
Definition DefinitionsGUI.h:4462
@ Solid_RoundCap
선 끝이 둥근 단선 스타일
Definition DefinitionsGUI.h:4470
@ Dot
점선 스타일
Definition DefinitionsGUI.h:4413
@ Null
스타일 없음
Definition DefinitionsGUI.h:4438
@ DashDotDot
파선-단선-단선 스타일
Definition DefinitionsGUI.h:4429
@ Solid
단선 스타일
Definition DefinitionsGUI.h:4395
@ UserStyle
유저 정의 스타일
Definition DefinitionsGUI.h:4454
@ DashDot
파선-단선 스타일
Definition DefinitionsGUI.h:4421
EViewImageLoadOption
이미지 뷰의 불러오기 옵션 Example. 다음 코드는 재귀적인 폴더를 로드합니다. eOption = Load | RecursiveIfFolder
Definition DefinitionsGUI.h:35
@ Append
추가
Definition DefinitionsGUI.h:58
@ Default
기본
Definition DefinitionsGUI.h:42
@ OpenDialog
다이얼로그 열기
Definition DefinitionsGUI.h:82
@ Insert
삽입
Definition DefinitionsGUI.h:66
@ RecursiveIfFolder
폴더를 재귀적으로 불러오기
Definition DefinitionsGUI.h:74
@ DialogTypeFolder
폴더 다이얼로그
Definition DefinitionsGUI.h:98
@ DialogTypeFile
파일 다이얼로그
Definition DefinitionsGUI.h:90
@ Load
불러오기
Definition DefinitionsGUI.h:50
EOrientation
방향
Definition DefinitionsGUI.h:5032
EModifierKeyType
보조키 입력값
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
이미지 뷰의 스케일 설정 모드입니다.
Definition DefinitionsGUI.h:4815
@ ZoomInMode
Zoom In 모드로, 마우스 왼쪽 버튼 클릭 시 ZoomIn, 오른쪽 버튼 클릭 시 ZoomOut 이 수행됩니다.
Definition DefinitionsGUI.h:4830
@ ZoomOutMode
Zoom Out 모드로, 마우스 왼쪽 버튼 클릭 시 ZoomOut, 오른쪽 버튼 클릭 시 ZoomIn 이 수행됩니다.
Definition DefinitionsGUI.h:4838
@ All
모든 메뉴
Definition DefinitionsGUIView3D.h:2957
@ None
메뉴 없음
Definition DefinitionsGUIView3D.h:2949