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
/////////////////////////////////////////////////////////////////////////////// 
// 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 OD_MLEADER_H
#define OD_MLEADER_H
 
#include "TD_PackPush.h"
#include "DbMLeaderStyle.h"
#include "DbEntity.h"
#include "DbSubentId.h"
#include "DbAttribute.h"
#include "IntArray.h"
 
#define MAX_LEADER_NUMBER     5000
#define MAX_LEADERLINE_NUMBER 5000
 
class OdDbAttribute;
class OdDbMLeaderObjectContextData;
 
/** \details
    This class is the main class used for the multiple leader (MLeader) objects. 
        
    \sa
    TD_Db
    
    <group OdDb_Classes>
*/
class TOOLKIT_EXPORT OdDbMLeader : public OdDbEntity
{
public:
  /** \details
    Enumeration for MLeader move type.
  */
  enum MoveType {
    /** \details
      All MLeader points should be moved.
    */
    kMoveAllPoints,
 
    /** \details
      All MLeader points should be moved, except the arrowhead points of the leader line.
    */
    kMoveAllExceptArrowHeaderPoints,
 
    /** \details
      MLeader content points and dog-leg points should be moved.
    */
    kMoveContentAndDoglegPoints
  };
 
  /** \details
    Enumeration for MLeader GS mark type.
  */
  enum gsMarkType {
    /** \details
      No GS mark.
    */
    kNone               = 0,
 
    /** \details
      GS mark of arrow.
    */
    kArrowMark          = 1,
 
    /** \details
      GS mark of leader line.
    */
    kLeaderLineMark     = kArrowMark  + MAX_LEADERLINE_NUMBER,
 
    /** \details
      GS mark of dog-leg.
    */
    kDoglegMark         = kLeaderLineMark + MAX_LEADERLINE_NUMBER,
 
    /** \details
      GS mark of MText content.
    */
    kMTextMark          = kDoglegMark + MAX_LEADER_NUMBER,
 
    /** \details
      GS mark of MText underline content (includes text frame if present).
    */
    kMTextUnderLineMark = kMTextMark + 1,
 
    /** \details
      GS mark of tolerance content.
    */
    kToleranceMark      = kMTextUnderLineMark + 1,
 
    /** \details
      GS mark of block content.
    */
    kBlockMark          = kToleranceMark + 1,
 
    /** \details
      GS mark of block attribute content.
    */
    kBlockAttribute     = kBlockMark + 1
  };
 
  /** \details
      Enumeration for MLeader properties which can be overridden.
  */
  enum PropertyOverrideType {
    /** \details
      Leader line type.
    */
    kLeaderLineType         = 0,
 
    /** \details
      Leader line color.
    */
    kLeaderLineColor        = 1,
 
    /** \details
      Leader line type ID.
    */
    kLeaderLineTypeId       = 2,
 
    /** \details
      Leader line weight.
    */
    kLeaderLineWeight       = 3,
 
    /** \details
      Enable landing.
    */
    kEnableLanding          = 4,
 
    /** \details
      Landing gap.
    */
    kLandingGap             = 5,
 
    /** \details
      Enable dog-leg.
    */
    kEnableDogleg           = 6,
 
    /** \details
      Dog-leg length.
    */
    kDoglegLength           = 7,
 
    /** \details
      Arrow symbol ID.
    */
    kArrowSymbolId          = 8,
 
    /** \details
      Arrow symbol size.
    */
    kArrowSize              = 9,
 
    /** \details
      MLeader content type.
    */
    kContentType            = 10,
 
    /** \details
      Text style ID (of MText).
    */
    kTextStyleId            = 11,
 
    /** \details
      Text left attachment type (of MText).
    */
    kTextLeftAttachmentType = 12,
 
    /** \details
      Text angle type (of MText).
    */
    kTextAngleType          = 13,
 
    /** \details
      Text alignment type (of MText).
    */
    kTextAlignmentType      = 14,
 
    /** \details
      Text color (of MText).
    */
    kTextColor              = 15,
 
    /** \details
      Text height (of MText).
    */
    kTextHeight             = 16,
 
    /** \details
      Enable text frame.
    */
    kEnableFrameText        = 17,
 
    /** \details
      Enable use of default MText (from MLeaderStyle).
    */
    kDefaultMText           = 18,
 
    /** \details
      Block content block ID.
    */
    kBlockId                = 19,
 
    /** \details
      Block content color.
    */
    kBlockColor             = 20,
 
    /** \details
      Block content scale.
    */
    kBlockScale             = 21,
 
    /** \details
      Block content rotation.
    */
    kBlockRotation          = 22,
 
    /** \details
      Block content connection type.
    */
    kBlockConnectionType    = 23,
 
