Salome HOME
0020082: EDF 869 GEOM : Edges Orientation indicator/reverse
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_EdgeDirectionParamWdg.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_EdgeDirectionParamWdg.h
23 // Author : Open CASCADE S.A.S. (dmv)
24 //
25 #ifndef STDMESHERSGUI_EDGEDIRECTIONPARAMWGD_H
26 #define STDMESHERSGUI_EDGEDIRECTIONPARAMWGD_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_EdgeDirectionParamWdg : public QWidget
52 {
53   Q_OBJECT
54
55 public:
56   StdMeshersGUI_EdgeDirectionParamWdg( QWidget* parent = 0 );
57   ~StdMeshersGUI_EdgeDirectionParamWdg();
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 private:
75   void                           updateState();
76
77 private slots:
78   void                           onAdd(); 
79   void                           onRemove(); 
80   void                           SelectionIntoArgument();
81   void                           onListSelectionChanged();
82
83 private:
84   void                           init();
85
86 private:
87   SMESHGUI*                      mySMESHGUI;
88   LightApp_SelectionMgr*         mySelectionMgr;          /* User shape selection */
89   SVTK_Selector*                 mySelector;
90   SMESH::SMESH_Mesh_var          myMesh;
91   TopoDS_Shape                   myMainShape;
92   QString                        myEntry;
93   vtkRenderer*                   myRenderer;
94   
95   QListWidget*                   myListWidget;
96   QPushButton*                   myAddButton;
97   QPushButton*                   myRemoveButton;
98   QList<int>                     mySelectedIDs;
99   QList<int>                     myListOfIDs;
100   
101   QString                        myParamValue;
102   bool                           myIsShown;
103   
104   SMESH_PreviewActorsCollection* myPreviewActor;
105 };
106
107 #endif // STDMESHERSGUI_EDGEDIRECTIONPARAMWGD_H