zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
/////////////////////////////////////////////////////////////////////////////// 
// Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). 
// All rights reserved. 
// 
// This software and its documentation and related materials are owned by 
// the Alliance. The software may only be incorporated into application 
// programs owned by members of the Alliance, subject to a signed 
// Membership Agreement and Supplemental Software License Agreement with the
// Alliance. The structure and organization of this software are the valuable  
// trade secrets of the Alliance and its suppliers. The software is also 
// protected by copyright law and international treaty provisions. Application  
// programs incorporating this software must include the following statement 
// with their copyright notices:
//   
//   This application incorporates Teigha(R) software pursuant to a license 
//   agreement with Open Design Alliance.
//   Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. 
//   All rights reserved.
//
// By use of this software, its documentation or related materials, you 
// acknowledge and accept the above terms.
///////////////////////////////////////////////////////////////////////////////
#ifndef ODA_CMBASE_COLOR
#define ODA_CMBASE_COLOR
 
#include "OdString.h"
#include "Gi/Gi.h"
 
#include "TD_PackPush.h"
 
class OdDbDwgFiler;
 
/** \details
    <group OdCm_Classes>
    
    This class implements the /entity color object/ that represents the unnamed colors specified by 
    the byLayer, byBlock, byColor, byACI, byPen, Foreground, byDgnIndex, or None /color methods/.
 
    \remarks
    The /entity color object/ can specify any of the following color methods:
 
    <table>
    Name         Value    Description
    _kByLayer_     0xC0     Color is specified by the /layer object/ to which the object is resided.
    _kByBlock_     0xC1     Color is specified by the /block object/ in which the object is contained.
    _kByColor_     0xC2     Color is specified by an RGB-value.
    _kByACI_       0xC3     Color is specified by an index (ACI) of a some /color palette/.
    _kByPen_       0xC4     Color is specified by an index into a pen color table.
    _kForeground_  0xC5     Color is foreground.
    _kByDgnIndex_  0xC7     Color is specified by an index into a dgn color table.
    _kNone_        0xC8     color is absent (object is clarity).
    </table>
 
    An entity has no color from the time it is first instantiated until it is assigned one or added 
    to a database. The ColorMethod enumeration defines the constants for /color methods/.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_overview.html, Overview of Classes that Implement Color and Transparency>
 
    <link cm_color_method.html, Methods of the Color Definition>
 
    The OdCmColorBase class,  the OdCmColor class
*/
class FIRSTDLL_EXPORT OdCmEntityColor
{
public:
  ODRX_HEAP_OPERATORS();
  enum Color
  {
    kRed,
    kGreen,
    kBlue
  };
  
  /** \details
    Represents color method.
  */  
  enum ColorMethod
  {
    /**Color of the /layer/ on which it resides.*/
    kByLayer    = 0xC0,
    /**Color of the /block/ reference in which it is contained.*/
    kByBlock    = 0xC1,
    /**Color specified by RGB value.*/
    kByColor    = 0xC2,
    /**Color specified by an index (ACI) into a /color/ palette.*/
    kByACI      = 0xC3,
    /**Color specified by an index into a pen /color/ table.*/
    kByPen      = 0xC4,
    /**Editor foreground Color.*/
    kForeground = 0xC5,
    /**Color specified by an index into a dgn /color/ table.*/
    kByDgnIndex = 0xC7,
    /**No Color.*/
    kNone       = 0xC8
  };
  
  enum ACIcolorMethod
  {
    kACIbyBlock     = 0,    // byBlock
    kACIforeground  = 7,    // Foreground
    kACIbyLayer     = 256,  // byLayer
 
    kACIclear       = 0,    // Clear
 
    kACIRed         = 1,    // Red
    kACIYellow      = 2,    // Yellow
    kACIGreen       = 3,    // Green
    kACICyan        = 4,    // Cyan
    kACIBlue        = 5,    // Blue
    kACIMagenta     = 6,    // Magenta
    kACIWhite       = 7,    // White
 
    kACIstandard    = 7,    
    kACImaximum     = 255,
    kACInone        = 257,  // None
    kACIminimum     = -255
  };
  
  typedef OdUInt32 RGBM;
  
  /** \param colorMethod [in]  /Color method/.
    \param red [in]  Red component.
    \param green [in]  Green component.
    \param blue [in]  Blue component.
    
    \remarks
    Default ColorMethod is kByColor. 
  */
  OdCmEntityColor() : m_RGBM(0) { setColorMethod(kByColor); }
  OdCmEntityColor(
    const OdCmEntityColor & color) : m_RGBM(color.m_RGBM) { }
  OdCmEntityColor(
    ColorMethod colorMethod) : m_RGBM(0) { setColorMethod(colorMethod); }
  OdCmEntityColor(
    OdUInt8 red, 
    OdUInt8 green, 
    OdUInt8 blue)
  {
    setColorMethod(kByColor);
    setRGB(red, green, blue);
  }
 
