Version: 8.3.0
libSMESH_Swig.h
Go to the documentation of this file.
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 
44 #include <SVTK_Selection.h>
45 
46 #include <SVTK_Selection.h>
47 
48 enum
49  {
50  Node = NodeSelection,
51  Cell = CellSelection,
52  EdgeOfCell = EdgeOfCellSelection,
53  Edge = EdgeSelection,
54  Face = FaceSelection,
55  Volume = VolumeSelection,
56  Actor = ActorSelection,
57  Elem0D = Elem0DSelection,
58  Ball = BallSelection
59  };
60 
61 typedef struct
62 {
63  double r, g, b;
64  int delta;
66 
67 typedef struct
68 {
69  double r, g, b;
70  int delta;
72 
73 typedef struct
74 {
75  double r, g, b;
77 
78 typedef struct
79 {
80  double r, g, b;
82 
84 {
89  double opacity;
90 };
91 
93 {
94 public:
95  SMESH_Swig();
96  ~SMESH_Swig();
97 
98  void Init( int );
99 
100  const char* AddNewMesh( const char* );
101 
102  const char* AddNewHypothesis( const char* );
103  const char* AddNewAlgorithms( const char* );
104 
105  void SetShape( const char*, const char* );
106 
107  void SetHypothesis( const char*, const char* );
108  void SetAlgorithms( const char*, const char* );
109 
110  void UnSetHypothesis( const char* );
111 
112  const char* AddSubMesh( const char*, const char*, int );
113  const char* AddSubMeshOnShape( const char*, const char*, const char*, int );
114 
115  void CreateAndDisplayActor( const char* );
116 
117  void SetName( const char*, const char* );
118 
119  void EraseActor( const char*, const bool allViewers = false );
120 
126  void SetMeshIcon( const char*, const bool, const bool );
127 
128  actorAspect GetActorAspect(const char* Mesh_Entry, int viewId = 0 );
129  void SetActorAspect( const actorAspect& actorPres, const char* Mesh_Entry, int viewId = 0 );
130 
131  // --------------------- for the test purposes -----------------------
132  int getSelectionMode();
133  void select( const char *id, std::vector<int> ids, bool append = false );
134  void select( const char *id, int id1, bool append = false );
135 
136 private:
137  SALOMEDS::Study_var myStudy;
138  SALOMEDS::StudyBuilder_var myStudyBuilder;
139  SALOMEDS::SComponent_var mySComponentMesh;
140 };
141 
142 #endif // LIBSMESH_SWIG_H