    /** \details
      MLeader scale.
    */
    kScale                  = 24,
 
    /** \details
      Text right attachment type (of MText).
    */
    kTextRightAttachmentType = 25,
 
    /** \details
      Text switch alignment type (of MText).
    */
    kTextSwitchAlignmentType = 26,
 
    /** \details
      Text attachment direction (of MText).
    */
    kTextAttachmentDirection = 27,
 
    /** \details
      Text top attachment type (of MText).
    */
    kTextTopAttachmentType   = 28,
 
    /** \details
      Text bottom attachment type (of MText).
    */
    kTextBottomAttachmentType = 29,
 
    /** \details
      Extend leader line to text.
    */
    kExtendLeaderToText      = 30,
 
    /** \details
      Size of bit set.
    */
    kSize = kExtendLeaderToText + 1
  };
 
 
  ODDB_DECLARE_MEMBERS(OdDbMLeader);
 
  OdDbMLeader();
 
  virtual OdResult dwgInFields (OdDbDwgFiler* filer) ODRX_OVERRIDE;
 
  virtual void dwgOutFields(OdDbDwgFiler* filer) const ODRX_OVERRIDE;
 
  virtual OdResult dxfInFields (OdDbDxfFiler* filer) ODRX_OVERRIDE;
 
  virtual void dxfOutFields(OdDbDxfFiler* filer) const ODRX_OVERRIDE;
 
protected:
  virtual bool subWorldDraw(OdGiWorldDraw* pWd) const ODRX_OVERRIDE;
 
  virtual void  subViewportDraw(OdGiViewportDraw* mode) const ODRX_OVERRIDE;
 
  virtual OdResult subTransformBy(const OdGeMatrix3d& xform) ODRX_OVERRIDE;
 
  /** \details
    Returns all subentity paths by graphic system marker.
 
    \param type [in]  The subentity type being queried. ( Only OdDb::kClassSubentType )
    \param gsMarker [in]  The GS marker of the subentity being queried.
    \param pickPoint [in]  The WCS point being queried. ( Not used )
    \param xrm [in]  The WCS->DCS transformation matrix. ( Not used )
    \param subentPaths [out] The array of OdDbFullSubentPath objects.
    \param entAndInsertStack [in] The array of objectIds of the objects that are the nested containers of the subentity.
  */
 
  virtual OdResult subGetSubentPathsAtGsMarker(OdDb::SubentType type, OdGsMarker gsMark, 
                                        const OdGePoint3d& pickPoint,const OdGeMatrix3d& xfm, 
                                        OdDbFullSubentPathArray& subentPaths, 
                                        const OdDbObjectIdArray* pEntAndInsertStack = 0) const ODRX_OVERRIDE;
 
  /** \details
    Returns all graphic system marker by subentity paths.
 
    \param subPath [in]  The OdDbFullSubentPath to the subentity.
    \param gsMarkers [in/out] The array of integer identifiers (GS markers).
  */
 
  virtual OdResult subGetGsMarkersAtSubentPath( const OdDbFullSubentPath& subPath, 
                                             OdGsMarkerArray& gsMarkers) const ODRX_OVERRIDE;
 
  /** \details
    Deletes one or more subentities from an entity.
 
    \param paths [in]  The array of OdDbFullSubentPath objects.
  */
 
  virtual OdResult subDeleteSubentPaths(const OdDbFullSubentPathArray& paths) ODRX_OVERRIDE;
 
  /** \details
    Create an object by OdDbFullSubentPath to the subentity.
 
    \param path [in]  The OdDbFullSubentPath to the subentity.
  */
 
  virtual OdDbEntityPtr subSubentPtr(const OdDbFullSubentPath& path) const ODRX_OVERRIDE;
 
  virtual void subClose() ODRX_OVERRIDE;
 
  virtual OdResult subExplode(OdRxObjectPtrArray& entitySet) const ODRX_OVERRIDE;
 
  virtual OdResult subGetGeomExtents(OdGeExtents3d& extents) const ODRX_OVERRIDE;
 
  virtual OdResult subGetClassID(
    void* pClsid) const ODRX_OVERRIDE;
 
#if 0
//////////////////////////////////////////////////////////////////////////////
 
  virtual OdResult getGripEntityUCS(
    const void* pGripAppData,
    OdGeVector3d& normalVec,
    OdGePoint3d& origin,
    OdGeVector3d& xAxis) const;
 
  virtual void  gripStatus(
    const OdDb::GripStat status);
 
/////////////////////////////////////////////////////////////////////////////////
#endif
 
