1 // Copyright (C) 2007-2011 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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_Preferences_ScalarBarDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_PREFERENCES_SCALARBARDLG_H
28 #define SMESHGUI_PREFERENCES_SCALARBARDLG_H
31 #include "SMESH_SMESHGUI.hxx"
48 class SMESHGUI_SpinBox;
49 class SalomeApp_IntSpinBox;
51 class LightApp_SelectionMgr;
53 class SMESHGUI_EXPORT SMESHGUI_Preferences_ScalarBarDlg : public QDialog
58 SMESHGUI_Preferences_ScalarBarDlg( SMESHGUI* );
60 static SMESHGUI_Preferences_ScalarBarDlg* myDlg;
63 ~SMESHGUI_Preferences_ScalarBarDlg();
65 static void ScalarBarProperties( SMESHGUI* );
67 void closeEvent( QCloseEvent* );
68 void setOriginAndSize( const double,
72 void initScalarBarFromResources();
79 void onSelectionChanged();
81 void onOrientationChanged();
82 void onDistributionChanged( int );
83 void onDistributionActivated( bool );
87 LightApp_SelectionMgr* mySelectionMgr;
89 double myIniX, myIniY, myIniW, myIniH;
91 double DEF_VER_X, DEF_VER_Y, DEF_VER_H, DEF_VER_W;
92 double DEF_HOR_X, DEF_HOR_Y, DEF_HOR_H, DEF_HOR_W;
94 QGroupBox* myRangeGrp;
99 QtxColorButton* myTitleColorBtn;
100 QComboBox* myTitleFontCombo;
101 QCheckBox* myTitleBoldCheck;
102 QCheckBox* myTitleItalicCheck;
103 QCheckBox* myTitleShadowCheck;
104 QtxColorButton* myLabelsColorBtn;
105 QComboBox* myLabelsFontCombo;
106 QCheckBox* myLabelsBoldCheck;
107 QCheckBox* myLabelsItalicCheck;
108 QCheckBox* myLabelsShadowCheck;
110 QGroupBox* myLabColorGrp;
111 SalomeApp_IntSpinBox* myColorsSpin;
112 SalomeApp_IntSpinBox* myLabelsSpin;
114 QGroupBox* myOrientationGrp;
115 QRadioButton* myVertRadioBtn;
116 QRadioButton* myHorizRadioBtn;
118 QGroupBox* myOriginDimGrp;
119 SMESHGUI_SpinBox* myXSpin;
120 SMESHGUI_SpinBox* myYSpin;
121 SMESHGUI_SpinBox* myWidthSpin;
122 SMESHGUI_SpinBox* myHeightSpin;
124 QGroupBox* myDistributionGrp;
125 QRadioButton* myDMonoColor;
126 QRadioButton* myDMultiColor;
127 QtxColorButton* myMonoColorBtn;
128 QLabel* myDistributionColorLbl;
130 QGroupBox* myButtonGrp;
131 QButtonGroup* myDistribColorGrp;
132 QPushButton* myOkBtn;
133 QPushButton* myApplyBtn;
134 QPushButton* myCancelBtn;
135 QPushButton* myHelpBtn;
137 QString myHelpFileName;
140 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H