Salome HOME
add possibility to change the size of histogram
[modules/filter.git] / src / FILTERGUI / SelectField.h
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef SELECTFIELD_HEADER
22 #define SELECTFIELD_HEADER
23
24 #include "utilities.h"
25 #include "MEDMEM_Med.hxx"
26 #include "SalomeApp_Application.h"
27 #include <SalomeApp_Module.h>
28 #include <SUIT_Desktop.h>
29 #include <qdialog.h>
30 #include "FilterGUI.h"
31 #include "FILTERGUI_Utils.h"
32
33 #include <SALOMEconfig.h>
34 class QListView;
35 class QListViewItem;
36 class QFrame;
37 class QSlider;
38 class QGridLayout;
39 class QGroupBox;
40 class QLabel;
41 class QPushButton;
42
43 class SelectField: public QDialog
44 {
45   Q_OBJECT
46
47 public:
48   SelectField(FilterGUI*,
49               const QString& file,
50               const char* name = 0,
51               bool modal = FALSE,
52               WFlags fl = 0);
53   virtual ~SelectField();
54
55   QString getFile() { return _file; }
56   QString getMesh() { return _mesh; }
57   QString getField() { return _field; }
58   int getTimeStep() { return _ts; }
59   ::MEDMEM::MED * getMED() { return _med; }
60   FilterGUI* myFilterGUI;              /* Current FilterGUI object */
61
62 protected:
63
64 protected slots:
65   virtual void     fieldSelected(QListViewItem *lvi);
66   virtual void     tsSelected();
67   virtual void     ClickOnClose();
68   virtual void     ClickOnHelp();
69
70 private:
71   int _ts;
72   QGridLayout *_myGroupLayout, *_GroupButtonsLayout, *_lay;
73   QGroupBox* _GroupC1, *_GroupButtons;
74   QFrame *_fr;
75   QString _file, _mesh, _field;
76   QListView *_myList;
77   QLabel *_myLab;
78   QSlider *_mySlider;
79   QPushButton* _buttonClose, * _buttonHelp;
80   ::MEDMEM::MED *_med;
81 };
82
83 #endif