Salome HOME
IPAL9285,9292,9314
[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 SalomeApp_Module;
44
45 class VisuGUI_IsoSurfPane : public QVBox
46 {
47   Q_OBJECT;
48
49  public:
50   VisuGUI_IsoSurfPane (QWidget* parent);
51   ~VisuGUI_IsoSurfPane() {};
52
53   void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
54   int storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
55
56   void setScalarBarPane(VisuGUI_ScalarBarPane* theScalarPane) {myScalarPane = theScalarPane;}
57   VisuGUI_ScalarBarPane* getScalarBarPane() {return myScalarPane;}
58
59   bool check();
60
61  protected slots:
62   void onCBUpdate();
63
64  private:
65   QLineEdit* MinIso;
66   QLineEdit* MaxIso;
67   QSpinBox*  NbrIso;
68   VisuGUI_ScalarBarPane* myScalarPane;
69 };
70
71
72 class VisuGUI_IsoSurfacesDlg : public QDialog
73 {
74   Q_OBJECT;
75
76  public:
77   VisuGUI_IsoSurfacesDlg (SalomeApp_Module* theModule);
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