Salome HOME
Merge branch V7_3_1_BR
[modules/smesh.git] / src / SMESH_SWIG_WITHIHM / libSMESH_Swig.h
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // SMESH SMESH : GUI for SMESH component
21 // File   : libSMESH_Swig.h
22 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
23 //
24 #ifndef LIBSMESH_SWIG_H
25 #define LIBSMESH_SWIG_H
26
27 #ifdef WIN32
28 #if defined SMESH_SWIG_EXPORTS || defined _libSMESH_Swig_EXPORTS
29   #define SMESH_SWIG_EXPORT __declspec( dllexport )
30  #else
31   #define SMESH_SWIG_EXPORT __declspec( dllimport )
32  #endif
33 #else
34  #define SMESH_SWIG_EXPORT
35 #endif
36
37 // IDL includes
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SALOMEDS)
40
41 class SMESH_SWIG_EXPORT SMESH_Swig
42 {
43 public:
44   SMESH_Swig();
45   ~SMESH_Swig();
46     
47   void                       Init( int );
48
49   const char*                AddNewMesh( const char* );
50
51   const char*                AddNewHypothesis( const char* );
52   const char*                AddNewAlgorithms( const char* );
53
54   void                       SetShape( const char*, const char* );
55
56   void                       SetHypothesis( const char*, const char* );
57   void                       SetAlgorithms( const char*, const char* );
58
59   void                       UnSetHypothesis( const char* );
60
61   const char*                AddSubMesh( const char*, const char*, int );
62   const char*                AddSubMeshOnShape( const char*, const char*, const char*, int );
63
64   void                       CreateAndDisplayActor( const char* );
65
66   void                       SetName( const char*, const char* );
67
68   void                       EraseActor( const char*, const bool allViewers = false );
69
70   /*!
71    * \brief Set mesh icon according to compute status
72     * \param Mesh_Entry - entry of a mesh
73     * \param isComputed - is mesh computed or not
74    */
75   void                       SetMeshIcon( const char*, const bool, const bool );
76
77 private:
78   SALOMEDS::Study_var        myStudy;
79   SALOMEDS::StudyBuilder_var myStudyBuilder;
80   SALOMEDS::SComponent_var   mySComponentMesh;
81 };
82
83 #endif // LIBSMESH_SWIG_H