Salome HOME
Fix pb with labels of rotation spin boxes (bad update after switch from IJK pane...
[modules/visu.git] / src / VISUGUI / VisuGUI_Selection.h
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : VisuGUI_Selection.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND 
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VisuGUI_Selection_HeaderFile
30 #define VisuGUI_Selection_HeaderFile
31
32 #include "SALOMEconfig.h"
33 #include "VISU_Actor.h"
34 #include "SVTK_Selection.h"
35
36 #include <vtkDataSet.h>
37
38 #include <qdialog.h>
39
40 class QLabel;
41 class QWidgetStack;
42 class QVBox;
43 class QLineEdit;
44 class QTable;
45 class SalomeApp_SelectionMgr;
46 class SalomeApp_Application;
47
48 class VisuGUI_SelectionDlg: public QDialog {
49   Q_OBJECT
50
51 public:
52   VisuGUI_SelectionDlg (QWidget*);
53   virtual ~VisuGUI_SelectionDlg ();
54
55 protected:
56   void closeEvent (QCloseEvent* theEvent);
57
58 private slots:
59   void onSelectionChange (int theId);
60   void onSelectionEvent ();
61   void onPointIdEdit (const QString& theText);
62   void onCellIdEdit (const QString& theText);
63
64  private:
65   void clearFields ();
66
67   QLabel* myMeshName;
68   QLabel* myFieldName;
69
70   QWidgetStack* myWidgetStack;
71   QVBox* myPointsPane;
72   QWidget* myCellsPane;
73   QLabel* myXValLbl;
74   QLabel* myYValLbl;
75   QLabel* myZValLbl;
76
77   QLineEdit* myIDValLbl;
78   QLabel* myScalarValLbl;
79   QLabel* myVectorValLbl;
80
81   QTable* myListPoints;
82   QLineEdit* myCellIDValLbl;
83   QLabel* myCellScalarValLbl;
84   QLabel* myCellVectorValLbl;
85
86   QVBox* myActorsPane;
87   QLabel* myXPosLbl;
88   QLabel* myYPosLbl;
89   QLabel* myZPosLbl;
90   QLabel* myDXLbl;
91   QLabel* myDYLbl;
92   QLabel* myDZLbl;
93
94   SalomeApp_SelectionMgr* mySelectionMgr;
95   bool myFl;
96 };
97
98 #endif