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