]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_Selection.h
Salome HOME
MPV: Merge V1_2d
[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 "QAD_Desktop.h"
34 #include "VISU_Actor.h"
35 #include "SALOME_Selection.h"
36         
37 #include <vtkDataSet.h>
38
39 #include <qdialog.h>
40 #include <qwidgetstack.h>
41 #include <qhbox.h>
42 #include <qvbox.h>
43 #include <qtable.h>
44 #include <qlineedit.h>
45
46
47 class VisuGUI_SelectionDlg: public QDialog {
48   Q_OBJECT
49   
50 public:
51   VisuGUI_SelectionDlg();
52   ~VisuGUI_SelectionDlg(){};
53
54 protected:
55   void closeEvent(QCloseEvent* theEvent);
56
57 private slots:
58   void onSelectionChange(int theId);
59   void onSelectionEvent();
60   void onPointIdEdit(const QString& theText);
61   void onCellIdEdit(const QString& theText);
62
63  private:
64   void clearFields();
65
66   QLabel* myMeshName;
67   QLabel* myFieldName;
68
69   QWidgetStack* myWidgetStack;
70   QVBox* myPointsPane;
71   QWidget* myCellsPane;
72   QLabel* myXValLbl;
73   QLabel* myYValLbl;
74   QLabel* myZValLbl;
75   
76   QLineEdit* myIDValLbl;
77   QLabel* myScalarValLbl;
78   QLabel* myVectorValLbl;
79
80   QTable* myListPoints;
81   QLineEdit* myCellIDValLbl;
82   QLabel* myCellScalarValLbl;
83   QLabel* myCellVectorValLbl;
84
85   QVBox* myActorsPane;
86   QLabel* myXPosLbl;
87   QLabel* myYPosLbl;
88   QLabel* myZPosLbl;
89   QLabel* myDXLbl;
90   QLabel* myDYLbl;
91   QLabel* myDZLbl;
92
93   SALOME_Selection* mySelection;
94 };
95
96
97 #endif