Salome HOME
Merge from V5_1_3_BR branch (07/12/09)
[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                           SetGeomShapeEntry( const QString& theEntry );
63   const char*                    GetGeomShapeEntry() { return myEntry.toLatin1().data();}
64
65   void                           SetMainShapeEntry( const QString& theEntry );
66   const char*                    GetMainShapeEntry();
67
68   TopoDS_Shape                   GetGeomShape() { return myGeomShape; }
69   TopoDS_Shape                   GetMainShape() { return myMainShape; }
70
71   QList<int>                     GetCorrectedListOfIDs( bool fromSubshapeToMainshape = true );
72
73   static GEOM::GEOM_Object_var   GetGeomObjectByEntry( const QString& );
74   static TopoDS_Shape            GetTopoDSByEntry( const QString& );
75
76   QString                        GetValue() const { return myParamValue; }
77
78   void                           showPreview ( bool );
79
80   int                            GetListSize() { return myListOfIDs.size(); }
81
82   void SetMaxSize(int aMaxSize) { myMaxSize = aMaxSize; }
83   void SetSubShType(TopAbs_ShapeEnum aSubShType) { mySubShType = aSubShType; }
84
85 private:
86   void                           updateState();
87
88 private slots:
89   void                           onAdd(); 
90   void                           onRemove(); 
91   void                           SelectionIntoArgument();
92   void                           onListSelectionChanged();
93
94 private:
95   void                           init();
96
97 private:
98   SMESHGUI*                      mySMESHGUI;
99   LightApp_SelectionMgr*         mySelectionMgr;          /* User shape selection */
100   SVTK_Selector*                 mySelector;
101   SMESH::SMESH_Mesh_var          myMesh;
102   TopoDS_Shape                   myGeomShape;
103   TopoDS_Shape                   myMainShape;
104   QString                        myEntry;
105   QString                        myMainEntry;
106   vtkRenderer*                   myRenderer;
107   
108   QListWidget*                   myListWidget;
109   QPushButton*                   myAddButton;
110   QPushButton*                   myRemoveButton;
111   QList<int>                     mySelectedIDs;
112   QList<int>                     myListOfIDs;
113   
114   QString                        myParamValue;
115   bool                           myIsShown;
116   bool                           myIsNotCorrected;
117
118   // for manage possible size of myListOfIDs
119   int                            myMaxSize;
120   // for manage type of selected subshape
121   TopAbs_ShapeEnum               mySubShType;
122   
123   SMESH_PreviewActorsCollection* myPreviewActor;
124 };
125
126 #endif // STDMESHERSGUI_SUBSHAPESELECTORWDG_H