  virtual OdResult subGetTransformedCopy(
    const OdGeMatrix3d& xform,
    OdDbEntityPtr& pEnt) const;
 
 
public:
  /** \details
    Sets the override status for the specified PropertyOverrideType.
 
    \param propertyType [in]  PropertyOverrideType which will be set.
    \param isOverride [in]  true if an override for propertyType is to be set, false otherwise.
  */
  void setOverride(
    PropertyOverrideType propertyType,
    bool isOverride = true);
 
  /** \details
    Returns the override status for the specified PropertyOverrideType.
 
    \param propertyType [in]  PropertyOverrideType for which status is to be returned.
 
    \remarks
    Returns true if an override has been set for the specified propertyType, false otherwise.
  */
  bool  isOverride(
    PropertyOverrideType propertyType) const;
 
  /** \details
    Sets the MLeader scale, which affects arrowhead size and content scale.
 
    \param scale [in]  The scale value.
 
    \remarks
    Returns eOk if successful.  Note that this function will set an override 
    for kScale PropertyOverrideType.
  */
  OdResult setScale(
    double scale);
 
  /** \details
    Returns the MLeader scale, which affects arrowhead size and content scale.
 
  */
  double  scale() const;
 
  /** \details
    Returns the specified attribute from the associated block content.
 
    \param attdefId [in]  ObjectID of an attribute definition.
    \param pAtt [out]  Returned attribute object corresponding to attdefId.
 
    \remarks
    If successful, returns eOk.
  */
  OdResult getBlockAttributeValue(
    OdDbObjectId attdefId,
    OdDbAttributePtr& pAtt) const;
 
  /** \details
    Sets the specified attribute within associated block content.
 
    \param attdefId [in]  ObjectID of attribute definition.
    \param pAtt [in]  Attribute object pointer.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult setBlockAttributeValue(
    OdDbObjectId attdefId,
    const OdDbAttribute* pAtt);
 
  /** \details
    Returns the WCS plane containing this MLeader object.
  */
  OdGePlane plane() const;
 
  /** \details
    Sets the WCS plane containing this MLeader object.
 
    \param plane [in]  Place which will contain the MLeader.
 
    \remarks
    Note that MLeader geometry will be updated appropriately to reflect the new location.
  */
  void  setPlane(
    const OdGePlane& plane);
 
  OdGeVector3d  normal() const;
 
  /** \details
    Moves this MLeader object as specified by an input vector.
 
    \param vector [in] Vector which specifies the direction and distance of the move.
    \param moveType [in] Indicates how to move the MLeader.
    \param bAutoSwitchDogleg [in] If true, automatically switch leader lines after movoing the MLeader.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult moveMLeader(
    const OdGeVector3d& vector,
    MoveType moveType,
    bool bAutoSwitchDogleg = true);
 
  /** \details
    Returns the the extents of the content for this MLeader.
 
    \param extents [out]  Receives the content extents.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult getContentGeomExtents(
    OdGeExtents3d& extents) const;
 
  /** \details
 
    \param leaderIndexes [out]  Returned indexes.
  */
  void getLeaderIndexes(
    OdIntArray& leaderIndexes);
 
  /** \details
    Causes a new cluster to be added to this MLeader object, and returns the index of the new cluster.
 
    \param leaderIndex [out]  Index of newly added cluster.
 
    \remarks
    A leader cluster consists of a dog-leg and leader lines.
  */
  void addLeader(
    int& leaderIndex);
 
  /** \details
    Removes the leader cluster specified by the passed-in index.
 
    \param leaderIndex [in]  Index of the cluster to be removed.
 
    \remarks
    A leader cluster consists of a dog-leg and leader lines.
  */
  void removeLeader(
    int leaderIndex);
 
  /** \details
 
    \param leaderIndexes [out]  Receives the indexes of leader lines for this MLeader.
 
    \remarks
    Returns eOk if successful.
  */
  void getLeaderLineIndexes(
    OdIntArray& leaderLineIndexes);
 
  /** \details
    Adds a leader line to the leader cluster specified by the supplied index.
 
    \param leaderIndex [in]  Leader cluster index.
    \param leaderLineIndex [out]  Receives the index of the newly added leader line.
  */
  OdResult addLeaderLine(
    int leaderIndex, 
    int& leaderLineIndex);
 
  /** \details
    Adds a new leader line to this MLeader.  The first point of the new leader line is passed in.
 
    \param point [in]  Specifies the first point of the new leader line.
    \param leaderLineIndex [out]  Receives the index of the newly added leader line.
 
    \remarks
    Returns eOk if successful. 
  */
  OdResult addLeaderLine(
    const OdGePoint3d& point, 
    int& leaderLineIndex);
 