  /** \details
    Copies an /entity color object/ specified by right into the /entity color object/ specified by left.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
  */
    OdCmEntityColor& operator =(
    const OdCmEntityColor& color)
  {
    m_RGBM = color.m_RGBM;
    return *this;
  }
 
  /** \details
    Compares two /entity color objects/ as integer values and returns true when their values are equal, 
    or false when their values are not equal.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
    bool operator ==(
    const OdCmEntityColor& color) const
  {
    return m_RGBM == color.m_RGBM;
  }
 
  /** \details
    Compares two /entity color objects/ as integer values and returns true when their values are not equal, 
    or false when their values are equal.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
    bool operator !=(
    const OdCmEntityColor& color) const
  {
    return m_RGBM != color.m_RGBM;
  }
 
  /** \details
    Sets the /color method/ for the /entity color object/.
 
    \param colorMethod [in]  /Color method/ as the ColorMethod enumeration.
 
    \remarks
    The /color method/ can be a one of the following: 
    
    <table>
    Name         Value    Description
    _kByLayer_     0xC0     Color is specified by the /layer object/ to which the object is resided.
    _kByBlock_     0xC1     Color is specified by the /block object/ in which the object is contained.
    _kByColor_     0xC2     Color is specified by an RGB-value.
    _kByACI_       0xC3     Color is specified by an index (ACI) of a some /color palette/.
    _kByPen_       0xC4     Color is specified by an index into a pen color table.
    _kForeground_  0xC5     Color is foreground.
    _kByDgnIndex_  0xC7     Color is specified by an index into a dgn color table.
    _kNone_        0xC8     color is absent (object is clarity).
    </table>
 
    An entity does not have a color from the time it is first instantiated until it is assigned one
    or added to a database.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  void setColorMethod(
    ColorMethod colorMethod) { OdCmEntityColor::setColorMethod(&m_RGBM, colorMethod); }
 
  /** \details
    Returns the /color method/ of the /entity color object/ as a value of the ColorMethod enumeration.
 
    \remarks
    The /color method/ can be a one of the following:
     
    <table>
    Name         Value    Description
    _kByLayer_     0xC0     Color is specified by the /layer object/ to which the object is resided.
    _kByBlock_     0xC1     Color is specified by the /block object/ in which the object is contained.
    _kByColor_     0xC2     Color is specified by an RGB-value.
    _kByACI_       0xC3     Color is specified by an index (ACI) of a some /color palette/.
    _kByPen_       0xC4     Color is specified by an index into a pen color table.
    _kForeground_  0xC5     Color is foreground.
    _kByDgnIndex_  0xC7     Color is specified by an index into a dgn color table.
    _kNone_        0xC8     color is absent (object is clarity).
    </table>
 
    An entity does not have a color from the time it is first instantiated until it is assigned one
    or added to a database.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  ColorMethod colorMethod() const
  {
    return colorMethod(&m_RGBM);
  } 
  
  /** \details
    Sets the /color method and color components/ for the /entity color object/ as an integer value.
 
    \param color [in]  A packed 32-bits integer value that specifies the /color method and color components/.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
  void setColor(
    OdUInt32 color);
 
  /** \details
    Returns the packed 32-bits integer value that stores the /color method and color components/
    of the /entity color object/.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
  OdUInt32 color() const { return m_RGBM; } 
  
  /** \details
    Sets the /color index/ (ACI) of a some /color palette/ and sets the /color method/ to byACI 
    for the /entity color object/.
 
    \param colorIndex [in]  An integer value that is the index of the color in a some palette.
    
    \remarks
    The /color index/ can be a one of the following:
 
    <table>
    Name              Value   Description
    _kACIbyBlock_       0       Sets the /color method/ to byBlock.
    _kACIRed_           1       Red. 
    _kACIYellow_        2       Yellow. 
    _kACIGreen_         3       Green. 
    _kACICyan_          4       Cyan. 
    _kACIBlue_          5       Blue. 
    _kACIMagenta_       6       Magenta. 
    _kACIforeground_    7       Sets the /color method/ to Foreground.
    ..                8-255   Defined by display device.
    _kACIbyLayer_       256     Sets the /color method/ to byLayer. 
    _kACInone_          257     Sets the /color method/ to None.
    </table>
 
    An entity does not have a color from the time it is first instantiated until it is assigned one
    or added to a database.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  void setColorIndex(
    OdInt16 colorIndex) { setColorIndex(&m_RGBM, colorIndex); }
 
  /** \details
    Returns the /color index/ (ACI) of the /entity color object/.
 
    \remarks
    The /color index/ can be a one of the following:
 
    <table>
    Name              Value   Description
    _kACIbyBlock_       0       Sets the /color method/ to byBlock.
    _kACIRed_           1       Red. 
    _kACIYellow_        2       Yellow. 
    _kACIGreen_         3       Green. 
    _kACICyan_          4       Cyan. 
    _kACIBlue_          5       Blue. 
    _kACIMagenta_       6       Magenta. 
    _kACIforeground_    7       Sets the /color method/ to Foreground.
    ..                8-255   Defined by display device.
    _kACIbyLayer_       256     Sets the /color method/ to byLayer. 
    _kACInone_          257     Sets the /color method/ to None.
    </table>
 
    An entity does not have a color from the time it is first instantiated until it is assigned one
    or added to a database.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  OdInt16 colorIndex() const { return OdCmEntityColor::colorIndex(&m_RGBM); }
  
  
  /** \details
    Sets the red, green, /blue color components/ and the /color method/ to byColor for the /entity color object/.
    
    \param red [in]  Red component as an integer value in range 0 to 255.
    \param green [in]  Green component as an integer value in range 0 to 255.
    \param blue [in]  Blue component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  void setRGB(
    OdUInt8 red, 
    OdUInt8 green, 
    OdUInt8 blue)
  {
    setRGB(&m_RGBM, red, green, blue);
  }    
 
  /** \details
    Sets the /red color component/ for the /entity color object/.
    
    \param red [in]  Red component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  void setRed(
    OdUInt8 red) { setRed(&m_RGBM, red); }
 
  /** \details
    Sets the /green color component/ for the /entity color object/.
    
    \param green [in]  Green component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  void setGreen(
    OdUInt8 green) { setGreen(&m_RGBM, green); }
 
  /** \details
    Sets the /blue color component/ for the /entity color object/.
    
    \param blue [in]  Blue component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  void setBlue(
    OdUInt8 blue) { setBlue(&m_RGBM, blue); }
 
  /** \details
    Returns the /red color component/ of the /entity color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  OdUInt8 red() const { return red(&m_RGBM); }
  
  /** \details
    Returns the /green color component/ of the /entity color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  OdUInt8 green() const { return green(&m_RGBM); }
 
  /** \details
    Returns the /blue color component/ of the /entity color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  OdUInt8 blue() const { return blue(&m_RGBM); }
  
  // Method check
  
  /** \details
    Checks whether the /color method/ is byColor for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kByColor_, otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isByColor() const { return isByColor(&m_RGBM); }
 
  /** \details
    Checks whether the /color method/ is byLayer for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kByLayer_ or was set to _kACIbyLayer_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isByLayer() const { return isByLayer(&m_RGBM); }
 
  
  /** \details
    Checks whether the /color method/ is byBlock for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kByBlock_ or was set to _kACIbyBlock_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isByBlock() const { return isByBlock(&m_RGBM); }
   
 
  /** \details
    Checks whether the /color method/ is byACI for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kByACI_, otherwise it returns false.
    
    \remarks
    This method returns true for ACI values of 0 (ByBlock), 7 (ByForeground), 256 (ByLayer), and 257 (None).
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isByACI() const { return isByACI(&m_RGBM); }
 
  /** \details
    Checks whether the /color method/ is Foreground for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kForeground_ or was set to _kACIforeground_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isForeground() const { return isForeground(&m_RGBM); }
 
  /** \details
    Checks whether the /color method/ is byDgnIndex for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kByDgnIndex_, otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isByDgnIndex() const { return isByDgnIndex(&m_RGBM); }
 
  /** \details
    Checks whether the /color method/ is None (invisible) for the /entity color object/ and 
    returns true if and only if the /color method/ is set to _kNone_ or was set to _kACInone_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  bool isNone() const  { return isNone(&m_RGBM); }
  
  /** \details
    Returns the TrueColor value of the /entity color object/.
 
    \sa
    <link cm.html, Working with Colors and Transparencies>
  */
  OdUInt32 trueColor() const;
  
