Salome HOME
Update translations
[modules/visu.git] / src / VISUGUI / VisuGUI_IsoSurfacesDlg.h
1 // Copyright (C) 2007-2011  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
23 //  VISU VISUGUI : GUI of VISU component
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_Prs3dDlg.h"
33
34 class QTabWidget;
35 class QLineEdit;
36 class SalomeApp_IntSpinBox;
37 class QButtonGroup;
38 class QtxColorButton;
39
40 namespace VISU 
41 {
42   class IsoSurfaces_i;
43 };
44
45 class SalomeApp_Module;
46 class VisuGUI_InputPane;
47
48 class VisuGUI_IsoSurfPane : public QWidget
49 {
50   Q_OBJECT;
51
52 public:
53   enum { ScalarBarRange = 0, CustomRange };
54
55 public:
56   VisuGUI_IsoSurfPane (QWidget* parent,
57                        VisuGUI_ScalarBarPane* theScalarPane);
58   ~VisuGUI_IsoSurfPane() {};
59
60   void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
61   int storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
62
63   bool check();
64
65   void setColor(const QColor& theColor);
66   QColor color() const;
67
68 protected slots:
69   void onRangeButtonClicked( int );
70   void onCBUpdate();
71   void setColor();
72
73 private:
74   QButtonGroup*          myRangeGrp;
75   QLineEdit*             MinIso;
76   QLineEdit*             MaxIso;
77   SalomeApp_IntSpinBox*  NbrIso;
78   QCheckBox*             myUseMagnitude;
79   QtxColorButton*        mySelColor;
80   QCheckBox*             myUseLabels;
81   SalomeApp_IntSpinBox*  myNbLabels;
82   VisuGUI_ScalarBarPane* myScalarPane;
83 };
84
85
86 class VisuGUI_IsoSurfacesDlg : public VisuGUI_ScalarBarBaseDlg
87 {
88   Q_OBJECT;
89
90 public:
91   VisuGUI_IsoSurfacesDlg (SalomeApp_Module* theModule);
92   ~VisuGUI_IsoSurfacesDlg();
93
94   virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
95                                   bool theInit );
96
97   virtual int storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
98
99 protected:
100   virtual QString  GetContextHelpFilePath();
101
102  protected slots:
103   void accept();
104
105 private:
106   QTabWidget*            myTabBox;
107   VisuGUI_IsoSurfPane*   myIsoPane;
108   VisuGUI_InputPane*     myInputPane;
109
110   SALOME::GenericObjPtr<VISU::IsoSurfaces_i> myPrsCopy;
111 };
112
113 #endif // VISUGUI_ISOSURFACESDLG_H