  /** \details
    Removes the leader line specified by the passed-in index.
 
    \param leaderLineIndex [in]  Index of the leader line to remove.
 
    \remarks
    Note that removal of all leader lines will cause the leader cluster to be removed as well.
  */
  void removeLeaderLine(
    int leaderLineIndex);
 
  /** \details
    Inserts a new first vertex into the specified leader line.
 
    \param leaderLineIndex [in]  Index of the leader line to which the vertex will be added.
    \param point [in]  The position of the vertex.
  */
  OdResult addFirstVertex(
    int leaderLineIndex, const OdGePoint3d& point);
 
  /** \details
    Removes the first vertex from the specified leader line.
 
    \param leaderLineIndex [in]  Index of the leader line from which the first vertex will be removed.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult removeFirstVertex(
    int leaderLineIndex);
 
  /** \details
    Returns the first vertex from the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param point [out]  Receives the first vertex.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult getFirstVertex(
    int leaderLineIndex, 
    OdGePoint3d& point) const;
 
  /** \details
    Sets the first vertex of the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param point [in]  New position for the first vertex.
 
    \remarks
    Returns eOk if successful.  Note that this function only sets the values for an existing 
    first vertex, but does not create any new vertices.
  */
  OdResult setFirstVertex(
    int leaderLineIndex, 
    const OdGePoint3d& point);
 
  /** \details
    Appends a new last vertex onto the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param point [in]  The new vertex position.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult addLastVertex(
    int leaderLineIndex,
    const OdGePoint3d& point);
 
  /** \details
    Removes the last vertex from the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult removeLastVertex(
    int leaderLineIndex);
 
  /** \details
    Returns the last vertex from the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param point [out]  Receives the last vertex from the specified leader line.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult getLastVertex(
    int leaderLineIndex,
    OdGePoint3d& point) const;
 
  /** \details
    Sets the last vertex of the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param point [in]  New last vertex for specified leader line.
    
    \remarks
    Returns eOk if successful.
  */
  OdResult setLastVertex(
    int leaderLineIndex,
    const OdGePoint3d& point);
 
  /** \details
    Returns the number of vertices in the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param num [out]  Receives the number of vertices in the specified leader line.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult numVertices(
    int leaderLineIndex, 
    int& num) const;
 
  /** \details
    Sets the position for a specified vertex in a specified leader line. 
 
    \param leaderLineIndex [in]  Leader line index.
    \param index [in]  The index of the vertex to be set.
    \param point [in]  New coordinate value for the specified vertex.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult setVertex(
    int leaderLineIndex,
    int index,
    const OdGePoint3d& point);
 
  /** \details
    Returns the position of a specified vertex in a specified leader line. 
 
    \param leaderLineIndex [in]  Leader line index.
    \param index [in]  The index of the vertex.
    \param point [out]  Receives the position value for the specified vertex.
    
    \remarks
    Returns eOk if successful.
  */
  void getVertex(
    int leaderLineIndex,
    int index, OdGePoint3d& point);
 
  /** \details
    Returns the index of the leader cluster which contains the specified leader line.
 
    \param leaderLineIndex [in]  Leader line index.
    \param leaderIndex [out]  Receives the index of the lead line owner.
  */
  void getLeaderIndex(
    int leaderLineIndex,
    int& leaderIndex); 
 
  /** \details
    Returns the indexes of all leader lines for the specified leader.
 
    \param leaderIndex [in]  Leader index.
    \param leaderLineIndexes [out]  Receives the indexes of the owned leader lines.
  */
  void getLeaderLineIndexes(
    int leaderIndex,
    OdIntArray& leaderLineIndexes);
 
  /** \details
    Sets the dog-leg direction for the specified leader cluster.
 
    \param leaderIndex [in]  Leader index.
    \param vector [in]  The new dog-leg direction.
  */
  void setDoglegDirection(
    int leaderIndex,
    const OdGeVector3d& vector);
 
  /** \details
    Returns the dog-leg direction for the specified leader cluster.
 
    \remarks
    \param leaderIndex [in] Leader index.
    \param vector [out] Receives the dog-leg direction.
  */
  void getDoglegDirection(
    int leaderIndex,
    OdGeVector3d& vector);
 
  /** \details
    Sets the leader line type for this MLeader object.
 
    \param leaderLineType [in]  Leader line type. 
 
    \remarks
    The kLeaderLineType PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setLeaderLineType(
    OdDbMLeaderStyle::LeaderType leaderLineType);
 
  /** \details
    Returns the leader line type for this MLeader object.
  */
  OdDbMLeaderStyle::LeaderType  leaderLineType() const;
 