  /** \details
    Sets the color of the calling entity with the /entity color object/.
 
    \sa
    <link cm.html, Working with Colors and Transparencies>
  */
  void setTrueColor();
  
  /** \details
    Converts the /color method/ from ACIcolorMethod to ColorMethod and returns the ColorMethod value.
    
    \remarks
    Assumes the current /color method/ is ACIcolorMethod.
 
    \sa
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  OdUInt8 trueColorMethod() const;
 
  /** \details
    Converts the /color method/ from ACIcolorMethod to ColorMethod and 
    assumes the current /color method/ to ACIcolorMethod.
 
    \sa
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  void setTrueColorMethod();
  
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setColorMethod(
    RGBM* pRGBM, 
    ColorMethod colorMethod);
 
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static ColorMethod colorMethod(
    const RGBM* pRGBM)
  {
    return OdCmEntityColor::ColorMethod((*pRGBM >> 24) & 0xFF);
  }
  
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setColor(
    RGBM* pRGBM, 
    OdUInt32 color);
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdUInt32 color(
    const RGBM* pRGBM); 
  
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setColorIndex(
    RGBM* pRGBM, 
    OdInt16 colorIndex);
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdInt16 colorIndex(
    const RGBM* pRGBM);
  
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setRGB(
    RGBM* pRGBM, 
    OdUInt8 red, 
    OdUInt8 green, 
    OdUInt8 blue)
  {
    setColorMethod(pRGBM, kByColor);
    setRed(pRGBM, red);
    setGreen(pRGBM, green);
    setBlue(pRGBM, blue);
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setRed(
    RGBM* pRGBM, 
    OdUInt8 red)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    *pRGBM &= 0xFF00FFFF;
    *pRGBM |= RGBM(((OdUInt32)red << 16) & 0x00FF0000);
  }
      
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setGreen(
    RGBM* pRGBM, 
    OdUInt8 green)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    *pRGBM &= 0xFFFF00FF;
    *pRGBM |= RGBM(((OdUInt32)green << 8) & 0x0000FF00);
  }
    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setBlue(
    RGBM* pRGBM, 
    OdUInt8 blue)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    *pRGBM &= 0xFFFFFF00;
    *pRGBM |= RGBM((blue) & 0x000000FF);
  }    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdUInt8 red(
    const RGBM* pRGBM)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    return OdUInt8((*pRGBM >> 16) & 0xFF);
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdUInt8 green(
    const RGBM* pRGBM)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    return OdUInt8((*pRGBM >> 8) & 0xFF);
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdUInt8 blue(
    const RGBM* pRGBM)
  {
    ODA_ASSERT(colorMethod(pRGBM) == kByColor); 
    return OdUInt8(*pRGBM & 0xFF);
  }
    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isByColor(
    const RGBM* pRGBM) { return colorMethod(pRGBM) == kByColor; }  
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isByLayer(
    const RGBM* pRGBM)
  {
    return (colorMethod(pRGBM) == kByLayer || (colorMethod(pRGBM) == kByACI && indirect(pRGBM) == kACIbyLayer)); 
  }    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isByBlock(
    const RGBM* pRGBM)
  {
    return (colorMethod(pRGBM) == kByBlock || (colorMethod(pRGBM) == kByACI && indirect(pRGBM) == kACIbyBlock)); 
  }    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isByACI(
    const RGBM* pRGBM)
  {
    return colorMethod(pRGBM) == kByACI;
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isForeground(
    const RGBM* pRGBM)
  {
    return (colorMethod(pRGBM) == kForeground || (colorMethod(pRGBM) == kByACI && indirect(pRGBM) == kACIforeground)); 
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isByDgnIndex(
    const RGBM* pRGBM)
  {
    return colorMethod(pRGBM) == kByDgnIndex;
  }
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static bool isNone(
    const RGBM* pRGBM)
  {
    return (colorMethod(pRGBM) == kNone || (colorMethod(pRGBM) == kByACI && indirect(pRGBM) == kACInone)); 
  }
    
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static OdUInt32 trueColor(
    const RGBM* pRGBM);
    
  /** \param aciColorMethod [in]  ACIcolorMethod value.
  */
  static OdUInt8 trueColorMethod(
    OdInt16 aciColorMethod);
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setTrueColor(
    RGBM* pRGBM);
    
