]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH_SWIG_WITHIHM/libSMESH_Swig.h
Salome HOME
654c3e699c200ba8e0fdec51d6d9d1c0f6dafa8b
[modules/smesh.git] / src / SMESH_SWIG_WITHIHM / libSMESH_Swig.h
1 // Copyright (C) 2007-2016  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 //std includes
42 #include <vector>
43 #include <utility>
44
45 #include <SVTK_Selection.h>
46
47 #include <SVTK_Selection.h>
48
49 typedef enum
50   {
51     Undefined  = -1,
52     Node       = NodeSelection,
53     Cell       = CellSelection,
54     EdgeOfCell = EdgeOfCellSelection,
55     Edge       = EdgeSelection,
56     Face       = FaceSelection,
57     Volume     = VolumeSelection,
58     Actor      = ActorSelection,
59     Elem0D     = Elem0DSelection,
60     Ball       = BallSelection
61   } SelectionMode;
62
63 class SMESH_SWIG_EXPORT SMESH_Swig
64 {
65 public:
66   SMESH_Swig();
67   ~SMESH_Swig();
68     
69   void                       Init( int );
70
71   const char*                AddNewMesh( const char* );
72
73   const char*                AddNewHypothesis( const char* );
74   const char*                AddNewAlgorithms( const char* );
75
76   void                       SetShape( const char*, const char* );
77
78   void                       SetHypothesis( const char*, const char* );
79   void                       SetAlgorithms( const char*, const char* );
80
81   void                       UnSetHypothesis( const char* );
82
83   const char*                AddSubMesh( const char*, const char*, int );
84   const char*                AddSubMeshOnShape( const char*, const char*, const char*, int );
85
86   void                       CreateAndDisplayActor( const char* );
87
88   void                       SetName( const char*, const char* );
89
90   void                       EraseActor( const char*, const bool allViewers = false );
91
92   void                       UpdateActor( const char* Mesh_Entry );
93
94   /*!
95    * \brief Set mesh icon according to compute status
96     * \param Mesh_Entry - entry of a mesh
97     * \param isComputed - is mesh computed or not
98    */
99   void                       SetMeshIcon( const char*, const bool, const bool );
100
101   void setSelectionMode( SelectionMode selectionMode );
102   std::vector<int> getSelected( const char* Mesh_Entry );
103   std::vector<std::pair<int, int> > getSelectedEdgeOfCell( const char* Mesh_Entry );
104
105   // --------------------- for the test purposes -----------------------
106   SelectionMode getSelectionMode();
107   void select( const char *id, std::vector<int> ids, bool append = false );
108   void select( const char *id, int id1, bool append = false );
109   void select( const char *id, std::vector<std::pair<int,int> >, bool apend = false );
110
111 private:
112   SALOMEDS::Study_var        myStudy;
113   SALOMEDS::StudyBuilder_var myStudyBuilder;
114   SALOMEDS::SComponent_var   mySComponentMesh;
115 };
116
117 #endif // LIBSMESH_SWIG_H