Salome HOME
Notebook: processed creation of objects dependent on another objects.
[modules/geom.git] / src / GEOM_I / GEOM_IShapesOperations_i.hh
1 //  Copyright (C) 2007-2008  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
48   GEOM::GEOM_Object_ptr MakeWire (const GEOM::ListOfGO& theEdgesAndWires,
49                                   const CORBA::Double   theTolerance);
50
51   GEOM::GEOM_Object_ptr MakeFace (GEOM::GEOM_Object_ptr theWire,
52                                   CORBA::Boolean  isPlanarWanted);
53
54   GEOM::GEOM_Object_ptr MakeFaceWires (const GEOM::ListOfGO& theWires,
55                                        CORBA::Boolean  isPlanarWanted);
56
57   GEOM::GEOM_Object_ptr MakeShell (const GEOM::ListOfGO& theFacesAndShells);
58
59   GEOM::GEOM_Object_ptr MakeSolidShell (GEOM::GEOM_Object_ptr theShell);
60
61   GEOM::GEOM_Object_ptr MakeSolidShells (const GEOM::ListOfGO& theShells);
62
63   GEOM::GEOM_Object_ptr MakeCompound (const GEOM::ListOfGO& theShapes);
64
65   GEOM::GEOM_Object_ptr MakeGlueFaces (GEOM::GEOM_Object_ptr theShape,
66                                        CORBA::Double         theTolerance,
67                                        CORBA::Boolean        doKeepNonSolids);
68
69   GEOM::ListOfGO* GetGlueFaces (GEOM::GEOM_Object_ptr theShape,
70                                 CORBA::Double         theTolerance);
71
72   GEOM::GEOM_Object_ptr MakeGlueFacesByList (GEOM::GEOM_Object_ptr theShape,
73                                              CORBA::Double         theTolerance,
74                                              const GEOM::ListOfGO& theFaces,
75                                                  CORBA::Boolean  doKeepNonSolids);
76
77
78   GEOM::ListOfGO* MakeExplode (GEOM::GEOM_Object_ptr theShape,
79                                CORBA::Long           theShapeType,
80                                CORBA::Boolean  isSorted);
81
82   GEOM::ListOfLong* SubShapeAllIDs (GEOM::GEOM_Object_ptr theShape,
83                                     CORBA::Long           theShapeType,
84                                     CORBA::Boolean  isSorted);
85
86   GEOM::GEOM_Object_ptr GetSubShape (GEOM::GEOM_Object_ptr theMainShape,
87                                      CORBA::Long           theID);
88
89   CORBA::Long GetSubShapeIndex (GEOM::GEOM_Object_ptr theMainShape,
90                                 GEOM::GEOM_Object_ptr theSubShape);
91
92   CORBA::Long GetTopologyIndex (GEOM::GEOM_Object_ptr theMainShape,
93                                 GEOM::GEOM_Object_ptr theSubShape);
94
95   char* GetShapeTypeString (GEOM::GEOM_Object_ptr theShape);
96
97   CORBA::Long NumberOfFaces (GEOM::GEOM_Object_ptr theShape);
98   CORBA::Long NumberOfEdges (GEOM::GEOM_Object_ptr theShape);
99   CORBA::Long NumberOfSubShapes (GEOM::GEOM_Object_ptr theShape,
100                                  const CORBA::Long     theShapeType);
101
102   GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theShape);
103
104   GEOM::ListOfLong* GetFreeFacesIDs (GEOM::GEOM_Object_ptr theShape);
105
106   GEOM::ListOfGO* GetSharedShapes (GEOM::GEOM_Object_ptr theShape1,
107                                    GEOM::GEOM_Object_ptr theShape2,
108                                    CORBA::Long           theShapeType);
109
110   GEOM::ListOfGO* GetShapesOnPlane (GEOM::GEOM_Object_ptr theShape,
111                                     CORBA::Long           theShapeType,
112                                     GEOM::GEOM_Object_ptr theAx1,
113                                     GEOM::shape_state     theState);
114
115   GEOM::ListOfGO* GetShapesOnPlaneWithLocation(GEOM::GEOM_Object_ptr theShape,
116                                                CORBA::Long           theShapeType,
117                                                GEOM::GEOM_Object_ptr theAx1,
118                                                GEOM::GEOM_Object_ptr thePnt,
119                                                GEOM::shape_state     theState);
120
121   GEOM::ListOfGO* GetShapesOnCylinder (GEOM::GEOM_Object_ptr theShape,
122                                        CORBA::Long           theShapeType,
123                                        GEOM::GEOM_Object_ptr theAxis,
124                                        CORBA::Double         theRadius,
125                                        GEOM::shape_state     theState);
126
127   GEOM::ListOfGO* GetShapesOnSphere (GEOM::GEOM_Object_ptr theShape,
128                                      CORBA::Long           theShapeType,
129                                      GEOM::GEOM_Object_ptr theCenter,
130                                      CORBA::Double         theRadius,
131                                      GEOM::shape_state     theState);
132
133   GEOM::ListOfGO* GetShapesOnQuadrangle (GEOM::GEOM_Object_ptr theShape,
134                                          CORBA::Long           theShapeType,
135                                          GEOM::GEOM_Object_ptr theTopLeftPoint,
136                                          GEOM::GEOM_Object_ptr theTopRigthPoint,
137                                          GEOM::GEOM_Object_ptr theBottomLeftPoint,
138                                          GEOM::GEOM_Object_ptr theBottomRigthPoint,
139                                          GEOM::shape_state     theState);
140
141   GEOM::ListOfLong* GetShapesOnPlaneIDs (GEOM::GEOM_Object_ptr theShape,
142                                          CORBA::Long           theShapeType,
143                                          GEOM::GEOM_Object_ptr theAx1,
144                                          GEOM::shape_state     theState);
145
146   GEOM::ListOfLong* GetShapesOnPlaneWithLocationIDs (GEOM::GEOM_Object_ptr theShape,
147                                                      CORBA::Long           theShapeType,
148                                                      GEOM::GEOM_Object_ptr theAx1,
149                                                      GEOM::GEOM_Object_ptr thePnt,
150                                                      GEOM::shape_state     theState);
151
152   GEOM::ListOfLong* GetShapesOnCylinderIDs (GEOM::GEOM_Object_ptr theShape,
153                                             CORBA::Long           theShapeType,
154                                             GEOM::GEOM_Object_ptr theAxis,
155                                             CORBA::Double         theRadius,
156                                             GEOM::shape_state     theState);
157
158   GEOM::ListOfLong* GetShapesOnSphereIDs (GEOM::GEOM_Object_ptr theShape,
159                                           CORBA::Long           theShapeType,
160                                           GEOM::GEOM_Object_ptr theCenter,
161                                           CORBA::Double         theRadius,
162                                           GEOM::shape_state     theState);
163
164   GEOM::ListOfLong* GetShapesOnQuadrangleIDs (GEOM::GEOM_Object_ptr theShape,
165                                               CORBA::Long           theShapeType,
166                                               GEOM::GEOM_Object_ptr theTopLeftPoint,
167                                               GEOM::GEOM_Object_ptr theTopRigthPoint,
168                                               GEOM::GEOM_Object_ptr theBottomLeftPoint,
169                                               GEOM::GEOM_Object_ptr theBottomRigthPoint,
170                                               GEOM::shape_state     theState);
171
172   GEOM::ListOfGO* GetShapesOnBox (GEOM::GEOM_Object_ptr theBox,
173                                   GEOM::GEOM_Object_ptr theShape,
174                                   CORBA::Long           theShapeType,
175                                   GEOM::shape_state     theState);
176
177   GEOM::ListOfLong* GetShapesOnBoxIDs (GEOM::GEOM_Object_ptr theBox,
178                                        GEOM::GEOM_Object_ptr theShape,
179                                        CORBA::Long           theShapeType,
180                                        GEOM::shape_state     theState);
181
182   GEOM::ListOfGO* GetShapesOnShape (GEOM::GEOM_Object_ptr theSheckShape,
183                                     GEOM::GEOM_Object_ptr theShape,
184                                     CORBA::Short          theShapeType,
185                                     GEOM::shape_state     theState);
186
187   GEOM::GEOM_Object_ptr GetShapesOnShapeAsCompound
188                                    (GEOM::GEOM_Object_ptr theSheckShape,
189                                     GEOM::GEOM_Object_ptr theShape,
190                                     CORBA::Short          theShapeType,
191                                     GEOM::shape_state     theState);
192
193   GEOM::ListOfLong* GetShapesOnShapeIDs (GEOM::GEOM_Object_ptr theCheckShape,
194                                          GEOM::GEOM_Object_ptr theShape,
195                                          CORBA::Short          theShapeType,
196                                          GEOM::shape_state     theState);
197
198   GEOM::GEOM_Object_ptr GetInPlace (GEOM::GEOM_Object_ptr theShapeWhere,
199                                     GEOM::GEOM_Object_ptr theShapeWhat);
200
201   GEOM::GEOM_Object_ptr GetInPlaceByHistory (GEOM::GEOM_Object_ptr theShapeWhere,
202                                              GEOM::GEOM_Object_ptr theShapeWhat);
203
204   GEOM::GEOM_Object_ptr GetSame (GEOM::GEOM_Object_ptr theShapeWhere,
205                                  GEOM::GEOM_Object_ptr theShapeWhat);
206
207   ::GEOMImpl_IShapesOperations* GetOperations()
208   { return (::GEOMImpl_IShapesOperations*)GetImpl(); }
209 };
210
211 #endif