Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOM_I / GEOM_IHealingOperations_i.hh
1 // Copyright (C) 2007-2012  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_IHealingOperations_i_HeaderFile
23 #define _GEOM_IHealingOperations_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_IHealingOperations.hxx"
34
35 #include <TColStd_HArray1OfExtendedString.hxx>
36 #include <TColStd_HArray1OfInteger.hxx>
37
38 class GEOM_I_EXPORT GEOM_IHealingOperations_i :
39     public virtual POA_GEOM::GEOM_IHealingOperations,
40     public virtual GEOM_IOperations_i
41 {
42  public:
43    GEOM_IHealingOperations_i(PortableServer::POA_ptr thePOA,
44                              GEOM::GEOM_Gen_ptr theEngine,
45                              ::GEOMImpl_IHealingOperations* theImpl);
46    ~GEOM_IHealingOperations_i();
47
48    GEOM::GEOM_Object_ptr ProcessShape(GEOM::GEOM_Object_ptr theObject,
49                                       const GEOM::string_array& theOperations,
50                                       const GEOM::string_array& theParams,
51                                       const GEOM::string_array& theValues);
52
53    void GetShapeProcessParameters(GEOM::string_array_out theOperations,
54                                   GEOM::string_array_out theParams,
55                                   GEOM::string_array_out theValues);
56
57    void GetOperatorParameters (const char* theOperator,
58                                GEOM::string_array_out theParams,
59                                GEOM::string_array_out theValues);
60
61    GEOM::GEOM_Object_ptr SuppressFaces(GEOM::GEOM_Object_ptr theObject,
62                                        const GEOM::short_array& theFaces);
63
64    GEOM::GEOM_Object_ptr CloseContour (GEOM::GEOM_Object_ptr theObject,
65                                        const GEOM::short_array& theWires,
66                                        CORBA::Boolean isCommonVertex);
67
68    GEOM::GEOM_Object_ptr RemoveIntWires (GEOM::GEOM_Object_ptr theObject,
69                                          const GEOM::short_array& theWires);
70
71    GEOM::GEOM_Object_ptr FillHoles (GEOM::GEOM_Object_ptr theObject,
72                                     const GEOM::short_array& theWires);
73
74    GEOM::GEOM_Object_ptr Sew (GEOM::GEOM_Object_ptr theObject,
75                               CORBA::Double theTolerance);
76
77    GEOM::GEOM_Object_ptr DivideEdge (GEOM::GEOM_Object_ptr theObject,
78                                      CORBA::Short theIndex,
79                                      CORBA::Double theValue,
80                                      CORBA::Boolean isByParameter);
81
82    GEOM::GEOM_Object_ptr FuseCollinearEdgesWithinWire (GEOM::GEOM_Object_ptr theWire,
83                                                        const GEOM::ListOfGO& theVertices);
84
85    CORBA::Boolean GetFreeBoundary(GEOM::GEOM_Object_ptr theObject,
86                                   GEOM::ListOfGO_out theClosedWires,
87                                   GEOM::ListOfGO_out theOpenWires );
88
89    GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theObject);
90    GEOM::GEOM_Object_ptr ChangeOrientationCopy (GEOM::GEOM_Object_ptr theObject);
91
92    GEOM::GEOM_Object_ptr LimitTolerance (GEOM::GEOM_Object_ptr theObject,
93                                          CORBA::Double theTolerance);
94
95    ::GEOMImpl_IHealingOperations* GetOperations() { return (::GEOMImpl_IHealingOperations*)GetImpl(); }
96
97 private:
98          Handle(TColStd_HArray1OfExtendedString) Convert( const GEOM::string_array& );
99          Handle(TColStd_HArray1OfInteger)        Convert( const GEOM::short_array& );
100
101 };
102
103 #endif