  /** \details
    Sets the leader line color for this MLeader.
 
    \param leaderLineColor [in]  Leader line color.
 
    \remarks
    The kLeaderLineColor PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setLeaderLineColor(
    const OdCmColor& leaderLineColor);
 
  /** \details
    Returns the leader line color for this MLeader.
  */
  OdCmColor leaderLineColor() const;
 
  /** \details
    Sets the leader line linetype for this MLeader by OdDbObjectId.
 
    \param leaderLineTypeId [in]  Leader line type ObjectId.
 
    \remarks
    The kLeaderLineTypeId PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setLeaderLineTypeId(
    OdDbObjectId leaderLineTypeId);
 
  /** \details
    Returns the leader line linetype for this MLeader by OdDbObjectId.
  */
  OdDbObjectId  leaderLineTypeId() const;
 
  /** \details
    Sets the leader line weight for this MLeader.
 
    \param leaderLineWeight [in]  Leader line weight.
 
    \remarks
    The kLeaderLineWeight PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setLeaderLineWeight(
    OdDb::LineWeight leaderLineWeight);
 
  /** \details
    Returns the leader line weight for this MLeader.
  */
  OdDb::LineWeight  leaderLineWeight() const;
 
  /** \details
    Sets the landing gap for this MLeader (gap between the leader tail and associated MText).
 
    \param landingGap [in]  Landing gap (gap between the leader tail and associated MText).
 
    \remarks
    The kLandingGap PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setLandingGap(
    double landingGap);
 
  /** \details
    Returns the landing gap for this MLeader (gap between the leader tail and associated MText).
  */
  double  landingGap() const;
 
  /** \details
    Sets the enabled/disabled status for leader landing line.
 
    \param enableLanding [in]  Leader landing line enabled status.
 
    \remarks
    The kEnableLanding PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setEnableLanding(
    bool enableLanding);
 
  /** \details
    Returns the enabled/disabled status for leader landing line.
  */
  bool  enableLanding() const;
 
  /** \details
    Sets the enabled/disabled status for dog-leg leader line.
 
    \param enableDogleg [in]  Leader dog-leg line enabled status.
 
    \remarks
    The kEnableDogleg PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setEnableDogleg(
    bool enableDogleg);
 
  /** \details
    Returns the enabled/disabled status for dog-leg leader line.
  */
  bool  enableDogleg() const;
 
  /** \details
    Sets the length for the dog-leg of the specified leader cluster.
 
    \param leaderIndex [in]  Leader index.
    \param dDoglegLength [in]  Dog-leg length.
 
    \remarks
    The kDoglegLength PropertyOverrideType override will be set as a result of
    calling this function.
  */
  void setDoglegLength(
    int leaderIndex,
    double dDoglegLength);
 
  /** \details
    Returns the length for the dog-leg of the specified leader cluster.
 
    \param leaderIndex [in] Leader index.
  */
  double doglegLength(
    int leaderIndex );
 
  //deprecated 
  OdResult    setDoglegLength        (double doglegLength);
  //deprecated 
  double      doglegLength           () const;
 
  /** \details
    Sets the arrow symbol for this MLeader (by ObjectId).
 
    \param arrowSymbolId [in]  Arrow symbol ObjectId.
 
    \remarks
    The kDoglegLength PropertyOverrideType override will be set as a result of
    calling this function.  If this value is not set, the default arrow symbol 
    will be used.
  */
  void setArrowSymbolId(
    OdDbObjectId arrowSymbolId);
 
  /** \details
    Returns the arrow symbol for this MLeader (by ObjectId).
  */
  OdDbObjectId  arrowSymbolId() const;
 
  /** \details
    Sets the arrow size for this MLeader object.
 
    \param arrowSize [in]  Arrow size.
 
    \remarks
    The kArrowSize PropertyOverrideType override will be set as a result of
    calling this function.  
  */
  void setArrowSize(
    double arrowSize);
 
  /** \details
    Returns the arrow size for this MLeader object.
  */
  double  arrowSize() const;
 
  /** \details
    Sets the content type for this MLeader object.
 
    \param contentType [in]  Content type.
 
    \remarks
    The kContentType PropertyOverrideType override will be set as a result of
    calling this function.  
  */
  void setContentType(
    OdDbMLeaderStyle::ContentType contentType);
 
  /** \details
    Returns the content type for this MLeader object.
  */
  OdDbMLeaderStyle::ContentType contentType() const;
 
  /** \details
    Sets the textstyle used by MText content (by ObjectId).
 
    \param textStyleId [in]  OdDbTextStyle ObjectId.
 
    \remarks
    The kTextStyleId PropertyOverrideType override will be set as a result of
    calling this function.  
  */
  void setTextStyleId(
    OdDbObjectId textStyleId);
 
  /** \details
    Return the textstyle used by MText content (by ObjectId).
  */
  OdDbObjectId  textStyleId() const;
 
