Salome HOME
e7bb024518d64460c6f0a4bcc09445052e54e00c
[modules/visu.git] / src / VISUGUI / VisuGUI_IsoSurfacesDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  VISU VISUGUI : GUI of VISU component
23 //  File   : VisuGUI_IsoSurfacesDlg.h
24 //  Author : Laurent CORNABE & Hubert ROLLAND
25 //  Module : VISU
26 //  $Header$
27
28 #ifndef VISUGUI_ISOSURFACESDLG_H
29 #define VISUGUI_ISOSURFACESDLG_H
30
31 #include "VisuGUI_Prs3dDlg.h"
32
33 class QTabWidget;
34 class QLineEdit;
35 class QSpinBox;
36 class QButtonGroup;
37 class QtxColorButton;
38
39 namespace VISU 
40 {
41   class IsoSurfaces_i;
42 };
43
44 class SalomeApp_Module;
45 class VisuGUI_InputPane;
46
47 class VisuGUI_IsoSurfPane : public QWidget
48 {
49   Q_OBJECT;
50
51 public:
52   enum { ScalarBarRange = 0, CustomRange };
53
54 public:
55   VisuGUI_IsoSurfPane (QWidget* parent,
56                        VisuGUI_ScalarBarPane* theScalarPane);
57   ~VisuGUI_IsoSurfPane() {};
58
59   void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
60   int storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
61
62   bool check();
63
64   void setColor(const QColor& theColor);
65   QColor color() const;
66
67 protected slots:
68   void onRangeButtonClicked( int );
69   void onCBUpdate();
70   void setColor();
71
72 private:
73   QButtonGroup*   myRangeGrp;
74   QLineEdit*      MinIso;
75   QLineEdit*      MaxIso;
76   QSpinBox*       NbrIso;
77   QCheckBox*      myUseMagnitude;
78   QtxColorButton* mySelColor;
79   QCheckBox*      myUseLabels;
80   QSpinBox*       myNbLabels;
81   VisuGUI_ScalarBarPane* myScalarPane;
82 };
83
84
85 class VisuGUI_IsoSurfacesDlg : public VisuGUI_ScalarBarBaseDlg
86 {
87   Q_OBJECT;
88
89 public:
90   VisuGUI_IsoSurfacesDlg (SalomeApp_Module* theModule);
91   ~VisuGUI_IsoSurfacesDlg();
92
93   virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
94                                   bool theInit );
95
96   virtual int storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
97
98 protected:
99   virtual QString  GetContextHelpFilePath();
100
101  protected slots:
102   void accept();
103
104 private:
105   QTabWidget*            myTabBox;
106   VisuGUI_IsoSurfPane*   myIsoPane;
107   VisuGUI_InputPane*     myInputPane;
108
109   SALOME::GenericObjPtr<VISU::IsoSurfaces_i> myPrsCopy;
110 };
111
112 #endif // VISUGUI_ISOSURFACESDLG_H