Salome HOME
18f0ab96f98fa301adc40b023d3bf3df3f59baf1
[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_Module.h>
27 #include <SUIT_Desktop.h>
28
29 #include <SALOMEconfig.h>
30 class QListView;
31 class QListViewItem;
32 class QFrame;
33 class QSlider;
34 class QGridLayout;
35 class QGroupBox;
36 class QLabel;
37
38 class SelectField: public QObject
39 {
40   Q_OBJECT
41
42 public:
43   SelectField(const QString& file);
44   virtual ~SelectField();
45
46   virtual QFrame*  buildFrame();
47   QString getFile() { return _file; }
48   QString getMesh() { return _mesh; }
49   QString getField() { return _field; }
50   int getTimeStep() { return _ts; }
51
52 protected:
53
54 protected slots:
55   virtual void     fieldSelected(QListViewItem *lvi);
56   virtual void     tsSelected();
57
58 private:
59   int _ts;
60   QGridLayout *_myGroupLayout, *_lay;
61   QGroupBox* _GroupC1;
62   QFrame *_fr;
63   QString _file, _mesh, _field;
64   QListView *_myList;
65   QLabel *_myLab;
66   QSlider *_mySlider;
67   ::MEDMEM::MED *_med;
68 };
69
70 #endif