  /** \details
    Sets the text attachment type used by MText content.
 
    \param textAttachmentType [in]  Text attachment type.
    \param leaderDirection [in]  Text leader direction type.
 
    \remarks
    The kTextLeftAttachmentType/kTextRightAttachmentType PropertyOverrideType override 
    will be set as a result of calling this function.  
  */
  void setTextAttachmentType(
      OdDbMLeaderStyle::TextAttachmentType textAttachmentType,
      OdDbMLeaderStyle::LeaderDirectionType leaderDirection);
 
  /** \details
    Returns the text attachment type used by MText content.
 
    \param leaderDirection [in]  Text leader direction type.
  */
  OdDbMLeaderStyle::TextAttachmentType  textAttachmentType(
      OdDbMLeaderStyle::LeaderDirectionType leaderDirection) const;
 
  /** \details
    Sets the angle type for MText content, with respect to the last leader line segment.
 
    \param textAngleType [in]  Text text angle type.
 
    \remarks
    The kTextAngleType PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setTextAngleType(
    OdDbMLeaderStyle::TextAngleType textAngleType);
 
  /** \details
    Returns the angle type for MText content, with respect to the last leader line segment.
  */
  OdDbMLeaderStyle::TextAngleType textAngleType() const;
 
  /** \details
    Sets the text alignment type for MText content.
 
    \param textAlignmentType [in]  Text alignment type.
 
    \remarks
    The kTextAlignmentType PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setTextAlignmentType(
    OdDbMLeaderStyle::TextAlignmentType textAlignmentType);
 
  /** \details
    Returns the text alignment type for MText content.
  */
  OdDbMLeaderStyle::TextAlignmentType textAlignmentType() const;
 
  /** \details
    Sets the text color for MText content.
 
    \param textColor [in]  Text color.
 
    \remarks
    The kTextColor PropertyOverrideType override will be set as a result 
    of calling this function.
  */
  void setTextColor(const OdCmColor& textColor);
 
  /** \details
    Returns the text color for MText content.
  */
  OdCmColor textColor() const;
 
  /** \details
    Sets the text height for MText content.
 
    \param textHeight [in]  Text height.
 
    \remarks
    The kTextHeight PropertyOverrideType override will be set as a result 
    of calling this function.
  */
  void setTextHeight(
    double textHeight);
 
  /** \details
    Returns the text height for MText content.
  */
  double  textHeight() const;
 
  /** \details
    Sets the text frame visibility for MText content.
 
    \param enableFrameText [in]  True to enable the text frame, false otherwise.
 
    \remarks
    The kEnableFrameText PropertyOverrideType override will be set as a result 
    of calling this function.
  */
  void setEnableFrameText(
    bool enableFrameText);
 
  /** \details
    Returns the text frame visibility for MText content.
  */
  bool  enableFrameText() const;
 
  /** \details
    Sets the MText object to be associated with this MLeader.
 
    \param pMText [in]  The MText object to associate with this MLeader (if NULL, 
      the default MText defined in the associated MLeaderStyle is used).
 
    \remarks
    The kDefaultMText PropertyOverrideType override will be set as a result 
    of calling this function.  The supplied MText object can be DBR or non-DBR.
  */
  void setMText(
    const OdDbMText* pMText);
 
  /** \details
    Returns the MText content associated with this MLeader.
  */
  OdDbMTextPtr mtext() const;
 
  /** \details
    Sets the referenced block for this MLeader, by block ObjectId.
 
    \param blockId [in]  Block table record ObjectId.
 
    \remarks
    The kBlockId PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setBlockContentId(
    OdDbObjectId blockId);
 
  /** \details
    Returns the referenced block for this MLeader, by block ObjectId.
  */
  OdDbObjectId  blockContentId() const;
 
  /** \details
    Sets the color used for block content.
 
    \param blockColor [in]  Block color.
 
    \remarks
    The kBlockColor PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setBlockColor(
    const OdCmColor& blockColor);
 
  /** \details
    Returns the color used for block content.
  */
  OdCmColor blockColor() const;
 
  /** \details
    Sets the scale used by the referenced block.
 
    \param scale [in]  Referenced block scale.
 
    \remarks
    The kBlockScale PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setBlockScale(
    const OdGeScale3d& scale);
 
  /** \details
    Returns the scale used by the referenced block.
  */
  OdGeScale3d blockScale() const;
 
  /** \details
    Sets the rotation used by the referenced block.
 
    \param rotation [in]  Referenced block rotation.
 
    \remarks
    The kBlockRotation PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setBlockRotation(
    double rotation);
 
  /** \details
    Returns the rotation used by the referenced block.
  */
  double blockRotation() const;
 
