Salome HOME
IPAL9283,9286,9295,9296,9297; some icons restored
[modules/visu.git] / src / VISUGUI / VisuGUI_IsoSurfacesDlg.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_IsoSurfacesDlg.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VISUGUI_ISOSURFACESDLG_H
30 #define VISUGUI_ISOSURFACESDLG_H
31
32 #include "VisuGUI_ScalarBarDlg.h"
33 #include "VISU_IsoSurfaces_i.hh"
34
35 #include <qdialog.h>
36 #include <qlabel.h>
37 #include <qgroupbox.h>
38 #include <qspinbox.h>
39 #include <qpushbutton.h>
40 #include <qcheckbox.h>
41 #include <qlineedit.h>
42
43 class VisuGUI_IsoSurfPane : public QVBox
44 {
45     Q_OBJECT
46
47 public:
48     VisuGUI_IsoSurfPane(QWidget* parent);
49     ~VisuGUI_IsoSurfPane() {};
50
51     void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
52     int storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
53
54     void setScalarBarPane(VisuGUI_ScalarBarPane* theScalarPane) {myScalarPane = theScalarPane;}
55     VisuGUI_ScalarBarPane* getScalarBarPane() {return myScalarPane;}
56
57     bool check();
58
59 protected slots:
60   void onCBUpdate();
61
62 private:
63   QLineEdit* MinIso;
64   QLineEdit* MaxIso;
65   QSpinBox*  NbrIso;
66   //QCheckBox* CBUpdate;
67   VisuGUI_ScalarBarPane* myScalarPane;
68   //  QCheckBox* CBLog;
69 };
70
71
72 class VisuGUI_IsoSurfacesDlg : public QDialog
73 {
74     Q_OBJECT
75
76 public:
77     VisuGUI_IsoSurfacesDlg(QWidget* parent);
78     ~VisuGUI_IsoSurfacesDlg() {};
79
80     void initFromPrsObject(VISU::IsoSurfaces_i* thePrs)
81       {myScalarPane->initFromPrsObject(thePrs); myIsoPane->initFromPrsObject(thePrs);}
82
83     int storeToPrsObject(VISU::IsoSurfaces_i* thePrs)
84       {return myScalarPane->storeToPrsObject(thePrs) && myIsoPane->storeToPrsObject(thePrs);}
85
86 protected slots:
87   void accept();
88
89 private:
90  VisuGUI_IsoSurfPane*   myIsoPane;
91  VisuGUI_ScalarBarPane* myScalarPane;
92 };
93
94 #endif // VISUGUI_ISOSURFACESDLG_H