  /** \param pRGBM [in]  Pointer to the m_RGBM member of the /entity color object/.
  */
  static void setTrueColorMethod(
    RGBM* pRGBM);
  
  /** \details
    Converts the specified /color index/ (ACI-value) to the RGB-value. 
    
    \remarks
    For converting, this method uses the default palette specified by the mLUT static array
    and returns the RGB-value without /color method/ as a packed integer value in which:
 
    <table>
    Byte      Description
    0         Blue component.
    1         Green component.
    2         Red component.
    </table>
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  static OdUInt32 lookUpRGB(
    OdUInt8 colorIndex);
  
  /** \details
    Converts the  RGB-value specified by the red, green, /blue components/ to the ACI-value. 
 
    \param red [in]  Red component an an integer value in range 0 to 255.
    \param green [in]  Green component an an integer value in range 0 to 255.
    \param blue [in]  Blue component an an integer value in range 0 to 255.
 
    \remarks
    For converting, this method uses the default palette specified by the mLUT static array
    and returns the /color index without color method/ as an integer value in range 0 to 257.
 
    \sa
    <link cm_color_sample_entity.html, Example of Working with the Entity Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  static OdUInt8 lookUpACI(
    OdUInt8 red, 
    OdUInt8 green, 
    OdUInt8 blue); 
  
protected:
  /*!DOM*/
  static OdInt16 indirect(
    const RGBM* pRGBM) 
  {
    ODA_ASSERT(colorMethod(pRGBM) != kByColor); 
    return OdInt16((*pRGBM) & 0x0000FFFF);
  }
 