  /** \details
    Sets the block connection type for this MLeader, which specifies how the 
    referenced block is connected to the leader lines.
 
    \param blockConnectionType [in]  Block connection type.
 
    \remarks
    The kBlockConnectionType PropertyOverrideType override will be set as a result 
    of calling this function.  
  */
  void setBlockConnectionType(
    OdDbMLeaderStyle::BlockConnectionType blockConnectionType);
 
  /** \details
    Returns the block connection type for this MLeader, which specifies how the 
    referenced block is connected to the leader lines.
  */
  OdDbMLeaderStyle::BlockConnectionType blockConnectionType() const;
 
  /** \details
    Sets the annotation scale enabled status for this MLeader.
 
    \param enableAnnotationScale [in]  true if annotation scale is to be enabled, false otherwise.
  */
  void setEnableAnnotationScale(
    bool enableAnnotationScale);
 
  /** \details
    Returns the annotation scale enabled status for this MLeader.
  */
  bool  enableAnnotationScale() const;
 
  /** \details
    Sets the MLeaderStyle used for this MLeader, by ObjectId.
 
    \param newStyleId [in]  New MLeaderStyle.
  */
  void setMLeaderStyle(
    OdDbObjectId newStyleId);
 
  /** \details
    Returns the MLeaderStyle used for this MLeader, by ObjectId.
  */
  OdDbObjectId  MLeaderStyle();
 
  /** \details
    Returns the property set for the MLeader, including override values.
 
    \param mleaderStyle [out]  Receives the properties of this MLeader.
 
    \remarks
    Returns eOk if successful. 
  */
  OdResult getOverridedMLeaderStyle(
    OdDbMLeaderStyle& mleaderStyle);
 
  /** \details
    Sets the context data manager for this MLeader object.
 
    \param pContextDataManager [in]  Pointer to a context data manager.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult setContextDataManager(
    void* pContextDataManager);
 
  /** \details
    Returns the context data manager for this MLeader object.
  */
  void* getContextDataManager() const;
 
  /** \details
    Sets the position for the block referenced by this MLeader.
 
    \param position [in]  Block position.
  */
  void setBlockPosition(
    const OdGePoint3d& position);
 
  /** \details
    Returns the position for the block referenced by this MLeader.
 
    \param position [out]  Receives the block position.
  */
  void getBlockPosition(
    OdGePoint3d& position);
 
  /** \details
    Sets the location for the MText content associated with this MLeader.
 
    \param location [in]  MLeader mtext location.
  */
  void setTextLocation(
    const OdGePoint3d& location);
 
  /** \details
    Returns the location for the MText content associated with this MLeader.
  
    \param location [out]  Receives the MText location.
  */
  void getTextLocation(
    OdGePoint3d& location);
 
  /** \details
    Sets the location for MLeader tolerance content.
 
    \param location [in]  MLeader tolerance content location
 
    \remarks
    Returns eOk if successful.
  */
  OdResult setToleranceLocation(
    const OdGePoint3d& location);
 
  /** \details
    Returns the location for MLeader tolerance content.
 
    \param location [out]  Receives the MLeader tolerance content location.
 
    Returns eOk if successful.
  */
  OdResult getToleranceLocation(
    OdGePoint3d& location) const;
 
  /** \details
    Sets the arrow head symbol for a specified leader line, by ObjectId.
 
    \param leaderLineIndex [in]  Leader line index.
    \param arrowSymbolId [in]  Arrow symbol ObjectId.
 
    \remarks
    Returns eOk if successful.
  */
  void setArrowSymbolId(
    int leaderLineIndex,
    OdDbObjectId arrowSymbolId);
 
  /** \details
    Returns the arrow head symbol for a specified leader line, by ObjectId.
 
    \param leaderLineIndex [in]  Leader line index.
  */
  OdDbObjectId  arrowSymbolId(
    int leaderLineIndex) const;
 
  /** \details
    Returns true if this MLeader has content, false otherwise.
  */
  bool  hasContent() const;
 
  /** \details
    Returns the connection point of this MLeader, for the speciefied direction.
 
    \param vect [in]  The specified direction.
    \param point [out]  Receives the connection point.
  */
  OdResult connectionPoint(
    const OdGeVector3d& vect,
    OdGePoint3d& point) const;
 
  /** \details
  Returns the connection point of this MLeader, for the speciefied direction.
 
  \param vect [in]  The specified direction.
  \param point [out]  Receives the connection point.
  direction  The text attachment direction of MText. (Horizontally by default).  
  */
  OdResult connectionPoint(
    const OdGeVector3d& vect,
    OdGePoint3d& point,
    OdDbMLeaderStyle::TextAttachmentDirection direction) const;
 
