Salome HOME
ccdbe0fb0df329a55a63acc1a073e763ca9c7e3d
[modules/geom.git] / src / OBJECT / GEOM_AISDimension.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  GEOM OBJECT : interactive object for Geometry entities visualization
24 //  File   : GEOM_AISDimension.hxx
25 //  Module : GEOM
26 //
27 #ifndef GEOM_AISDimension_HeaderFile
28 #define GEOM_AISDimension_HeaderFile
29
30 #include <AIS_LengthDimension.hxx>
31 #include <AIS_DiameterDimension.hxx>
32 #include <AIS_AngleDimension.hxx>
33
34 DEFINE_STANDARD_HANDLE(GEOM_AISLength,   AIS_LengthDimension)
35 DEFINE_STANDARD_HANDLE(GEOM_AISDiameter, AIS_DiameterDimension)
36 DEFINE_STANDARD_HANDLE(GEOM_AISAngle,    AIS_AngleDimension)
37
38 //=================================================================================
39 // class    : GEOM_AISLength
40 // purpose  : presentation of length dimension property
41 //=================================================================================
42 class GEOM_AISLength : public AIS_LengthDimension
43 {
44 public:
45   DEFINE_STANDARD_RTTI(GEOM_AISLength)
46
47 public:
48   Standard_EXPORT                    GEOM_AISLength( const Standard_Integer theId );
49   Standard_EXPORT  Standard_Integer  GetId() const;
50   Standard_EXPORT  void              SetId( const Standard_Integer theId );
51
52 private:
53   Standard_Integer                   myId;
54 };
55
56 //=================================================================================
57 // class    : GEOM_AISDiameter
58 // purpose  : presentation of diameter dimension property
59 //=================================================================================
60 class GEOM_AISDiameter : public AIS_DiameterDimension
61 {
62 public:
63   DEFINE_STANDARD_RTTI(GEOM_AISDiameter)
64
65 public:
66   Standard_EXPORT                     GEOM_AISDiameter( const Standard_Integer theId );
67   Standard_EXPORT  Standard_Integer   GetId() const;
68   Standard_EXPORT  void               SetId( const Standard_Integer theId );
69
70 private:
71   Standard_Integer                    myId;
72 };
73
74 //=================================================================================
75 // class    : GEOM_AISAngle
76 // purpose  : presentation of angle dimension property
77 //=================================================================================
78 class GEOM_AISAngle : public AIS_AngleDimension
79 {
80 public:
81   DEFINE_STANDARD_RTTI(GEOM_AISAngle)
82
83 public:
84   Standard_EXPORT                     GEOM_AISAngle( const Standard_Integer theId );
85   Standard_EXPORT  Standard_Integer   GetId() const;
86   Standard_EXPORT  void               SetId( const Standard_Integer theId );
87
88 private:
89   Standard_Integer                    myId;
90 };
91
92 #endif