Salome HOME
NPAL17431: About WhatIs dialog box. Set font-dependent height.
[modules/geom.git] / src / NMTTools / NMTTools_DSFiller.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _NMTTools_DSFiller_HeaderFile
21 #define _NMTTools_DSFiller_HeaderFile
22
23 #ifndef _TopoDS_Shape_HeaderFile
24 #include <TopoDS_Shape.hxx>
25 #endif
26 #ifndef _NMTDS_PShapesDataStructure_HeaderFile
27 #include <NMTDS_PShapesDataStructure.hxx>
28 #endif
29 #ifndef _BOPTools_PInterferencePool_HeaderFile
30 #include <BOPTools_PInterferencePool.hxx>
31 #endif
32 #ifndef _NMTTools_PPaveFiller_HeaderFile
33 #include <NMTTools_PPaveFiller.hxx>
34 #endif
35 #ifndef _Standard_Boolean_HeaderFile
36 #include <Standard_Boolean.hxx>
37 #endif
38 class TopoDS_Shape;
39 class NMTDS_ShapesDataStructure;
40 class BOPTools_InterferencePool;
41 class NMTTools_PaveFiller;
42
43
44 #ifndef _Standard_HeaderFile
45 #include <Standard.hxx>
46 #endif
47 #ifndef _Standard_Macro_HeaderFile
48 #include <Standard_Macro.hxx>
49 #endif
50
51
52 class NMTTools_DSFiller  {
53
54 public:
55
56     void* operator new(size_t,void* anAddress) 
57       {
58         return anAddress;
59       }
60     void* operator new(size_t size) 
61       { 
62         return Standard::Allocate(size); 
63       }
64     void  operator delete(void *anAddress) 
65       { 
66         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
67       }
68  // Methods PUBLIC
69  // 
70
71
72 Standard_EXPORT NMTTools_DSFiller();
73
74 //! Destructor <br>
75 //! <br>
76 //!  Selectors/Modifiers <br>
77 Standard_EXPORT   void Destroy() ;
78 ~NMTTools_DSFiller()
79 {
80   Destroy();
81 }
82
83
84
85 Standard_EXPORT   void SetCompositeShape(const TopoDS_Shape& aS) ;
86
87
88 Standard_EXPORT  const TopoDS_Shape& CompositeShape() const;
89
90
91 Standard_EXPORT   void SetNewFiller(const Standard_Boolean aFlag) const;
92
93
94 Standard_EXPORT   Standard_Boolean IsNewFiller() const;
95
96
97 Standard_EXPORT   void Perform() ;
98
99
100 Standard_EXPORT  const NMTDS_ShapesDataStructure& DS() const;
101
102
103 Standard_EXPORT  const BOPTools_InterferencePool& InterfPool() const;
104
105
106 Standard_EXPORT   Standard_Boolean IsDone() const;
107
108
109 Standard_EXPORT  const NMTTools_PaveFiller& PaveFiller() const;
110
111
112 Standard_EXPORT   NMTTools_PaveFiller& ChangePaveFiller() ;
113
114
115
116
117
118 protected:
119
120  // Methods PROTECTED
121  // 
122
123
124 Standard_EXPORT   void Clear() ;
125
126
127  // Fields PROTECTED
128  //
129 TopoDS_Shape myCompositeShape;
130 NMTDS_PShapesDataStructure myDS;
131 BOPTools_PInterferencePool myInterfPool;
132 NMTTools_PPaveFiller myPaveFiller;
133 Standard_Boolean myIsDone;
134 Standard_Boolean myIsNewFiller;
135
136
137 private: 
138
139  // Methods PRIVATE
140  // 
141
142
143  // Fields PRIVATE
144  //
145
146
147 };
148
149
150
151
152
153 // other Inline functions and methods (like "C++: function call" methods)
154 //
155
156
157 #endif