]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM_I/GEOM_IShapesOperations_i.hh
Salome HOME
Implementation of the "20830: EDF 1357 GUI : Hide/Show Icon"
[modules/geom.git] / src / GEOM_I / GEOM_IShapesOperations_i.hh
1 //  Copyright (C) 2007-2010  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.
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 #ifndef _GEOM_IShapesOperations_i_HeaderFile
23 #define _GEOM_IShapesOperations_i_HeaderFile
24
25 #include "GEOMImpl_Gen.hxx"
26
27 #include <SALOMEconfig.h>
28
29 #include CORBA_SERVER_HEADER(GEOM_Gen)
30 #include "GEOM_IOperations_i.hh"
31 #include "GEOM_Object_i.hh"
32
33 #include "GEOMImpl_IShapesOperations.hxx"
34
35 class GEOM_I_EXPORT GEOM_IShapesOperations_i :
36     public virtual POA_GEOM::GEOM_IShapesOperations,
37     public virtual GEOM_IOperations_i
38 {
39  public:
40   GEOM_IShapesOperations_i (PortableServer::POA_ptr       thePOA,
41                             GEOM::GEOM_Gen_ptr            theEngine,
42                             ::GEOMImpl_IShapesOperations* theImpl);
43   ~GEOM_IShapesOperations_i();
44
45   GEOM::GEOM_Object_ptr MakeEdge (GEOM::GEOM_Object_ptr thePnt1,
46                                   GEOM::GEOM_Object_ptr thePnt2);
47   GEOM::GEOM_Object_ptr MakeEdgeWire (GEOM::GEOM_Object_ptr theWire,
48                                       const CORBA::Double theLinearTolerance,
49                                       const CORBA::Double theAngularTolerance);
50
51   GEOM::GEOM_Object_ptr MakeWire (const GEOM::ListOfGO& theEdgesAndWires,
52                                   const CORBA::Double   theTolerance);
53
54   GEOM::GEOM_Object_ptr MakeFace (GEOM::GEOM_Object_ptr theWire,
55                                   CORBA::Boolean  isPlanarWanted);
56
57   GEOM::GEOM_Object_ptr MakeFaceWires (const GEOM::ListOfGO& theWires,
58                                        CORBA::Boolean  isPlanarWanted);
59
60   GEOM::GEOM_Object_ptr MakeShell (const GEOM::ListOfGO& theFacesAndShells);
61
62   GEOM::GEOM_Object_ptr MakeSolidShell (GEOM::GEOM_Object_ptr theShell);
63
64   GEOM::GEOM_Object_ptr MakeSolidShells (const GEOM::ListOfGO& theShells);
65
66   GEOM::GEOM_Object_ptr MakeCompound (const GEOM::ListOfGO& theShapes);
67
68   GEOM::GEOM_Object_ptr MakeGlueFaces (GEOM::GEOM_Object_ptr theShape,
69                                        CORBA::Double         theTolerance,
70                                        CORBA::Boolean        doKeepNonSolids);
71
72   GEOM::ListOfGO* GetGlueFaces (GEOM::GEOM_Object_ptr theShape,
73                                 CORBA::Double         theTolerance);
74
75   GEOM::GEOM_Object_ptr MakeGlueFacesByList (GEOM::GEOM_Object_ptr theShape,
76                                              CORBA::Double         theTolerance,
77                                              const GEOM::ListOfGO& theFaces,
78                                              CORBA::Boolean  doKeepNonSolids);
79
80   GEOM::ListOfGO* GetExistingSubObjects (GEOM::GEOM_Object_ptr theShape,
81                                          CORBA::Boolean        theGroupsOnly);
82
83   // For old SubShapeAll()
84   // Deprecated, use MakeAllSubShapes() instead
85   GEOM::ListOfGO* MakeExplode (GEOM::GEOM_Object_ptr theShape,
86                                CORBA::Long           theShapeType,
87                                CORBA::Boolean        isSorted);
88
89   GEOM::ListOfGO* MakeAllSubShapes (GEOM::GEOM_Object_ptr theShape,
90                                     CORBA::Long           theShapeType,
91                                     CORBA::Boolean        isSorted);
92
93   GEOM::ListOfGO* ExtractSubShapes (GEOM::GEOM_Object_ptr theShape,
94                                     CORBA::Long           theShapeType,
95                                     CORBA::Boolean        isSorted);
96
97   // Deprecated, use GetAllSubShapesIDs() instead
98   GEOM::ListOfLong* SubShapeAllIDs (GEOM::GEOM_Object_ptr theShape,
99                                     CORBA::Long           theShapeType,
100                                     CORBA::Boolean        isSorted);
101
102   GEOM::ListOfLong* GetAllSubShapesIDs (GEOM::GEOM_Object_ptr theShape,
103                                         CORBA::Long           theShapeType,
104                                         CORBA::Boolean        isSorted);
105
106   GEOM::GEOM_Object_ptr GetSubShape (GEOM::GEOM_Object_ptr theMainShape,
107                                      CORBA::Long           theID);
108
109   CORBA::Long GetSubShapeIndex (GEOM::GEOM_Object_ptr theMainShape,
110                                 GEOM::GEOM_Object_ptr theSubShape);
111
112   CORBA::Long GetTopologyIndex (GEOM::GEOM_Object_ptr theMainShape,
113                                 GEOM::GEOM_Object_ptr theSubShape);
114
115   char* GetShapeTypeString (GEOM::GEOM_Object_ptr theShape);
116
117   CORBA::Long NumberOfFaces (GEOM::GEOM_Object_ptr theShape);
118   CORBA::Long NumberOfEdges (GEOM::GEOM_Object_ptr theShape);
119   CORBA::Long NumberOfSubShapes (GEOM::GEOM_Object_ptr theShape,
120                                  const CORBA::Long     theShapeType);
121
122   GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theShape);
123
124   GEOM::ListOfLong* GetFreeFacesIDs (GEOM::GEOM_Object_ptr theShape);
125
126   GEOM::ListOfGO* GetSharedShapes (GEOM::GEOM_Object_ptr theShape1,
127                                    GEOM::GEOM_Object_ptr theShape2,
128                                    CORBA::Long           theShapeType);
129
130   GEOM::ListOfGO* GetSharedShapesMulti (const GEOM::ListOfGO& theShapes,
131                                         CORBA::Long           theShapeType);
132
133   GEOM::ListOfGO* GetShapesOnPlane (GEOM::GEOM_Object_ptr theShape,
134                                     CORBA::Long           theShapeType,
135                                     GEOM::GEOM_Object_ptr theAx1,
136                                     GEOM::shape_state     theState);
137
138   GEOM::ListOfGO* GetShapesOnPlaneWithLocation(GEOM::GEOM_Object_ptr theShape,
139                                                CORBA::Long           theShapeType,
140                                                GEOM::GEOM_Object_ptr theAx1,
141                                                GEOM::GEOM_Object_ptr thePnt,
142                                                GEOM::shape_state     theState);
143
144   GEOM::ListOfGO* GetShapesOnCylinder (GEOM::GEOM_Object_ptr theShape,
145                                        CORBA::Long           theShapeType,
146                                        GEOM::GEOM_Object_ptr theAxis,
147                                        CORBA::Double         theRadius,
148                                        GEOM::shape_state     theState);
149
150   GEOM::ListOfGO* GetShapesOnCylinderWithLocation (GEOM::GEOM_Object_ptr theShape,
151                                                    CORBA::Long           theShapeType,
152                                                    GEOM::GEOM_Object_ptr theAxis,
153                                                    GEOM::GEOM_Object_ptr thePnt,
154                                                    CORBA::Double         theRadius,
155                                                    GEOM::shape_state     theState);
156
157   GEOM::ListOfGO* GetShapesOnSphere (GEOM::GEOM_Object_ptr theShape,
158                                      CORBA::Long           theShapeType,
159                                      GEOM::GEOM_Object_ptr theCenter,
160                                      CORBA::Double         theRadius,
161                                      GEOM::shape_state     theState);
162
163   GEOM::ListOfGO* GetShapesOnQuadrangle (GEOM::GEOM_Object_ptr theShape,
164                                          CORBA::Long           theShapeType,
165                                          GEOM::GEOM_Object_ptr theTopLeftPoint,
166                                          GEOM::GEOM_Object_ptr theTopRigthPoint,
167                                          GEOM::GEOM_Object_ptr theBottomLeftPoint,
168                                          GEOM::GEOM_Object_ptr theBottomRigthPoint,
169                                          GEOM::shape_state     theState);
170
171   GEOM::ListOfLong* GetShapesOnPlaneIDs (GEOM::GEOM_Object_ptr theShape,
172                                          CORBA::Long           theShapeType,
173                                          GEOM::GEOM_Object_ptr theAx1,
174                                          GEOM::shape_state     theState);
175
176   GEOM::ListOfLong* GetShapesOnPlaneWithLocationIDs (GEOM::GEOM_Object_ptr theShape,
177                                                      CORBA::Long           theShapeType,
178                                                      GEOM::GEOM_Object_ptr theAx1,
179                                                      GEOM::GEOM_Object_ptr thePnt,
180                                                      GEOM::shape_state     theState);
181
182   GEOM::ListOfLong* GetShapesOnCylinderIDs (GEOM::GEOM_Object_ptr theShape,
183                                             CORBA::Long           theShapeType,
184                                             GEOM::GEOM_Object_ptr theAxis,
185                                             CORBA::Double         theRadius,
186                                             GEOM::shape_state     theState);
187
188   GEOM::ListOfLong* GetShapesOnCylinderWithLocationIDs (GEOM::GEOM_Object_ptr theShape,
189                                                         CORBA::Long           theShapeType,
190                                                         GEOM::GEOM_Object_ptr theAxis,
191                                                         GEOM::GEOM_Object_ptr thePnt,
192                                                         CORBA::Double         theRadius,
193                                                         GEOM::shape_state     theState);
194
195   GEOM::ListOfLong* GetShapesOnSphereIDs (GEOM::GEOM_Object_ptr theShape,
196                                           CORBA::Long           theShapeType,
197                                           GEOM::GEOM_Object_ptr theCenter,
198                                           CORBA::Double         theRadius,
199                                           GEOM::shape_state     theState);
200
201   GEOM::ListOfLong* GetShapesOnQuadrangleIDs (GEOM::GEOM_Object_ptr theShape,
202                                               CORBA::Long           theShapeType,
203                                               GEOM::GEOM_Object_ptr theTopLeftPoint,
204                                               GEOM::GEOM_Object_ptr theTopRigthPoint,
205                                               GEOM::GEOM_Object_ptr theBottomLeftPoint,
206                                               GEOM::GEOM_Object_ptr theBottomRigthPoint,
207                                               GEOM::shape_state     theState);
208
209   GEOM::ListOfGO* GetShapesOnBox (GEOM::GEOM_Object_ptr theBox,
210                                   GEOM::GEOM_Object_ptr theShape,
211                                   CORBA::Long           theShapeType,
212                                   GEOM::shape_state     theState);
213
214   GEOM::ListOfLong* GetShapesOnBoxIDs (GEOM::GEOM_Object_ptr theBox,
215                                        GEOM::GEOM_Object_ptr theShape,
216                                        CORBA::Long           theShapeType,
217                                        GEOM::shape_state     theState);
218
219   GEOM::ListOfGO* GetShapesOnShape (GEOM::GEOM_Object_ptr theSheckShape,
220                                     GEOM::GEOM_Object_ptr theShape,
221                                     CORBA::Short          theShapeType,
222                                     GEOM::shape_state     theState);
223
224   GEOM::GEOM_Object_ptr GetShapesOnShapeAsCompound
225                                    (GEOM::GEOM_Object_ptr theSheckShape,
226                                     GEOM::GEOM_Object_ptr theShape,
227                                     CORBA::Short          theShapeType,
228                                     GEOM::shape_state     theState);
229
230   GEOM::ListOfLong* GetShapesOnShapeIDs (GEOM::GEOM_Object_ptr theCheckShape,
231                                          GEOM::GEOM_Object_ptr theShape,
232                                          CORBA::Short          theShapeType,
233                                          GEOM::shape_state     theState);
234
235   GEOM::GEOM_Object_ptr GetInPlace (GEOM::GEOM_Object_ptr theShapeWhere,
236                                     GEOM::GEOM_Object_ptr theShapeWhat);
237
238   GEOM::GEOM_Object_ptr GetInPlaceByHistory (GEOM::GEOM_Object_ptr theShapeWhere,
239                                              GEOM::GEOM_Object_ptr theShapeWhat);
240
241   GEOM::GEOM_Object_ptr GetSame (GEOM::GEOM_Object_ptr theShapeWhere,
242                                  GEOM::GEOM_Object_ptr theShapeWhat);
243
244   ::GEOMImpl_IShapesOperations* GetOperations()
245   { return (::GEOMImpl_IShapesOperations*)GetImpl(); }
246 };
247
248 #endif