File indexing completed on 2026-06-06 08:36:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IGESDraw_LabelDisplay_HeaderFile
0018 #define _IGESDraw_LabelDisplay_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <IGESDraw_HArray1OfViewKindEntity.hxx>
0024 #include <TColgp_HArray1OfXYZ.hxx>
0025 #include <IGESDimen_HArray1OfLeaderArrow.hxx>
0026 #include <TColStd_HArray1OfInteger.hxx>
0027 #include <IGESData_HArray1OfIGESEntity.hxx>
0028 #include <IGESData_LabelDisplayEntity.hxx>
0029 #include <Standard_Integer.hxx>
0030 class IGESData_ViewKindEntity;
0031 class gp_Pnt;
0032 class IGESDimen_LeaderArrow;
0033 class IGESData_IGESEntity;
0034
0035 class IGESDraw_LabelDisplay;
0036 DEFINE_STANDARD_HANDLE(IGESDraw_LabelDisplay, IGESData_LabelDisplayEntity)
0037
0038
0039
0040
0041
0042
0043 class IGESDraw_LabelDisplay : public IGESData_LabelDisplayEntity
0044 {
0045
0046 public:
0047 Standard_EXPORT IGESDraw_LabelDisplay();
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059 Standard_EXPORT void Init(const Handle(IGESDraw_HArray1OfViewKindEntity)& allViews,
0060 const Handle(TColgp_HArray1OfXYZ)& allTextLocations,
0061 const Handle(IGESDimen_HArray1OfLeaderArrow)& allLeaderEntities,
0062 const Handle(TColStd_HArray1OfInteger)& allLabelLevels,
0063 const Handle(IGESData_HArray1OfIGESEntity)& allDisplayedEntities);
0064
0065
0066 Standard_EXPORT Standard_Integer NbLabels() const;
0067
0068
0069
0070 Standard_EXPORT Handle(IGESData_ViewKindEntity) ViewItem(const Standard_Integer ViewIndex) const;
0071
0072
0073
0074
0075 Standard_EXPORT gp_Pnt TextLocation(const Standard_Integer ViewIndex) const;
0076
0077
0078
0079 Standard_EXPORT Handle(IGESDimen_LeaderArrow) LeaderEntity(
0080 const Standard_Integer ViewIndex) const;
0081
0082
0083
0084
0085 Standard_EXPORT Standard_Integer LabelLevel(const Standard_Integer ViewIndex) const;
0086
0087
0088
0089 Standard_EXPORT Handle(IGESData_IGESEntity) DisplayedEntity(
0090 const Standard_Integer EntityIndex) const;
0091
0092
0093
0094
0095 Standard_EXPORT gp_Pnt TransformedTextLocation(const Standard_Integer ViewIndex) const;
0096
0097 DEFINE_STANDARD_RTTIEXT(IGESDraw_LabelDisplay, IGESData_LabelDisplayEntity)
0098
0099 protected:
0100 private:
0101 Handle(IGESDraw_HArray1OfViewKindEntity) theViews;
0102 Handle(TColgp_HArray1OfXYZ) theTextLocations;
0103 Handle(IGESDimen_HArray1OfLeaderArrow) theLeaderEntities;
0104 Handle(TColStd_HArray1OfInteger) theLabelLevels;
0105 Handle(IGESData_HArray1OfIGESEntity) theDisplayedEntities;
0106 };
0107
0108 #endif