  /*!DOM*/
  static void setIndirect(
    RGBM* pRGBM, 
    OdInt16 indirect)
  {
    ODA_ASSERT(colorMethod(pRGBM) != kByColor); 
    *pRGBM = ((*pRGBM & 0xFF000000) | (OdUInt32(indirect) & 0x0000FFFF));
  }
      
  /*!DOM*/
  OdInt16 indirect() const { return indirect(&m_RGBM); }
 
  /*!DOM*/
  void setIndirect(OdInt16 indirect) { setIndirect(&m_RGBM, indirect); }
 
  RGBM m_RGBM;
  
public:
  /** \details
      Maps the colors between ACI-values and RGB-values.
  */
  FIRSTDLL_EXPORT_STATIC static const OdUInt8 mLUT[256][3]; 
};
 
 
/** \details
   <group OdCm_Classes>
 
    This class is a virtual interface for classes that represent the unnamed and /named colors/
    specified by the byLayer, byBlock, byColor, byACI, byPen, Foreground, byDgnIndex, or None 
    /color methods/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_overview.html, Overview of Classes that Implement Color and Transparency>
 
    The OdCmEntityColor class,  the OdCmColor class
*/
class FIRSTDLL_EXPORT OdCmColorBase
{
public:
  ODRX_HEAP_OPERATORS();
  virtual ~OdCmColorBase() {}
 
  /** \details
    Returns the /color method/ of the /database color object/ as a value of the ColorMethod enumeration.
 
    \remarks
    The /color method/ can be a one of the following:
     
    <table>
    Name         Value    Description
    _kByLayer_     0xC0     Color is specified by the /layer object/ to which the object is resided.
    _kByBlock_     0xC1     Color is specified by the /block object/ in which the object is contained.
    _kByColor_     0xC2     Color is specified by an RGB-value.
    _kByACI_       0xC3     Color is specified by an index (ACI) of a some /color palette/.
    _kByPen_       0xC4     Color is specified by an index into a pen color table.
    _kForeground_  0xC5     Color is foreground.
    _kByDgnIndex_  0xC7     Color is specified by an index into a dgn color table.
    _kNone_        0xC8     color is absent (object is clarity).
    </table>
 
    \remarks
    Using of this method by third-party applications is neither supported nor recommended.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual OdCmEntityColor::ColorMethod colorMethod() const = 0;
  
 
  /** \details
    Sets the /color method the database color object/ using a value of the ColorMethod enumeration.
 
    \param colorMethod [in]  /color method/ as the ColorMethod enumeration.
 
    \remarks
    The /color method/ can be a one of the following:
    
    <table>
    Name         Value    Description
    _kByLayer_     0xC0     Color is specified by the /layer object/ to which the object is resided.
    _kByBlock_     0xC1     Color is specified by the /block object/ in which the object is contained.
    _kByColor_     0xC2     Color is specified by an RGB-value.
    _kByACI_       0xC3     Color is specified by an index (ACI) of a some /color palette/.
    _kByPen_       0xC4     Color is specified by an index into a pen color table.
    _kForeground_  0xC5     Color is foreground.
    _kByDgnIndex_  0xC7     Color is specified by an index into a dgn color table.
    _kNone_        0xC8     color is absent (object is clarity).
    </table>
 
    \remarks
    Using of this method by third-party applications is neither supported nor recommended.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual void  setColorMethod(
    OdCmEntityColor::ColorMethod colorMethod) = 0;
 
 
  /** \details
    Checks whether the /color method/ is byColor for the /database color object/ and 
    returns true if and only if the /color method/ is set to _kByColor_, otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isByColor() const = 0;
    
  /** \details
    Checks whether the /color method/ is byLayer for the /databse color object/ and 
    returns true if and only if the /color method/ is set to _kByLayer_ or was set to _kACIbyLayer_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isByLayer() const = 0;
  
  /** \details
    Checks whether the /color method/ is byBlock for the /database color object/ and 
    returns true if and only if the /color method/ is set to _kByBlock_ or was set to _kACIbyBlock_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isByBlock() const = 0;
 
  /** \details
    Checks whether the /color method/ is byACI for the /database color object/ and 
    returns true if and only if the /color method/ is set to _kByACI_, otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \remarks
    This method returns true for ACI values of 0 (ByBlock), 7 (ByForeground), 256 (ByLayer), and 257 (None).
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isByACI() const = 0;
 
  /** \details
    Checks whether the /color method/ is Foreground for the /database color object/ and 
    returns true if and only if the /color method/ is set to _kForeground_ or was set to _kACIforeground_, 
    otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isForeground()   const = 0;
 
  /** \details
    Checks whether the /color method/ is byDgnIndex for the /database color object/ and 
    returns true if and only if the /color method/ is set to _kByDgnIndex_, otherwise it returns false.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
  */
  virtual bool isByDgnIndex()   const = 0;
 