  /** \details
    Recomputes the dimension break points.
 
    \remarks
    Returns eOk if successful.
  */
    OdResult recomputeBreakPoints();
 
  /** \details
    Adds this MLeader object to the Model Space block of the specified database.
 
    \param pDb [in]  Database to which this MLeader object should be added.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult postMLeaderToDb(
    OdDbDatabase* pDb);
 
  // dim associativity support
 
  /** \details
    Updates leader line positions.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult updateLeaderLinePosition();
 
  /** \details
    Removes the specified leader line's geometry association.
 
    \param leaderLineIndex [in]  Leader line index.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult removeLeaderLineRefAssoc(
    int leaderLineIndex) const;
 
  /** \details
    Updates this MLeaders's arrow head, landing gap, dog-leg length, and text height or block scale.
 
    \param pContext [in]  MLeader context data.
 
    \remarks
    Returns eOk if successful.
  */
  OdResult updateContentScale(
    OdDbMLeaderObjectContextData* pContext);
 
  virtual bool isPlanar() const ODRX_OVERRIDE;
  virtual OdResult getPlane(OdGePlane& plane, OdDb::Planarity& planarity) const ODRX_OVERRIDE;
 
  /** \details
    Sets the text attachment direction of MText.
 
    \param direction [in]  The text attachment direction of MText.
  */
  void setTextAttachmentDirection(
    OdDbMLeaderStyle::TextAttachmentDirection direction);
 
  /** \details
    Returns the text attachment direction of MText.
  */
  OdDbMLeaderStyle::TextAttachmentDirection textAttachmentDirection() const;
 
  /** \details
      Enumeration of the individual leader line properties which can be overridden.
  */
  enum LeaderLineOverrideType
  {
    /** \details
      Leader line type (OdDbMLeaderStyle::LeaderType).
    */
    kOverrideLeaderType = 0,
    /** \details
      Leader line color.
    */
    kOverrideLineColor,
    /** \details
      Leader line linetype ID.
    */
    kOverrideLineTypeId,
    /** \details
      Leader line weight.
    */
    kOverrideLineWeight,
    /** \details
      Leader line arrow size.
    */
    kOverrideArrowSize,
    /** \details
      Leader line arrow symbol.
    */
    kOverrideArrowSymbolId  
  };
  
  /** \details
    Returns the override status for the specified line property.
 
    \param leaderLineIndex [in]  leader line index for which status is to be returned.
    \param value [in]  property identifier
 
    \remarks
    Returns true if an override has been set for the specified property, false otherwise.
    (Override is set in the set* functions listed below, which accept leader line index as a first argument)
  */
  bool isOverride(int leaderLineIndex, LeaderLineOverrideType value);
 
  void setLeaderLineType(
    int leaderLineIndex,
    OdDbMLeaderStyle::LeaderType leaderLineType);
 
  OdDbMLeaderStyle::LeaderType leaderLineType(
    int leaderLineIndex) const;
 
  void setLeaderLineColor(
    int leaderLineIndex,
    const OdCmColor& leaderLineColor);
 
  OdCmColor leaderLineColor(
    int leaderLineIndex) const;
 
  void setLeaderLineTypeId(
    int leaderLineIndex,
    OdDbObjectId leaderLineTypeId);
 
  OdDbObjectId leaderLineTypeId(
    int leaderLineIndex) const;
 
  void setLeaderLineWeight(
    int leaderLineIndex,
    OdDb::LineWeight leaderLineWeight);
 
  OdDb::LineWeight leaderLineWeight(
    int leaderLineIndex) const;
 
  void setArrowSize(
    int leaderLineIndex,
    double arrowSize);
 
  double arrowSize(
    int leaderLineIndex) const;
 
  /** \details
    Set extend to text mode.
 
    \param bSet [in]  New value for extend to text mode flag.
  */
  void setExtendLeaderToText(bool bSet);
 
  /** \details
    Returns extend to text mode flag.
  */
  bool extendLeaderToText() const;
 
protected:
  virtual OdUInt32 subSetAttributes(OdGiDrawableTraits* pTraits) const ODRX_OVERRIDE;
 
  virtual void subSetDatabaseDefaults(OdDbDatabase *pDb, bool doSubents) ODRX_OVERRIDE;
 
  virtual void modified(const OdDbObject* pObj) ODRX_OVERRIDE;
};
 
/** \details
  This template class is a specialization of the OdSmartPtr class for OdDbMLeader object pointers.
*/
typedef OdSmartPtr<OdDbMLeader> OdDbMLeaderPtr;
 
#include "TD_PackPop.h"
 
#endif // OD_MLEADER_H