Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOM_I / GEOM_ILocalOperations_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
21 #ifndef _GEOM_ILocalOperations_i_HeaderFile
22 #define _GEOM_ILocalOperations_i_HeaderFile
23
24 #include "GEOMImpl_Gen.hxx"
25
26 #include <SALOMEconfig.h>
27
28 #include CORBA_SERVER_HEADER(GEOM_Gen)
29 #include "GEOM_IOperations_i.hh"
30 #include "GEOM_Object_i.hh"
31
32 #include "GEOMImpl_ILocalOperations.hxx"
33
34 class GEOM_I_EXPORT GEOM_ILocalOperations_i : 
35     public virtual POA_GEOM::GEOM_ILocalOperations,
36     public virtual GEOM_IOperations_i
37 {
38  public:
39   GEOM_ILocalOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
40                            ::GEOMImpl_ILocalOperations* theImpl);
41   ~GEOM_ILocalOperations_i();
42
43   GEOM::GEOM_Object_ptr MakeFilletAll   (GEOM::GEOM_Object_ptr theShape,
44                                          CORBA::Double theR);
45
46   GEOM::GEOM_Object_ptr MakeFilletEdges (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
47                                          const GEOM::ListOfLong& theEdges);
48
49   GEOM::GEOM_Object_ptr MakeFilletEdgesR1R2 (GEOM::GEOM_Object_ptr theShape,
50                                              CORBA::Double theR1,
51                                              CORBA::Double theR2,
52                                              const GEOM::ListOfLong& theEdges);
53
54   GEOM::GEOM_Object_ptr MakeFilletFaces (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
55                                          const GEOM::ListOfLong& theFaces);
56
57   GEOM::GEOM_Object_ptr MakeFilletFacesR1R2 (GEOM::GEOM_Object_ptr theShape,
58                                              CORBA::Double theR1,
59                                              CORBA::Double theR2,
60                                              const GEOM::ListOfLong& theFaces);
61
62   GEOM::GEOM_Object_ptr MakeChamferAll   (GEOM::GEOM_Object_ptr theShape, CORBA::Double theD);
63
64   GEOM::GEOM_Object_ptr MakeChamferEdge  (GEOM::GEOM_Object_ptr theShape,
65                                           CORBA::Double theD1, CORBA::Double theD2,
66                                           CORBA::Long theFace1, CORBA::Long theFace2);
67
68   GEOM::GEOM_Object_ptr MakeChamferEdgeAD  (GEOM::GEOM_Object_ptr theShape,
69                                             CORBA::Double theD, CORBA::Double theAngle,
70                                             CORBA::Long theFace1, CORBA::Long theFace2);
71
72   GEOM::GEOM_Object_ptr MakeChamferFaces (GEOM::GEOM_Object_ptr theShape,
73                                           CORBA::Double theD1, CORBA::Double theD2,
74                                           const GEOM::ListOfLong& theFaces);
75
76   GEOM::GEOM_Object_ptr MakeChamferFacesAD (GEOM::GEOM_Object_ptr theShape,
77                                             CORBA::Double theD, CORBA::Double theAngle,
78                                             const GEOM::ListOfLong& theFaces);
79
80   GEOM::GEOM_Object_ptr MakeChamferEdges (GEOM::GEOM_Object_ptr theShape,
81                                           CORBA::Double theD1, CORBA::Double theD2,
82                                           const GEOM::ListOfLong& theEdges);
83
84   GEOM::GEOM_Object_ptr MakeChamferEdgesAD (GEOM::GEOM_Object_ptr theShape,
85                                             CORBA::Double theD, CORBA::Double theAngle,
86                                             const GEOM::ListOfLong& theEdges);
87
88   GEOM::GEOM_Object_ptr MakeArchimede (GEOM::GEOM_Object_ptr theShape,
89                                        CORBA::Double theWeight,
90                                        CORBA::Double theWaterDensity,
91                                        CORBA::Double theMeshingDeflection);
92
93   CORBA::Long GetSubShapeIndex (GEOM::GEOM_Object_ptr theShape,
94                                 GEOM::GEOM_Object_ptr theSubShape);
95
96   ::GEOMImpl_ILocalOperations* GetOperations()
97   { return (::GEOMImpl_ILocalOperations*)GetImpl(); }
98 };
99
100 #endif