  /** \details
    Returns the packed 32-bits integer value that stores the /color method and color components/
    of the /database color object/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
  virtual OdUInt32  color() const = 0;
  
  /** \details
    Sets the /color method and color components/ for the /database color object/ as an integer value.
 
    \param color [in]  A packed 32-bits integer value that specifies the /color method and color components/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
  virtual void setColor(
    OdUInt32 color) = 0;
 
  /** \details
    Sets the red, green, /blue color components/ and the /color method/ to byColor for the /database color object/.
 
    \param red [in]  Red component as an integer value in range 0 to 255.
    \param green [in]  Green component as an integer value in range 0 to 255.
    \param blue [in]  Blue component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual void setRGB(
    OdUInt8 red, 
    OdUInt8 green, 
    OdUInt8 blue) = 0;
                           
  /** \details
    Sets the /red color component/ for the /database color object/.
    
    \param red [in]  Red component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual void setRed(
    OdUInt8 red) = 0;
    
  /** \details
    Sets the /green color component/ for the /database color object/.
    
    \param green [in]  Green component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual void setGreen(
    OdUInt8 green) = 0;
    
  /** \details
    Sets the /blue color component/ for the /database color object/.
    
    \param blue [in]  Blue component as an integer value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual void setBlue(
    OdUInt8 blue) = 0;
    
  /** \details
    Returns the /red color component/ of the /database color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual OdUInt8 red() const = 0;
 
   /** \details
    Returns the /green color component/ of the /database color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
   */
  virtual OdUInt8 green() const = 0;
 
  /** \details
    Returns the /blue color component/ of the /database color object/ as a value in range 0 to 255.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_RGB.html, Color Functionality as an RGB-value>
  */
  virtual OdUInt8 blue() const = 0;
 
  /** \details
    Returns the /color index/ (ACI) of the /database color object/.
 
    \remarks
    The /color index/ can be a one of the following:
 
    <table>
    Name              Value   Description
    _kACIbyBlock_       0       Sets the /color method/ to byBlock.
    _kACIRed_           1       Red. 
    _kACIYellow_        2       Yellow. 
    _kACIGreen_         3       Green. 
    _kACICyan_          4       Cyan. 
    _kACIBlue_          5       Blue. 
    _kACIMagenta_       6       Magenta. 
    _kACIforeground_    7       Sets the /color method/ to Foreground.
    ..                8-255   Defined by display device.
    _kACIbyLayer_       256     Sets the /color method/ to byLayer. 
    _kACInone_          257     Sets the /color method/ to None.
    </table>
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  virtual OdUInt16  colorIndex() const = 0;
 
  /** \details
    Sets the /color index/ (ACI) of a some /color palette/ and sets the /color method/ to byACI 
    for the /database color object/.
 
    \param colorIndex [in]  An integer value that is the index of the color in a some palette.
    
    \remarks
    The /color index/ can be a one of the following:
 
    <table>
    Name              Value   Description
    _kACIbyBlock_       0       Sets the /color method/ to byBlock.
    _kACIRed_           1       Red. 
    _kACIYellow_        2       Yellow. 
    _kACIGreen_         3       Green. 
    _kACICyan_          4       Cyan. 
    _kACIBlue_          5       Blue. 
    _kACIMagenta_       6       Magenta. 
    _kACIforeground_    7       Sets the /color method/ to Foreground.
    ..                8-255   Defined by display device.
    _kACIbyLayer_       256     Sets the /color method/ to byLayer. 
    _kACInone_          257     Sets the /color method/ to None.
    </table>
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_method.html, Methods of the Color Definition>
 
    <link cm_color_index.html, Color Functionality as an ACI-value>
  */
  virtual void setColorIndex(
    OdUInt16 colorIndex) = 0;
 
