Salome HOME
Merge branch V7_3_1_BR
[modules/geom.git] / src / GEOM_I / GEOM_IHealingOperations_i.hh
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 #ifndef _GEOM_IHealingOperations_i_HeaderFile
24 #define _GEOM_IHealingOperations_i_HeaderFile
25
26 #include "GEOMImpl_Gen.hxx"
27
28 #include <SALOMEconfig.h>
29
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
33
34 #include "GEOMImpl_IHealingOperations.hxx"
35
36 #include <TColStd_HArray1OfExtendedString.hxx>
37 #include <TColStd_HArray1OfInteger.hxx>
38
39 class GEOM_I_EXPORT GEOM_IHealingOperations_i :
40     public virtual POA_GEOM::GEOM_IHealingOperations,
41     public virtual GEOM_IOperations_i
42 {
43  public:
44    GEOM_IHealingOperations_i(PortableServer::POA_ptr thePOA,
45                              GEOM::GEOM_Gen_ptr theEngine,
46                              ::GEOMImpl_IHealingOperations* theImpl);
47    ~GEOM_IHealingOperations_i();
48
49    GEOM::GEOM_Object_ptr ProcessShape(GEOM::GEOM_Object_ptr theObject,
50                                       const GEOM::string_array& theOperations,
51                                       const GEOM::string_array& theParams,
52                                       const GEOM::string_array& theValues);
53
54    void GetShapeProcessParameters(GEOM::string_array_out theOperations,
55                                   GEOM::string_array_out theParams,
56                                   GEOM::string_array_out theValues);
57
58    void GetOperatorParameters (const char* theOperator,
59                                GEOM::string_array_out theParams,
60                                GEOM::string_array_out theValues);
61
62    GEOM::GEOM_Object_ptr SuppressFaces(GEOM::GEOM_Object_ptr theObject,
63                                        const GEOM::short_array& theFaces);
64
65    GEOM::GEOM_Object_ptr CloseContour (GEOM::GEOM_Object_ptr theObject,
66                                        const GEOM::short_array& theWires,
67                                        CORBA::Boolean isCommonVertex);
68
69    GEOM::GEOM_Object_ptr RemoveIntWires (GEOM::GEOM_Object_ptr theObject,
70                                          const GEOM::short_array& theWires);
71
72    GEOM::GEOM_Object_ptr FillHoles (GEOM::GEOM_Object_ptr theObject,
73                                     const GEOM::short_array& theWires);
74
75    GEOM::GEOM_Object_ptr Sew (GEOM::GEOM_Object_ptr theObject,
76                               CORBA::Double theTolerance);
77
78    GEOM::GEOM_Object_ptr SewAllowNonManifold (GEOM::GEOM_Object_ptr theObject,
79                                               CORBA::Double theTolerance);
80
81    GEOM::GEOM_Object_ptr RemoveInternalFaces (GEOM::GEOM_Object_ptr theCompound);
82
83    GEOM::GEOM_Object_ptr DivideEdge (GEOM::GEOM_Object_ptr theObject,
84                                      CORBA::Short theIndex,
85                                      CORBA::Double theValue,
86                                      CORBA::Boolean isByParameter);
87
88    GEOM::GEOM_Object_ptr FuseCollinearEdgesWithinWire (GEOM::GEOM_Object_ptr theWire,
89                                                        const GEOM::ListOfGO& theVertices);
90
91    CORBA::Boolean GetFreeBoundary(GEOM::GEOM_Object_ptr theObject,
92                                   GEOM::ListOfGO_out theClosedWires,
93                                   GEOM::ListOfGO_out theOpenWires );
94
95    GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theObject);
96    GEOM::GEOM_Object_ptr ChangeOrientationCopy (GEOM::GEOM_Object_ptr theObject);
97
98    GEOM::GEOM_Object_ptr LimitTolerance (GEOM::GEOM_Object_ptr theObject,
99                                          CORBA::Double theTolerance);
100
101    ::GEOMImpl_IHealingOperations* GetOperations() { return (::GEOMImpl_IHealingOperations*)GetImpl(); }
102
103 private:
104          Handle(TColStd_HArray1OfExtendedString) Convert( const GEOM::string_array& );
105          Handle(TColStd_HArray1OfInteger)        Convert( const GEOM::short_array& );
106
107 };
108
109 #endif