Salome HOME
NRI : Merge branch br_porting_MED.
[modules/visu.git] / src / VISUGUI / VisuGUI_ScalarBarDlg.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_ScalarBarDlg.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND 
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VISUGUI_SCALARBARDLG_H
30 #define VISUGUI_SCALARBARDLG_H
31
32 #include "QAD_SpinBoxDbl.h"
33
34 #include <qdialog.h>
35 #include <qbuttongroup.h>
36 #include <qgroupbox.h>
37 #include <qlabel.h>
38 #include <qradiobutton.h>
39 #include <qcheckbox.h>
40 #include <qpushbutton.h>
41 #include <qspinbox.h>
42 #include <qlineedit.h>
43 #include <qcombobox.h>
44
45 namespace VISU{
46   class ScalarMap_i;
47 }
48
49 class VisuGUI_ScalarBarDlg : public QDialog
50
51     Q_OBJECT
52
53 public:
54     VisuGUI_ScalarBarDlg( bool SetPref = FALSE );
55     ~VisuGUI_ScalarBarDlg();
56
57     void    setRange( double imin, double imax, double fmin, double fmax, bool sbRange );
58     bool    isIRange();
59     double  getMin();
60     double  getMax();
61     int     getOrientation();
62     void    setPosAndSize( double x, double y, double w, double h, bool vert );
63     double  getX();
64     double  getY();
65     double  getWidth();
66     double  getHeight();
67     void    setScalarBarData( int colors, int labels );
68     int     getNbColors();
69     int     getNbLabels();
70     bool    isLogarithmic();
71     void    setLogarithmic( bool on );
72     bool    isToSave();
73
74     void initFromResources();
75     void storeToResources();
76
77     void initFromPrsObject(VISU::ScalarMap_i* thePrs);
78     void storeToPrsObject(VISU::ScalarMap_i* thePrs);
79
80
81 protected:
82     QButtonGroup*   RangeGroup;
83     QRadioButton*   RBFrange;
84     QRadioButton*   RBIrange;
85     QLineEdit*      MinEdit;
86     QLineEdit*      MaxEdit;
87
88     QRadioButton*   RBhori;
89     QRadioButton*   RBvert;
90
91     QAD_SpinBoxDbl* XSpin;
92     QAD_SpinBoxDbl* YSpin;
93
94     QAD_SpinBoxDbl* WidthSpin;
95     QAD_SpinBoxDbl* HeightSpin;
96
97     QSpinBox*       ColorSpin;
98     QSpinBox*       LabelSpin;
99
100     QCheckBox*      CBSave;
101     QCheckBox*      CBLog;
102     QLabel*         myModeLbl;
103     QComboBox*      myModeCombo;
104     
105     double          Imin,   Imax,   Fmin,   Fmax,   Rmin,   Rmax;
106     double          myHorX, myHorY, myHorW, myHorH;
107     double          myVerX, myVerY, myVerW, myVerH;
108     int             myRangeMode;
109
110 protected slots:
111     void accept();
112
113 private slots:
114     void changeDefaults( int );
115     void changeRange( int );
116     void XYChanged( double );
117 };
118
119 #endif // VISUGUI_SCALARBARDLG_H