1 // VISU VISUGUI : GUI of VISU component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : VisuGUI_ScalarBarDlg.h
25 // Author : Laurent CORNABE & Hubert ROLLAND
29 #ifndef VISUGUI_SCALARBARDLG_H
30 #define VISUGUI_SCALARBARDLG_H
33 #include <qbuttongroup.h>
34 #include <qgroupbox.h>
36 #include <qradiobutton.h>
37 #include <qcheckbox.h>
38 #include <qpushbutton.h>
40 #include <qlineedit.h>
41 #include <qcombobox.h>
43 #include <qtoolbutton.h>
45 #include "QtxDblSpinBox.h"
47 #include "VISU_ScalarMap_i.hh"
62 class SalomeApp_Module;
65 class VisuGUI_TextPrefDlg: public QDialog
70 VisuGUI_TextPrefDlg (QWidget* parent);
71 ~VisuGUI_TextPrefDlg() {};
73 QString getTitleText() { return myTitleEdt->text(); }
74 void setTitleText(QString theText) { myTitleEdt->setText(theText); }
76 void setTitleVisible (bool isVisible)
77 { (isVisible)? myTitleEdt->show() : myTitleEdt->hide(); }
80 VisuGUI_FontWg* myTitleFont;
81 VisuGUI_FontWg* myLabelFont;
84 QLineEdit* myTitleEdt;
88 class VisuGUI_ScalarBarPane : public QVBox
93 VisuGUI_ScalarBarPane(QWidget* parent, bool SetPref);
94 ~VisuGUI_ScalarBarPane() {};
96 void setRange( double imin, double imax, /*double fmin, double fmax,*/ bool sbRange );
97 bool isIRange() {return RBIrange->isChecked();}
98 double getMin() {return MinEdit->text().toDouble();}
99 double getMax() {return MaxEdit->text().toDouble();}
100 int getOrientation();
101 void setPosAndSize( double x, double y, double w, double h, bool vert );
102 double getX() {return XSpin->value();}
103 double getY() {return YSpin->value();}
104 double getWidth() {return WidthSpin->value();}
105 double getHeight() {return HeightSpin->value();}
106 void setScalarBarData( int colors, int labels );
107 int getNbColors() {return ColorSpin->value();}
108 int getNbLabels() {return LabelSpin->value();}
109 bool isLogarithmic() {return CBLog->isChecked();}
110 void setLogarithmic( bool on ) {CBLog->setChecked( on );}
111 bool isToSave() {return CBSave ? CBSave->isChecked() : false;}
113 void initFromResources();
114 void storeToResources();
116 void initFromPrsObject(VISU::ScalarMap_i* thePrs);
117 int storeToPrsObject(VISU::ScalarMap_i* thePrs);
122 QButtonGroup* RangeGroup;
123 QRadioButton* RBFrange;
124 QRadioButton* RBIrange;
128 QRadioButton* RBhori;
129 QRadioButton* RBvert;
131 QtxDblSpinBox* XSpin;
132 QtxDblSpinBox* YSpin;
134 QtxDblSpinBox* WidthSpin;
135 QtxDblSpinBox* HeightSpin;
143 QComboBox* myModeCombo;
144 QPushButton* myTextBtn;
145 VisuGUI_TextPrefDlg* myTextDlg;
147 double Imin, Imax, /* Fmin, Fmax,*/ Rmin, Rmax;
148 double myHorX, myHorY, myHorW, myHorH;
149 double myVerX, myVerY, myVerW, myVerH;
151 bool myIsStoreTextProp;
154 void changeDefaults( int );
155 void changeRange( int );
156 void XYChanged( double );
161 class VisuGUI_ScalarBarDlg : public QDialog
166 VisuGUI_ScalarBarDlg (SalomeApp_Module* theModule, bool SetPref = FALSE);
167 ~VisuGUI_ScalarBarDlg() {};
169 bool isToSave() {return myScalarPane->isToSave();}
171 void initFromResources() {myScalarPane->initFromResources();}
172 void storeToResources() {myScalarPane->storeToResources();}
174 void initFromPrsObject(VISU::ScalarMap_i* thePrs) {myScalarPane->initFromPrsObject(thePrs);}
175 int storeToPrsObject(VISU::ScalarMap_i* thePrs) {return myScalarPane->storeToPrsObject(thePrs);}
181 VisuGUI_ScalarBarPane* myScalarPane;
184 #endif // VISUGUI_SCALARBARDLG_H