Salome HOME
6447516fba2406ef1d0ce95fb13369c944495499
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_SubShapeSelectorWdg.h
1 //  Copyright (C) 2007-2008  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 // File   : StdMeshersGUI_SubShapeSelectorWdg.h
23 // Author : Open CASCADE S.A.S. (dmv)
24 //
25 #ifndef STDMESHERSGUI_SUBSHAPESELECTORWDG_H
26 #define STDMESHERSGUI_SUBSHAPESELECTORWDG_H
27
28 // SMESH includes
29 #include <SMESHGUI.h>
30 #include "SMESH_StdMeshersGUI.hxx"
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QWidget>
35 #include <QStringList>
36 #include <TopoDS_Shape.hxx>
37
38 #include <SMESHGUI_VTKUtils.h>
39
40 class SMESHGUI;
41 class LightApp_SelectionMgr;
42 class SVTK_Selector;
43 class QPushButton;
44 class QLineEdit;
45 class QCheckBox;
46 class QListWidget;
47 class SMESH_Actor;
48 class SMESH_PreviewActorsCollection;
49 class vtkRenderer;
50
51 class STDMESHERSGUI_EXPORT StdMeshersGUI_SubShapeSelectorWdg : public QWidget
52 {
53   Q_OBJECT
54
55 public:
56   StdMeshersGUI_SubShapeSelectorWdg( QWidget* parent = 0 );
57   ~StdMeshersGUI_SubShapeSelectorWdg();
58
59   SMESH::long_array_var          GetListOfIDs();
60   void                           SetListOfIDs( SMESH::long_array_var );
61
62   void                           SetMainShapeEntry( const QString& theEntry );
63   const char*                    GetMainShapeEntry() { return myEntry.toLatin1().data();}
64
65   TopoDS_Shape                   GetMainShape() { return myMainShape; }
66
67   static GEOM::GEOM_Object_var   GetGeomObjectByEntry( const QString& );
68   static TopoDS_Shape            GetTopoDSByEntry( const QString& );
69
70   QString                        GetValue() const { return myParamValue; }
71
72   void                           showPreview ( bool );
73
74   void SetMaxSize(int aMaxSize) { myMaxSize = aMaxSize; }
75   void SetSubShType(TopAbs_ShapeEnum aSubShType) { mySubShType = aSubShType; }
76
77 private:
78   void                           updateState();
79
80 private slots:
81   void                           onAdd(); 
82   void                           onRemove(); 
83   void                           SelectionIntoArgument();
84   void                           onListSelectionChanged();
85
86 private:
87   void                           init();
88
89 private:
90   SMESHGUI*                      mySMESHGUI;
91   LightApp_SelectionMgr*         mySelectionMgr;          /* User shape selection */
92   SVTK_Selector*                 mySelector;
93   SMESH::SMESH_Mesh_var          myMesh;
94   TopoDS_Shape                   myMainShape;
95   QString                        myEntry;
96   vtkRenderer*                   myRenderer;
97   
98   QListWidget*                   myListWidget;
99   QPushButton*                   myAddButton;
100   QPushButton*                   myRemoveButton;
101   QList<int>                     mySelectedIDs;
102   QList<int>                     myListOfIDs;
103   
104   QString                        myParamValue;
105   bool                           myIsShown;
106
107   // for manage possible size of myListOfIDs
108   int                            myMaxSize;
109   // for manage type of selected subshape
110   TopAbs_ShapeEnum               mySubShType;
111   
112   SMESH_PreviewActorsCollection* myPreviewActor;
113 };
114
115 #endif // STDMESHERSGUI_SUBSHAPESELECTORWDG_H