  /** \details
    Converts to the /named color/ and sets the /color name and book name/ for the /database color object/.
    
    \param colorName [in]  /Color name/ as a string value.
    \param bookName [in]  /Book name/ as a string value.
 
    \remarks
    Returns true if and only if successful.
    If the /book name/ is an empty string that the method sets the UNNAMED name. 
    If the /color name/ is an empty string that the method ignores the specified values.
    If the /book name/ and the /color name/ are an empty string together that the method converts to the /unnamed color/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_book.html, Color Functionality as a Book Name>
 
    <link cm_color_integer.html, Color Functionality as an Integer-value>
  */
  virtual bool  setNames(
    const OdString& colorName,
    const OdString& bookName = OdString::kEmpty) = 0;
    
  /** \details
    Returns the /color name/ of the /database color object/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_book.html, Color Functionality as a Book Name>
  */
  virtual OdString colorName() const = 0;
 
  /** \details
    Returns the /book name/ of the /database color object/.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_book.html, Color Functionality as a Book Name>
  */
  virtual OdString bookName() const = 0;
  
  /** \details
    Returns the /display color name/ of the /database color object/.
    
    \remarks
    For /named colors/, this is the same as colorName(). For /unnamed colors/, it is an 'appropriate' name.
 
    \sa
    <link cm_color_sample_base.html, Example of Working with the Database Color>
 
    \sa
    <link cm_color_book.html, Color Functionality as a Book Name>
  */
  virtual OdString colorNameForDisplay() const = 0;
};
 
 
/** \details
    <group OdCm_Classes>
 
    This class implements the Transparency object, which provides the transparency information about OdGiDrawable objects.
   
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_overview.html, Overview of Classes that Implement Color and Transparency>
 
    <link cm_transparency_method.html, Methods of the Transparency Definition>
*/
class OdCmTransparency 
{
public:
  ODRX_HEAP_OPERATORS();
  
  enum transparencyMethod 
  {
    kByLayer    = 0, // Use the setting for the /layer/.
    kByBlock    = 1, // Use the setting for the /block/.
    kByAlpha    = 2, // Use the Alpha-value in this object.     
    kErrorValue = 3  // Error value.
  };
  
  /** \remarks
    The default /transparency method/ is _kByLayer_.
  */
  OdCmTransparency() { setMethod(kByLayer); }
  OdCmTransparency(transparencyMethod method) { setMethod(method); }
  OdCmTransparency(OdUInt8 alpha) { setAlpha(alpha); }
  OdCmTransparency(double alphaPercent) { setAlphaPercent(alphaPercent); }
  OdCmTransparency(
    const OdCmTransparency& transparency) { m_AM = transparency.m_AM; }
  ~OdCmTransparency() {}
  
  OdCmTransparency& operator=(
    const OdCmTransparency& transparency) { m_AM = transparency.m_AM; return *this; }
 
  /** \details
    Compares two /transparency objects/ as integer values and returns true when their values are equal, 
    or false when their values are not equal.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_integer.html, Transparency Functionality as an Integer-value>
  */
    bool operator==(
    const OdCmTransparency& transparency) const { return (m_AM == transparency.m_AM); }
 
  /** \details
    Compares two /transparency objects/ as integer values and returns true when their values are not equal, 
    or false when their values are equal.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_integer.html, Transparency Functionality as an Integer-value>
  */
    bool operator!=(
    const OdCmTransparency& transparency) const { return (m_AM != transparency.m_AM); }
  
