1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // SMESH SMESHGUI : GUI for SMESH component
23 // File : SMESHGUI_Preferences_ScalarBarDlg.h
24 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 #ifndef SMESHGUI_PREFERENCES_SCALARBARDLG_H
27 #define SMESHGUI_PREFERENCES_SCALARBARDLG_H
30 #include "SMESH_SMESHGUI.hxx"
46 class QtxDoubleSpinBox;
48 class LightApp_SelectionMgr;
50 class SMESHGUI_EXPORT SMESHGUI_Preferences_ScalarBarDlg : public QDialog
55 SMESHGUI_Preferences_ScalarBarDlg( SMESHGUI* );
57 static SMESHGUI_Preferences_ScalarBarDlg* myDlg;
60 ~SMESHGUI_Preferences_ScalarBarDlg();
62 static void ScalarBarProperties( SMESHGUI* );
64 void closeEvent( QCloseEvent* );
65 void setOriginAndSize( const double,
69 void initScalarBarFromResources();
76 void onSelectionChanged();
78 void onOrientationChanged();
82 LightApp_SelectionMgr* mySelectionMgr;
84 double myIniX, myIniY, myIniW, myIniH;
86 double DEF_VER_X, DEF_VER_Y, DEF_VER_H, DEF_VER_W;
87 double DEF_HOR_X, DEF_HOR_Y, DEF_HOR_H, DEF_HOR_W;
89 QGroupBox* myRangeGrp;
94 QtxColorButton* myTitleColorBtn;
95 QComboBox* myTitleFontCombo;
96 QCheckBox* myTitleBoldCheck;
97 QCheckBox* myTitleItalicCheck;
98 QCheckBox* myTitleShadowCheck;
99 QtxColorButton* myLabelsColorBtn;
100 QComboBox* myLabelsFontCombo;
101 QCheckBox* myLabelsBoldCheck;
102 QCheckBox* myLabelsItalicCheck;
103 QCheckBox* myLabelsShadowCheck;
105 QGroupBox* myLabColorGrp;
106 QSpinBox* myColorsSpin;
107 QSpinBox* myLabelsSpin;
109 QGroupBox* myOrientationGrp;
110 QRadioButton* myVertRadioBtn;
111 QRadioButton* myHorizRadioBtn;
113 QGroupBox* myOriginDimGrp;
114 QtxDoubleSpinBox* myXSpin;
115 QtxDoubleSpinBox* myYSpin;
116 QtxDoubleSpinBox* myWidthSpin;
117 QtxDoubleSpinBox* myHeightSpin;
119 QGroupBox* myButtonGrp;
120 QPushButton* myOkBtn;
121 QPushButton* myApplyBtn;
122 QPushButton* myCancelBtn;
123 QPushButton* myHelpBtn;
125 QString myHelpFileName;
128 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H