Salome HOME
adf62f1d6cdb5fd43c521a1ec05810afeb062c7d
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_SubShapeSelectorWdg.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 // File   : StdMeshersGUI_SubShapeSelectorWdg.h
21 // Author : Open CASCADE S.A.S. (dmv)
22 //
23 #ifndef STDMESHERSGUI_SUBSHAPESELECTORWDG_H
24 #define STDMESHERSGUI_SUBSHAPESELECTORWDG_H
25
26 // SMESH includes
27 #include "SMESHGUI.h"
28 #include "SMESH_StdMeshersGUI.hxx"
29 #include "SMESH_SMESHGUI.hxx"
30
31 // Qt includes
32 #include <QWidget>
33 #include <QStringList>
34 #include <TopoDS_Shape.hxx>
35
36 #include <string>
37
38 class SMESHGUI;
39 class LightApp_SelectionMgr;
40 class SVTK_Selector;
41 class QPushButton;
42 class QLabel;
43 class QListWidget;
44 class SMESH_PreviewActorsCollection;
45 class vtkRenderer;
46 class SUIT_SelectionFilter;
47
48 class STDMESHERSGUI_EXPORT StdMeshersGUI_SubShapeSelectorWdg : public QWidget
49 {
50   Q_OBJECT
51
52 public:
53   StdMeshersGUI_SubShapeSelectorWdg( QWidget*         parent = 0,
54                                      TopAbs_ShapeEnum subShType = TopAbs_EDGE,
55                                      const bool       toShowList = true);
56   ~StdMeshersGUI_SubShapeSelectorWdg();
57
58   SMESH::long_array_var          GetListOfIDs();
59   bool                           SetListOfIDs( SMESH::long_array_var );
60   const QList<int>&              GetSelectedIDs() const { return mySelectedIDs; }
61
62   void                           SetGeomShapeEntry( const QString& theEntry,
63                                                     const QString& theMainShapeEntry);
64   const char*                    GetMainShapeEntry();
65
66   TopoDS_Shape                   GetGeomShape() { return myGeomShape; }
67   TopoDS_Shape                   GetMainShape() { return myMainShape; }
68
69   static GEOM::GEOM_Object_var   GetGeomObjectByEntry( const QString& );
70   static TopoDS_Shape            GetTopoDSByEntry( const QString& );
71
72   QString                        GetValue() const { return myParamValue; }
73
74   void                           ShowPreview( bool );
75
76   int                            GetListSize() { return myListOfIDs.size(); }
77
78   void                           SetMaxSize(int aMaxSize) { myMaxSize = aMaxSize; }
79
80   vtkRenderer*                   GetRenderer() { return myRenderer; }
81   SMESH_PreviewActorsCollection* GetActorCollection() { return myPreviewActor; }
82   void                           ClearSelected();
83   void                           ActivateSelection( bool );
84
85 signals:
86   void                           selectionChanged(); // in the list
87   void                           shapeSelected();    // globally
88
89 private:
90   void                           updateState();
91   void                           setFilter();
92   void                           updateButtons();
93
94 private slots:
95   void                           onAdd(); 
96   void                           onRemove(); 
97   void                           onPrevious(); 
98   void                           onNext(); 
99   void                           selectionIntoArgument();
100   void                           onListSelectionChanged();
101
102 private:
103   void                           init();
104
105 private:
106   SMESHGUI*                      mySMESHGUI;
107   LightApp_SelectionMgr*         mySelectionMgr;          /* User shape selection */
108   SVTK_Selector*                 mySelector;
109   SMESH::SMESH_Mesh_var          myMesh;
110   TopoDS_Shape                   myGeomShape; // shape whose sub-shapes are selected
111   TopoDS_Shape                   myMainShape; // main shape of the mesh
112   std::string                    myEntry;
113   std::string                    myMainEntry;
114   vtkRenderer*                   myRenderer;
115   
116   QListWidget*                   myListWidget;
117   QPushButton*                   myAddButton;
118   QPushButton*                   myRemoveButton;
119   QLabel*                        myInfoLabel;
120   QPushButton*                   myPrevButton;
121   QPushButton*                   myNextButton;
122   QList<int>                     mySelectedIDs;
123   QList<int>                     myListOfIDs;
124   
125   QString                        myParamValue;
126   bool                           myIsShown;
127
128   // for manage possible size of myListOfIDs
129   int                            myMaxSize;
130   // for manage type of selected subshape
131   TopAbs_ShapeEnum               mySubShType;
132   
133   SMESH_PreviewActorsCollection* myPreviewActor;
134   QList<SUIT_SelectionFilter*>   myGeomFilters;
135   SUIT_SelectionFilter*          myFilter;
136 };
137
138 #endif // STDMESHERSGUI_SUBSHAPESELECTORWDG_H