Salome HOME
Fix for bug PAL12858(EDF210 GEOM Preferences menu of GEOM: color of the wireframe?)
[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 class NMTTools_DSFiller  {
52
53 public:
54
55     void* operator new(size_t,void* anAddress) 
56       {
57         return anAddress;
58       }
59     void* operator new(size_t size) 
60       { 
61         return Standard::Allocate(size); 
62       }
63     void  operator delete(void *anAddress) 
64       { 
65         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
66       }
67  // Methods PUBLIC
68  // 
69 Standard_EXPORT NMTTools_DSFiller();
70 Standard_EXPORT   void Destroy() ;
71 ~NMTTools_DSFiller()
72 {
73   Destroy();
74 }
75
76 Standard_EXPORT   void SetCompositeShape(const TopoDS_Shape& aS) ;
77 Standard_EXPORT  const TopoDS_Shape& CompositeShape() const;
78 Standard_EXPORT   void SetNewFiller(const Standard_Boolean aFlag) const;
79 Standard_EXPORT   Standard_Boolean IsNewFiller() const;
80 Standard_EXPORT   void Perform() ;
81 Standard_EXPORT  const NMTDS_ShapesDataStructure& DS() const;
82 Standard_EXPORT  const BOPTools_InterferencePool& InterfPool() const;
83 Standard_EXPORT   Standard_Boolean IsDone() const;
84 Standard_EXPORT  const NMTTools_PaveFiller& PaveFiller() const;
85 Standard_EXPORT   NMTTools_PaveFiller& ChangePaveFiller() ;
86
87
88
89
90
91 protected:
92
93  // Methods PROTECTED
94  // 
95 Standard_EXPORT   void Clear() ;
96
97
98  // Fields PROTECTED
99  //
100 TopoDS_Shape myCompositeShape;
101 NMTDS_PShapesDataStructure myDS;
102 BOPTools_PInterferencePool myInterfPool;
103 NMTTools_PPaveFiller myPaveFiller;
104 Standard_Boolean myIsDone;
105 Standard_Boolean myIsNewFiller;
106
107
108 private: 
109
110  // Methods PRIVATE
111  // 
112
113
114  // Fields PRIVATE
115  //
116
117
118 };
119
120
121
122
123
124 // other Inline functions and methods (like "C++: function call" methods)
125 //
126
127
128 #endif