Salome HOME
improvement to call destructor of SelectFiled and SelectParams classes
[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
42 class SelectField: public QDialog
43 {
44   Q_OBJECT
45
46 public:
47   SelectField(FilterGUI*,
48               const QString& file,
49               const char* name = 0,
50               bool modal = FALSE,
51               WFlags fl = 0);
52   virtual ~SelectField();
53
54   QString getFile() { return _file; }
55   QString getMesh() { return _mesh; }
56   QString getField() { return _field; }
57   int getTimeStep() { return _ts; }
58   ::MEDMEM::MED * getMED() { return _med; }
59   FilterGUI* myFilterGUI;              /* Current FilterGUI object */
60
61 protected:
62
63 protected slots:
64   virtual void     fieldSelected(QListViewItem *lvi);
65   virtual void     tsSelected();
66
67 private:
68   int _ts;
69   QGridLayout *_myGroupLayout, *_lay;
70   QGroupBox* _GroupC1;
71   QFrame *_fr;
72   QString _file, _mesh, _field;
73   QListView *_myList;
74   QLabel *_myLab;
75   QSlider *_mySlider;
76   ::MEDMEM::MED *_med;
77 };
78
79 #endif