  /** \details
    Sets the /alpha value/ and switches the /transparency method/ to _kByAlpha_ for the /transparency object/.
    
    \param alpha [in]  Alpha as an integer value in range 0 to 255.
 
    \remarks
    An /alpha value/ defines the degree of transparency.
    Alpha == 0 means totally clarity. Alpha == 255 means totally opaque.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  void setAlpha(
    OdUInt8 alpha)
  {
    m_AM = ((OdUInt32)kByAlpha << 24) | alpha;
  }
 
  /** \details
    Returns the /alpha value/ in range 0 to 255 of the /transparency object/.
 
    \remarks
    An /alpha value/ defines the degree of transparency.
    Alpha == 0 means totally clarity. Alpha == 255 means totally opaque.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  OdUInt8 alpha() const
  {
    if (!isByAlpha())
      return 255;
    return OdUInt8(m_AM);
  }
 
  /** \details
    Sets the /alpha value/ in percent and switches the /transparency method/ to _kByAlpha_ for the /transparency object/.
    
    \param alphaPercent [in]  Alpha as a double value in range 0.0 (=0) to 1.0 (=255).
 
    \remarks
    An /alpha value/ defines the degree of transparency.
    Alpha == 0.0 means totally clarity. Alpha == 1.0 means totally opaque.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  void setAlphaPercent(
    double alphaPercent)
  {
    if (alphaPercent < 0.0)
      setAlpha(0);
    else if (alphaPercent > 1.0)
      setAlpha(0xFF);
    else
      setAlpha((OdUInt8)(alphaPercent * 255));
  }
 
  /** \details
    Returns the /alpha value/ in range 0.0 to 1.0 of the /transparency object/.
 
    \remarks
    An /alpha value/ defines the degree of transparency.
    Alpha == 0.0 means totally clarity. Alpha == 1.0 means totally opaque.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  double alphaPercent() const
  {
    return (double)alpha() / 255;
  }
 
 
  /** \details
    Returns the /transparency method/ of the /transparency object/ as a value of the transparencyMethod enumeration.
    
    \remarks
    The /transparency method/ can be a one of the following:
    
    <table>
    Name        Value   Description
    _kByLayer_    0       Transparency is specified by the /layer object/ to which the object is resided.
    _kByBlock_    1       Transparency is specified by the /block object/ in which the object is contained.
    _kByAlpha_    2       Transparency is specified by an Alpha-value.
    </table>
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  transparencyMethod method() const
  {
    return transparencyMethod(OdUInt8(m_AM >> 24));
  }
 
  /** \details
    Sets the /transparency method/ for the /transparency object/.
    
    \param method [in]  Transparency method as the transparencyMethod enumeration.
    
    \remarks
    The /transparency method/ can be a one of the following:
    
    <table>
    Name        Value   Description
    _kByLayer_    0       Transparency is specified by the /layer object/ to which the object is resided.
    _kByBlock_    1       Transparency is specified by the /block object/ in which the object is contained.
    _kByAlpha_    2       Transparency is specified by an Alpha-value.
    </table>
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  void setMethod(
    transparencyMethod method)
  {
    m_AM = (OdUInt32)method << 24;
  }
 
  /** \details
    Checks whether the /transparency method/ is byAlpha for the /transparency object/ and 
    returns true if and only if the /transparency method/ is set to _kByAlpha_, otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  bool isByAlpha() const { return (method() == kByAlpha); }
 
  /** \details
    Checks whether the /transparency method/ is byBlock for the /transparency object/ and 
    returns true if and only if the /transparency method/ is set to _kByBlock_, otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  bool isByBlock() const { return (method() == kByBlock); }
  
  /** \details
    Checks whether the /transparency method/ is byLayer for the /transparency object/ and 
    returns true if and only if the /transparency method/ is set to _kByLayer_, otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  bool isByLayer() const { return (method() == kByLayer); }
 
  /** \details
    Checks whether the /transparency method/ is error value for the /transparency object/ and 
    returns true if and only if the /transparency method/ is set to _kErrorValuer_, otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
  */
  bool isInvalid() const { return (method() == kErrorValue); }
 
  /** \details
    Checks whether the /transparency method/ is byAlpha and object is totally clarity for the /transparency object/.
    It returns true if and only if the /transparency method/ is set to _kByAlpha_ and Alpha == 0, 
    otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
 
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  bool isClear() const   { return (method() == kByAlpha) && (alpha() == 0);}
  
  /** \details
    Checks whether the /transparency method/ is byAlpha and object is totally opaque for the /transparency object/.
    It returns true if and only if the /transparency method/ is set to _kByAlpha_ and Alpha == 255, 
    otherwise it returns false.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
 
    <link cm_transparency_alpha.html, Transparency Functionality as an Alpha-value>
  */
  bool isSolid() const   { return (method() == kByAlpha) && (alpha() == 255);}
  
 
  /** \details
    Returns the packed 32-bits integer value that stores the /transparency method and transparency components/.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
 
    <link cm_transparency_integer.html, Transparency Functionality as an Integer-value>
  */
  OdUInt32 serializeOut() const { return m_AM; }
 
  /** \details
    Sets the /transparency method and transparency components/ as an integer value for the /transparency object/.
 
    \param transparency [in]  A packed 32-bits integer value that specifies the /transparency method and transparency components/.
 
    \sa
    <link cm_transparency_sample.html, Example of Working with Transparency>
 
    \sa
    <link cm_transparency_method.html, Methods of the Transparency Definition>
 
    <link cm_transparency_integer.html, Transparency Functionality as an Integer-value>
  */
  void serializeIn(
    OdUInt32 transparency) { m_AM = transparency; }
 
  /** \details
    Reads the .dwg file format data of this object from the specified file.
       
    \param pFiler [in]  Pointer to the filer from which the data are to be read.
    
  */
  void dwgIn(
    OdDbDwgFiler* pFiler);
 
  /** \details
    Writes the .dwg file format data of this object to the specified filer. 
    
    \param pFiler [in]  Pointer to the filer to which the data are to be written.
  */
  void dwgOut(
    OdDbDwgFiler* pFiler) const;
 
private: 
  OdUInt32 m_AM;
};
 
#include "TD_PackPop.h"
 
#endif //ODA_CMBASE_COLOR