Salome HOME
081caed4b688e3d26448d33afcf3346a30d9994d
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ScalarBarDlg.h
1 // SMESH SMESHGUI : GUI for SMESH 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : SMESHGUI_Preferences_ScalarBarDlg.h
23 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_PREFERENCES_SCALARBARDLG_H
27 #define SMESHGUI_PREFERENCES_SCALARBARDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 class QCheckBox;
36 class QComboBox;
37 class QGroupBox;
38 class QLineEdit;
39 class QPushButton;
40 class QToolButton;
41 class QRadioButton;
42 class QSpinBox;
43
44 class SMESHGUI;
45 class SMESH_Actor;
46 class QtxDoubleSpinBox;
47 class QtxColorButton;
48 class LightApp_SelectionMgr;
49
50 class SMESHGUI_EXPORT SMESHGUI_Preferences_ScalarBarDlg : public QDialog
51
52   Q_OBJECT
53
54 private:
55   SMESHGUI_Preferences_ScalarBarDlg( SMESHGUI* );
56
57   static SMESHGUI_Preferences_ScalarBarDlg* myDlg;
58
59 public:
60   ~SMESHGUI_Preferences_ScalarBarDlg();
61
62   static void              ScalarBarProperties( SMESHGUI* );
63
64   void                     closeEvent( QCloseEvent* );
65   void                     setOriginAndSize( const double,
66                                              const double,
67                                              const double,
68                                              const double );
69   void                     initScalarBarFromResources();
70
71 protected slots:
72   void                     onOk();
73   bool                     onApply();
74   void                     onCancel();
75   void                     onHelp();
76   void                     onSelectionChanged();
77   void                     onXYChanged();
78   void                     onOrientationChanged();
79
80 private:
81   SMESHGUI*                mySMESHGUI;
82   LightApp_SelectionMgr*   mySelectionMgr;
83   SMESH_Actor*             myActor;
84   double                   myIniX, myIniY, myIniW, myIniH;
85   int                      myIniOrientation;
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;
88
89   QGroupBox*               myRangeGrp;
90   QLineEdit*               myMinEdit;
91   QLineEdit*               myMaxEdit;
92
93   QGroupBox*               myFontGrp;
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;
104   
105   QGroupBox*               myLabColorGrp;
106   QSpinBox*                myColorsSpin;
107   QSpinBox*                myLabelsSpin;
108
109   QGroupBox*               myOrientationGrp;
110   QRadioButton*            myVertRadioBtn;
111   QRadioButton*            myHorizRadioBtn;
112
113   QGroupBox*               myOriginDimGrp;
114   QtxDoubleSpinBox*        myXSpin;
115   QtxDoubleSpinBox*        myYSpin;
116   QtxDoubleSpinBox*        myWidthSpin;
117   QtxDoubleSpinBox*        myHeightSpin;
118
119   QGroupBox*               myButtonGrp;
120   QPushButton*             myOkBtn;
121   QPushButton*             myApplyBtn;
122   QPushButton*             myCancelBtn;
123   QPushButton*             myHelpBtn;
124
125   QString                  myHelpFileName;
126 };
127
128 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H