Salome HOME
84773c8c4ca0b71ce7a8b8d5e7f101dda9b4b0f2
[modules/geom.git] / src / GEOM_I_Superv / GEOM_Superv_i.hh
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 __GEOM_SUPERV_I_H__
21 #define __GEOM_SUPERV_I_H__
22
23 // IDL headers
24 #include <SALOMEconfig.h>
25 #include CORBA_SERVER_HEADER(GEOM_Superv)
26
27 #include "GEOM_Gen_i.hh"
28 #include "GEOM_List_i.hh"
29
30 class GEOM_Superv_i : public virtual POA_GEOM::GEOM_Superv,
31                       public Engines_Component_i
32 {
33 public:
34   GEOM_Superv_i(CORBA::ORB_ptr orb,
35                 PortableServer::POA_ptr poa,
36                 PortableServer::ObjectId * contId, 
37                 const char *instanceName, 
38                 const char *interfaceName);
39   ~GEOM_Superv_i();
40
41   // generic method to be put in a super class
42   void register_name(char * name);
43   void setGeomEngine();
44
45   void getBasicOp();
46   void get3DPrimOp();
47   void getBoolOp();
48   void getInsOp();
49   void getTransfOp();
50   void getShapesOp();
51   void getBlocksOp();
52   void getCurvesOp();
53   void getLocalOp();
54   void getGroupOp();  
55
56   PortableServer::ServantBase_var GetServant(CORBA::Object_ptr       theObject,
57                                              PortableServer::POA_ptr thePOA);
58
59   //-----------------------------------------------------------------------//
60   // Set current stydy ID                                                  //
61   //-----------------------------------------------------------------------//
62   void SetStudyID( CORBA::Long theId );      
63
64   //-----------------------------------------------------------//
65   // Create ListOfGO and add items to it                       // 
66   //-----------------------------------------------------------//
67   GEOM::GEOM_List_ptr CreateListOfGO();
68   void AddItemToListOfGO(GEOM::GEOM_List_ptr& theList, 
69                          GEOM::GEOM_Object_ptr theObject);
70
71   //-----------------------------------------------------------//
72   // Create ListOfLong and add items to it                     // 
73   //-----------------------------------------------------------//
74   GEOM::GEOM_List_ptr CreateListOfLong();
75   void AddItemToListOfLong(GEOM::GEOM_List_ptr& theList, 
76                            CORBA::Long theObject);
77   
78   //-----------------------------------------------------------//
79   // Create ListOfDouble and add items to it                   // 
80   //-----------------------------------------------------------//
81   GEOM::GEOM_List_ptr CreateListOfDouble();
82   void AddItemToListOfDouble(GEOM::GEOM_List_ptr& theList, 
83                              CORBA::Double theObject);
84
85   //-----------------------------------------------------------------------//
86   // Inherited methods from SALOMEDS::Driver                               //
87   //-----------------------------------------------------------------------//    
88
89   SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
90                           const char* theURL,
91                           CORBA::Boolean isMultiFile);
92
93   SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
94                                const char* theURL,
95                                CORBA::Boolean isMultiFile);
96   
97   CORBA::Boolean Load(SALOMEDS::SComponent_ptr theComponent,
98                       const SALOMEDS::TMPFile& theStream,
99                       const char* theURL,
100                       CORBA::Boolean isMultiFile);
101
102   CORBA::Boolean LoadASCII(SALOMEDS::SComponent_ptr theComponent,
103                            const SALOMEDS::TMPFile& theStream,
104                            const char* theURL,
105                            CORBA::Boolean isMultiFile);
106
107   void Close(SALOMEDS::SComponent_ptr theComponent);
108   char* ComponentDataType();
109
110
111   char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
112                                const char* IORString,
113                                CORBA::Boolean isMultiFile,
114                                CORBA::Boolean isASCII);
115   char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
116                                const char* aLocalPersistentID,
117                                CORBA::Boolean isMultiFile,
118                                CORBA::Boolean isASCII);
119
120   CORBA::Boolean CanPublishInStudy(CORBA::Object_ptr theIOR);
121   SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
122                                        SALOMEDS::SObject_ptr theSObject,
123                                        CORBA::Object_ptr theObject,
124                                        const char* theName) throw (SALOME::SALOME_Exception) ;
125
126   CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
127   SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
128   CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
129   SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
130                                   CORBA::Long theObjectID,
131                                   SALOMEDS::SObject_ptr theObject);
132
133   //-----------------------------------------------------------//
134   // Primitives Construction : BasicOperations                 // 
135   //-----------------------------------------------------------//
136   GEOM::GEOM_Object_ptr MakePointXYZ (CORBA::Double theX,
137                                       CORBA::Double theY,
138                                       CORBA::Double theZ);
139   GEOM::GEOM_Object_ptr MakePointWithReference (GEOM::GEOM_Object_ptr theReference,
140                                                 CORBA::Double theX, 
141                                                 CORBA::Double theY, 
142                                                 CORBA::Double theZ);
143   GEOM::GEOM_Object_ptr MakePointOnCurve (GEOM::GEOM_Object_ptr theRefCurve,
144                                           CORBA::Double theParameter);
145   GEOM::GEOM_Object_ptr MakeTangentOnCurve (GEOM::GEOM_Object_ptr theRefCurve,
146                                              CORBA::Double theParameter);
147   GEOM::GEOM_Object_ptr MakeVectorDXDYDZ (CORBA::Double theDX,
148                                           CORBA::Double theDY,
149                                           CORBA::Double theDZ);
150   GEOM::GEOM_Object_ptr MakeVectorTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
151                                           GEOM::GEOM_Object_ptr thePnt2);
152   GEOM::GEOM_Object_ptr MakeLineTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
153                                         GEOM::GEOM_Object_ptr thePnt2);
154   GEOM::GEOM_Object_ptr MakePlaneThreePnt (GEOM::GEOM_Object_ptr thePnt1,
155                                            GEOM::GEOM_Object_ptr thePnt2,
156                                            GEOM::GEOM_Object_ptr thePnt3,
157                                            CORBA::Double theTrimSize);
158   GEOM::GEOM_Object_ptr MakePlanePntVec (GEOM::GEOM_Object_ptr thePnt,
159                                          GEOM::GEOM_Object_ptr theVec,
160                                          CORBA::Double theTrimSize);
161   GEOM::GEOM_Object_ptr MakePlaneFace (GEOM::GEOM_Object_ptr theFace,
162                                        CORBA::Double theTrimSize);
163   GEOM::GEOM_Object_ptr MakeMarker (CORBA::Double theOX , CORBA::Double theOY , CORBA::Double theOZ,
164                                     CORBA::Double theXDX, CORBA::Double theXDY, CORBA::Double theXDZ,
165                                     CORBA::Double theYDX, CORBA::Double theYDY, CORBA::Double theYDZ);
166
167   GEOM::GEOM_Object_ptr MakeTangentPlaneOnFace (GEOM::GEOM_Object_ptr theFace, 
168                                                  CORBA::Double theParameterU,
169                                                  CORBA::Double theParameterV,
170                                                  CORBA::Double theTrimSize);
171
172   //-----------------------------------------------------------//
173   // Primitives Construction : 3DPrimOperations                //
174   //-----------------------------------------------------------//
175   GEOM::GEOM_Object_ptr MakeBox (CORBA::Double theX1,
176                                  CORBA::Double theY1,
177                                  CORBA::Double theZ1,
178                                  CORBA::Double theX2,
179                                  CORBA::Double theY2,
180                                  CORBA::Double theZ2);
181   GEOM::GEOM_Object_ptr MakeBoxDXDYDZ (CORBA::Double theDX, 
182                                        CORBA::Double theDY, 
183                                        CORBA::Double theDZ);
184   GEOM::GEOM_Object_ptr MakeBoxTwoPnt (GEOM::GEOM_Object_ptr thePnt1, 
185                                        GEOM::GEOM_Object_ptr thePnt2);
186   GEOM::GEOM_Object_ptr MakeCylinderPntVecRH (GEOM::GEOM_Object_ptr thePnt,
187                                               GEOM::GEOM_Object_ptr theAxis,
188                                               CORBA::Double theRadius,
189                                               CORBA::Double theHeight);
190   GEOM::GEOM_Object_ptr MakeCylinderRH (CORBA::Double theR, 
191                                         CORBA::Double theH);
192   GEOM::GEOM_Object_ptr MakeSphere (CORBA::Double theX,
193                                     CORBA::Double theY,
194                                     CORBA::Double theZ,
195                                     CORBA::Double theRadius);
196   GEOM::GEOM_Object_ptr MakeSphereR (CORBA::Double theR);
197   GEOM::GEOM_Object_ptr MakeSpherePntR (GEOM::GEOM_Object_ptr thePnt, 
198                                         CORBA::Double theR);
199   GEOM::GEOM_Object_ptr MakeTorusPntVecRR (GEOM::GEOM_Object_ptr thePnt,
200                                            GEOM::GEOM_Object_ptr theVec,
201                                            CORBA::Double theRMajor,
202                                            CORBA::Double theRMinor);
203   GEOM::GEOM_Object_ptr MakeTorusRR (CORBA::Double theRMajor,
204                                      CORBA::Double theRMinor);
205   GEOM::GEOM_Object_ptr MakeConePntVecR1R2H (GEOM::GEOM_Object_ptr thePnt,
206                                              GEOM::GEOM_Object_ptr theAxis,
207                                              CORBA::Double theR1,
208                                              CORBA::Double theR2,
209                                              CORBA::Double theHeight);
210   GEOM::GEOM_Object_ptr MakeConeR1R2H (CORBA::Double theR1, 
211                                        CORBA::Double theR2, 
212                                        CORBA::Double theHeight);
213   GEOM::GEOM_Object_ptr MakePrismVecH (GEOM::GEOM_Object_ptr theBase,
214                                        GEOM::GEOM_Object_ptr theVec,
215                                        CORBA::Double         theH);
216   GEOM::GEOM_Object_ptr MakePrismTwoPnt (GEOM::GEOM_Object_ptr theBase,
217                                          GEOM::GEOM_Object_ptr thePoint1,
218                                          GEOM::GEOM_Object_ptr thePoint2);
219   GEOM::GEOM_Object_ptr MakePipe (GEOM::GEOM_Object_ptr theBase, 
220                                   GEOM::GEOM_Object_ptr thePath);
221   GEOM::GEOM_Object_ptr MakeRevolutionAxisAngle (GEOM::GEOM_Object_ptr theBase,
222                                                  GEOM::GEOM_Object_ptr theAxis,
223                                                  CORBA::Double theAngle);
224   GEOM::GEOM_Object_ptr MakeFilling (GEOM::GEOM_Object_ptr theShape,
225                                      CORBA::Long theMinDeg, CORBA::Long theMaxDeg,
226                                      CORBA::Double theTol2D, CORBA::Double theTol3D,
227                                      CORBA::Long theNbIter);
228
229   GEOM::GEOM_Object_ptr MakeThruSections(const GEOM::ListOfGO& theSeqSections,
230                                          CORBA::Boolean theModeSolid,
231                                          CORBA::Double thePreci,
232                                          CORBA::Boolean theRuled);
233   
234   GEOM::GEOM_Object_ptr MakePipeWithDifferentSections(const GEOM::ListOfGO& theBases,
235                                                       const GEOM::ListOfGO& theLocations,
236                                                       GEOM::GEOM_Object_ptr thePath,
237                                                       CORBA::Boolean theWithContact,
238                                                       CORBA::Boolean theWithCorrections);
239   
240   GEOM::GEOM_Object_ptr MakePipeWithShellSections(const GEOM::ListOfGO& theBases,
241                                                   const GEOM::ListOfGO& theSubBases,
242                                                   const GEOM::ListOfGO& theLocations,
243                                                   GEOM::GEOM_Object_ptr thePath,
244                                                   CORBA::Boolean theWithContact,
245                                                   CORBA::Boolean theWithCorrections);
246   
247   //-----------------------------------------------------------//
248   // BooleanOperations                                         //
249   //-----------------------------------------------------------//
250   GEOM::GEOM_Object_ptr MakeBoolean (GEOM::GEOM_Object_ptr theShape1,
251                                      GEOM::GEOM_Object_ptr theShape2,
252                                      CORBA::Long theOperation);
253   GEOM::GEOM_Object_ptr MakeFuse (GEOM::GEOM_Object_ptr theShape1,
254                                   GEOM::GEOM_Object_ptr theShape2);
255   GEOM::GEOM_Object_ptr MakePartition (GEOM::GEOM_List_ptr   theShapes,
256                                        GEOM::GEOM_List_ptr   theTools,
257                                        GEOM::GEOM_List_ptr   theKeepInside,
258                                        GEOM::GEOM_List_ptr   theRemoveInside,
259                                        CORBA::Short      theLimit,
260                                        CORBA::Boolean    theRemoveWebs,
261                                        GEOM::GEOM_List_ptr theMaterials,
262                                        CORBA::Short theKeepNonlimitShapes);
263   GEOM::GEOM_Object_ptr MakeHalfPartition (GEOM::GEOM_Object_ptr theShape,
264                                            GEOM::GEOM_Object_ptr thePlane);
265
266   //-----------------------------------------------------------//
267   // InsertOperations                                          //
268   //-----------------------------------------------------------//
269   GEOM::GEOM_Object_ptr MakeCopy (GEOM::GEOM_Object_ptr theOriginal);
270   void Export (GEOM::GEOM_Object_ptr theObject, 
271                const char*           theFileName, 
272                const char*           theFormatName);
273   GEOM::GEOM_Object_ptr Import (const char* theFileName, 
274                                 const char* theFormatName);
275   void ImportTranslators (GEOM::string_array_out theFormats,
276                           GEOM::string_array_out thePatterns);
277   void ExportTranslators (GEOM::string_array_out theFormats,
278                           GEOM::string_array_out thePatterns);
279
280   //-----------------------------------------------------------//
281   // TransformOperations                                       //
282   //-----------------------------------------------------------//
283   GEOM::GEOM_Object_ptr TranslateTwoPoints (GEOM::GEOM_Object_ptr theObject,
284                                             GEOM::GEOM_Object_ptr thePoint1,
285                                             GEOM::GEOM_Object_ptr thePoint2);
286   GEOM::GEOM_Object_ptr TranslateTwoPointsCopy (GEOM::GEOM_Object_ptr theObject,
287                                                 GEOM::GEOM_Object_ptr thePoint1,
288                                                 GEOM::GEOM_Object_ptr thePoint2);
289   GEOM::GEOM_Object_ptr TranslateDXDYDZ (GEOM::GEOM_Object_ptr theObject,
290                                          CORBA::Double theDX, 
291                                          CORBA::Double theDY, 
292                                          CORBA::Double theDZ);
293   GEOM::GEOM_Object_ptr TranslateDXDYDZCopy (GEOM::GEOM_Object_ptr theObject,
294                                              CORBA::Double theDX, 
295                                              CORBA::Double theDY, 
296                                              CORBA::Double theDZ);
297   GEOM::GEOM_Object_ptr TranslateVector (GEOM::GEOM_Object_ptr theObject,
298                                          GEOM::GEOM_Object_ptr theVector);
299   GEOM::GEOM_Object_ptr TranslateVectorCopy (GEOM::GEOM_Object_ptr theObject,
300                                              GEOM::GEOM_Object_ptr theVector);
301   GEOM::GEOM_Object_ptr MultiTranslate1D (GEOM::GEOM_Object_ptr theObject,
302                                           GEOM::GEOM_Object_ptr theVector,
303                                           CORBA::Double theStep,
304                                           CORBA::Long theNbTimes);
305   GEOM::GEOM_Object_ptr MultiTranslate2D (GEOM::GEOM_Object_ptr theObject,
306                                           GEOM::GEOM_Object_ptr theVector1,
307                                           CORBA::Double theStep1,
308                                           CORBA::Long theNbTimes1,
309                                           GEOM::GEOM_Object_ptr theVector2,
310                                           CORBA::Double theStep2,
311                                           CORBA::Long theNbTimes2);
312   GEOM::GEOM_Object_ptr Rotate (GEOM::GEOM_Object_ptr theObject,
313                                 GEOM::GEOM_Object_ptr theAxis,
314                                 CORBA::Double theAngle);
315   GEOM::GEOM_Object_ptr RotateCopy (GEOM::GEOM_Object_ptr theObject,
316                                     GEOM::GEOM_Object_ptr theAxis,
317                                     CORBA::Double theAngle);
318
319   GEOM::GEOM_Object_ptr RotateThreePoints (GEOM::GEOM_Object_ptr theObject,
320                                            GEOM::GEOM_Object_ptr theCentPoint,
321                                            GEOM::GEOM_Object_ptr thePoint1,
322                                            GEOM::GEOM_Object_ptr thePoint2);
323
324   GEOM::GEOM_Object_ptr RotateThreePointsCopy (GEOM::GEOM_Object_ptr theObject,
325                                                GEOM::GEOM_Object_ptr theCentPoint,
326                                                GEOM::GEOM_Object_ptr thePoint1,
327                                                GEOM::GEOM_Object_ptr thePoint2);
328
329   GEOM::GEOM_Object_ptr MultiRotate1D (GEOM::GEOM_Object_ptr theObject,
330                                        GEOM::GEOM_Object_ptr theAxis,
331                                        CORBA::Long theNbTimes);
332   GEOM::GEOM_Object_ptr MultiRotate2D (GEOM::GEOM_Object_ptr theObject,
333                                        GEOM::GEOM_Object_ptr theAxis,
334                                        CORBA::Double theAngle,
335                                        CORBA::Long theNbTimes1,
336                                        CORBA::Double theStep,
337                                        CORBA::Long theNbTimes2);
338   GEOM::GEOM_Object_ptr MirrorPlane (GEOM::GEOM_Object_ptr theObject, 
339                                      GEOM::GEOM_Object_ptr thePlane);
340   GEOM::GEOM_Object_ptr MirrorPlaneCopy (GEOM::GEOM_Object_ptr theObject, 
341                                          GEOM::GEOM_Object_ptr thePlane);
342   GEOM::GEOM_Object_ptr MirrorAxis (GEOM::GEOM_Object_ptr theObject, 
343                                     GEOM::GEOM_Object_ptr theAxis);
344   GEOM::GEOM_Object_ptr MirrorAxisCopy (GEOM::GEOM_Object_ptr theObject, 
345                                         GEOM::GEOM_Object_ptr theAxis);
346   GEOM::GEOM_Object_ptr MirrorPoint (GEOM::GEOM_Object_ptr theObject, 
347                                      GEOM::GEOM_Object_ptr thePoint);
348   GEOM::GEOM_Object_ptr MirrorPointCopy (GEOM::GEOM_Object_ptr theObject, 
349                                          GEOM::GEOM_Object_ptr thePoint);
350   GEOM::GEOM_Object_ptr OffsetShape (GEOM::GEOM_Object_ptr theObject, 
351                                      CORBA::Double theOffset);
352   GEOM::GEOM_Object_ptr OffsetShapeCopy (GEOM::GEOM_Object_ptr theObject, 
353                                          CORBA::Double theOffset);
354   GEOM::GEOM_Object_ptr ScaleShape (GEOM::GEOM_Object_ptr theObject, 
355                                     GEOM::GEOM_Object_ptr thePoint,
356                                     CORBA::Double theFactor);
357   GEOM::GEOM_Object_ptr ScaleShapeCopy (GEOM::GEOM_Object_ptr theObject, 
358                                         GEOM::GEOM_Object_ptr thePoint,
359                                         CORBA::Double theFactor);
360   GEOM::GEOM_Object_ptr PositionShape (GEOM::GEOM_Object_ptr theObject,
361                                        GEOM::GEOM_Object_ptr theStartLCS,
362                                        GEOM::GEOM_Object_ptr theEndLCS);
363   GEOM::GEOM_Object_ptr PositionShapeCopy (GEOM::GEOM_Object_ptr theObject,
364                                            GEOM::GEOM_Object_ptr theStartLCS,
365                                            GEOM::GEOM_Object_ptr theEndLCS);
366
367   //-----------------------------------------------------------//
368   // ShapesOperations                                          //
369   //-----------------------------------------------------------//
370   GEOM::GEOM_Object_ptr MakeEdge (GEOM::GEOM_Object_ptr thePnt1,
371                                   GEOM::GEOM_Object_ptr thePnt2);
372   GEOM::GEOM_Object_ptr MakeWire (GEOM::GEOM_List_ptr theEdgesAndWires);
373   GEOM::GEOM_Object_ptr MakeFace (GEOM::GEOM_Object_ptr theWire,
374                                   CORBA::Boolean isPlanarWanted);
375   GEOM::GEOM_Object_ptr MakeFaceWires (GEOM::GEOM_List_ptr theWires,
376                                        CORBA::Boolean isPlanarWanted);
377   GEOM::GEOM_Object_ptr MakeShell (GEOM::GEOM_List_ptr theFacesAndShells);
378   GEOM::GEOM_Object_ptr MakeSolidShell (GEOM::GEOM_Object_ptr theShell);
379   GEOM::GEOM_Object_ptr MakeSolidShells (GEOM::GEOM_List_ptr theShells);
380   GEOM::GEOM_Object_ptr MakeCompound (GEOM::GEOM_List_ptr theShapes);
381   GEOM::GEOM_Object_ptr MakeGlueFaces (GEOM::GEOM_Object_ptr theShape,
382                                        CORBA::Double theTolerance,
383                                        CORBA::Boolean doKeepNonSolids);
384   GEOM::GEOM_List_ptr GetGlueFaces (GEOM::GEOM_Object_ptr theShape,
385                                     CORBA::Double theTolerance);
386   GEOM::GEOM_Object_ptr MakeGlueFacesByList (GEOM::GEOM_Object_ptr theShape,
387                                              CORBA::Double theTolerance,
388                                              const GEOM::ListOfGO& theFaces,
389                                              CORBA::Boolean doKeepNonSolids);
390   GEOM::GEOM_List_ptr MakeExplode (GEOM::GEOM_Object_ptr theShape,
391                                        CORBA::Long theShapeType,
392                                        CORBA::Boolean isSorted);
393   CORBA::Long NumberOfFaces (GEOM::GEOM_Object_ptr theShape);
394   CORBA::Long NumberOfEdges (GEOM::GEOM_Object_ptr theShape);
395   GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theShape);
396
397   //-----------------------------------------------------------//
398   // BlocksOperations                                          //
399   //-----------------------------------------------------------//
400   GEOM::GEOM_Object_ptr MakeQuad4Vertices (GEOM::GEOM_Object_ptr thePnt1,
401                                            GEOM::GEOM_Object_ptr thePnt2,
402                                            GEOM::GEOM_Object_ptr thePnt3,
403                                            GEOM::GEOM_Object_ptr thePnt4);
404   GEOM::GEOM_Object_ptr MakeQuad (GEOM::GEOM_Object_ptr theEdge1,
405                                   GEOM::GEOM_Object_ptr theEdge2,
406                                   GEOM::GEOM_Object_ptr theEdge3,
407                                   GEOM::GEOM_Object_ptr theEdge4);
408   GEOM::GEOM_Object_ptr MakeQuad2Edges (GEOM::GEOM_Object_ptr theEdge1,
409                                         GEOM::GEOM_Object_ptr theEdge2);
410   GEOM::GEOM_Object_ptr MakeHexa (GEOM::GEOM_Object_ptr theFace1,
411                                   GEOM::GEOM_Object_ptr theFace2,
412                                   GEOM::GEOM_Object_ptr theFace3,
413                                   GEOM::GEOM_Object_ptr theFace4,
414                                   GEOM::GEOM_Object_ptr theFace5,
415                                   GEOM::GEOM_Object_ptr theFace6);
416   GEOM::GEOM_Object_ptr MakeHexa2Faces (GEOM::GEOM_Object_ptr theFace1,
417                                         GEOM::GEOM_Object_ptr theFace2);
418   GEOM::GEOM_Object_ptr GetPoint (GEOM::GEOM_Object_ptr theShape,
419                                   CORBA::Double   theX,
420                                   CORBA::Double   theY,
421                                   CORBA::Double   theZ,
422                                   CORBA::Double   theEpsilon);
423   GEOM::GEOM_Object_ptr GetEdge (GEOM::GEOM_Object_ptr theShape,
424                                  GEOM::GEOM_Object_ptr thePoint1,
425                                  GEOM::GEOM_Object_ptr thePoint2);
426   GEOM::GEOM_Object_ptr GetEdgeNearPoint (GEOM::GEOM_Object_ptr theShape,
427                                           GEOM::GEOM_Object_ptr thePoint);
428   GEOM::GEOM_Object_ptr GetFaceByPoints (GEOM::GEOM_Object_ptr theShape,
429                                          GEOM::GEOM_Object_ptr thePoint1,
430                                          GEOM::GEOM_Object_ptr thePoint2,
431                                          GEOM::GEOM_Object_ptr thePoint3,
432                                          GEOM::GEOM_Object_ptr thePoint4);
433   GEOM::GEOM_Object_ptr GetFaceByEdges (GEOM::GEOM_Object_ptr theShape,
434                                         GEOM::GEOM_Object_ptr theEdge1,
435                                         GEOM::GEOM_Object_ptr theEdge2);
436   GEOM::GEOM_Object_ptr GetOppositeFace (GEOM::GEOM_Object_ptr theBlock,
437                                          GEOM::GEOM_Object_ptr theFace);
438   GEOM::GEOM_Object_ptr GetFaceNearPoint (GEOM::GEOM_Object_ptr theShape,
439                                           GEOM::GEOM_Object_ptr thePoint);
440   GEOM::GEOM_Object_ptr GetFaceByNormale (GEOM::GEOM_Object_ptr theBlock,
441                                           GEOM::GEOM_Object_ptr theVector);
442   CORBA::Boolean IsCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
443                                      CORBA::Long     theMinNbFaces,
444                                      CORBA::Long     theMaxNbFaces,
445                                      CORBA::Long&          theNbBlocks);
446   CORBA::Boolean CheckCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
447                                         GEOM::GEOM_IBlocksOperations::BCErrors_out theErrors);
448   char* PrintBCErrors (GEOM::GEOM_Object_ptr theCompound,
449                        const GEOM::GEOM_IBlocksOperations::BCErrors& theErrors);
450   GEOM::GEOM_List_ptr ExplodeCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
451                                                    CORBA::Long     theMinNbFaces,
452                                                    CORBA::Long     theMaxNbFaces);
453   GEOM::GEOM_Object_ptr GetBlockNearPoint (GEOM::GEOM_Object_ptr theCompound,
454                                            GEOM::GEOM_Object_ptr thePoint);
455   GEOM::GEOM_Object_ptr GetBlockByParts (GEOM::GEOM_Object_ptr theCompound,
456                                          GEOM::GEOM_List_ptr theParts);
457   GEOM::GEOM_List_ptr GetBlocksByParts (GEOM::GEOM_Object_ptr theCompound,
458                                             GEOM::GEOM_List_ptr theParts);
459   GEOM::GEOM_Object_ptr MakeMultiTransformation1D (GEOM::GEOM_Object_ptr theBlock,
460                                                    CORBA::Long     theDirFace1,
461                                                    CORBA::Long     theDirFace2,
462                                                    CORBA::Long     theNbTimes);
463   GEOM::GEOM_Object_ptr MakeMultiTransformation2D (GEOM::GEOM_Object_ptr theBlock,
464                                                    CORBA::Long     theDirFace1U,
465                                                    CORBA::Long     theDirFace2U,
466                                                    CORBA::Long     theNbTimesU,
467                                                    CORBA::Long     theDirFace1V,
468                                                    CORBA::Long     theDirFace2V,
469                                                    CORBA::Long     theNbTimesV);
470
471   //-----------------------------------------------------------//
472   // CurvesOperations                                          //
473   //-----------------------------------------------------------//
474   GEOM::GEOM_Object_ptr MakeCirclePntVecR (GEOM::GEOM_Object_ptr theCenter,
475                                            GEOM::GEOM_Object_ptr theVector,
476                                            CORBA::Double theR);
477   GEOM::GEOM_Object_ptr MakeCircleThreePnt (GEOM::GEOM_Object_ptr thePnt1,
478                                             GEOM::GEOM_Object_ptr thePnt2,
479                                             GEOM::GEOM_Object_ptr thePnt3);
480   GEOM::GEOM_Object_ptr MakeEllipse (GEOM::GEOM_Object_ptr theCenter,
481                                      GEOM::GEOM_Object_ptr theVector,
482                                      CORBA::Double theRMajor, CORBA::Double theRMinor);
483   GEOM::GEOM_Object_ptr MakeArc (GEOM::GEOM_Object_ptr thePnt1,
484                                  GEOM::GEOM_Object_ptr thePnt2,
485                                  GEOM::GEOM_Object_ptr thePnt3);
486   GEOM::GEOM_Object_ptr MakeArcCenter (GEOM::GEOM_Object_ptr theCenter,
487                                        GEOM::GEOM_Object_ptr thePnt1,
488                                        GEOM::GEOM_Object_ptr thePnt2,
489                                        CORBA::Boolean theSense);
490   GEOM::GEOM_Object_ptr MakePolyline (GEOM::GEOM_List_ptr thePoints);
491   GEOM::GEOM_Object_ptr MakeSplineBezier (GEOM::GEOM_List_ptr thePoints);
492   GEOM::GEOM_Object_ptr MakeSplineInterpolation (GEOM::GEOM_List_ptr thePoints);
493   GEOM::GEOM_Object_ptr MakeSketcher (const char* theCommand, 
494                                                 GEOM::GEOM_List_ptr theWorkingPlane);
495
496   //-----------------------------------------------------------//
497   // LocalOperations                                           //
498   //-----------------------------------------------------------//
499   GEOM::GEOM_Object_ptr MakeFilletAll (GEOM::GEOM_Object_ptr theShape,
500                                        CORBA::Double theR);
501   GEOM::GEOM_Object_ptr MakeFilletEdges (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
502                                          GEOM::GEOM_List_ptr theEdges);
503   GEOM::GEOM_Object_ptr MakeFilletFaces (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
504                                          GEOM::GEOM_List_ptr theFaces);
505   GEOM::GEOM_Object_ptr MakeChamferAll (GEOM::GEOM_Object_ptr theShape, CORBA::Double theD);
506   GEOM::GEOM_Object_ptr MakeChamferEdge (GEOM::GEOM_Object_ptr theShape,
507                                          CORBA::Double theD1, CORBA::Double theD2,
508                                          CORBA::Long theFace1, CORBA::Long theFace2);
509   GEOM::GEOM_Object_ptr MakeChamferFaces (GEOM::GEOM_Object_ptr theShape,
510                                           CORBA::Double theD1, CORBA::Double theD2,
511                                           GEOM::GEOM_List_ptr theFaces);
512   GEOM::GEOM_Object_ptr MakeArchimede (GEOM::GEOM_Object_ptr theShape,
513                                        CORBA::Double theWeight,
514                                        CORBA::Double theWaterDensity,
515                                        CORBA::Double theMeshingDeflection);
516   CORBA::Long GetSubShapeIndex (GEOM::GEOM_Object_ptr theShape,
517                                 GEOM::GEOM_Object_ptr theSubShape);
518
519   //-----------------------------------------------------------//
520   // GroupOperations                                           //
521   //-----------------------------------------------------------//
522   GEOM::GEOM_Object_ptr CreateGroup (GEOM::GEOM_Object_ptr theMainShape, 
523                                      CORBA::Long theShapeType);
524   void AddObject (GEOM::GEOM_Object_ptr theGroup, 
525                   CORBA::Long theSubShapeId);
526   void RemoveObject (GEOM::GEOM_Object_ptr theGroup, 
527                      CORBA::Long theSubShapeId);
528   CORBA::Long GetType (GEOM::GEOM_Object_ptr theGroup);
529   GEOM::GEOM_Object_ptr GetMainShape (GEOM::GEOM_Object_ptr theGroup);
530   GEOM::GEOM_List_ptr GetObjects (GEOM::GEOM_Object_ptr theGroup);
531   
532 private:
533   SALOME_NamingService *  name_service; 
534   GEOM::GEOM_Gen_ptr      myGeomEngine;
535   CORBA::Long             myStudyID;
536   CORBA::Long             myLastStudyID; // mkr : PAL10770
537   PortableServer::POA_var myPOA;
538   
539   GEOM::GEOM_IBasicOperations_ptr     myBasicOp;
540   GEOM::GEOM_I3DPrimOperations_ptr    my3DPrimOp;
541   GEOM::GEOM_IBooleanOperations_ptr   myBoolOp;
542   GEOM::GEOM_IInsertOperations_ptr    myInsOp;
543   GEOM::GEOM_ITransformOperations_ptr myTransfOp;
544   GEOM::GEOM_IShapesOperations_ptr    myShapesOp;
545   GEOM::GEOM_IBlocksOperations_ptr    myBlocksOp;
546   GEOM::GEOM_ICurvesOperations_ptr    myCurvesOp;
547   GEOM::GEOM_ILocalOperations_ptr     myLocalOp;
548   GEOM::GEOM_IGroupOperations_ptr     myGroupOp;
549
550 };
551
552 #endif