Salome HOME
Porting SMESH module to Qt 4
[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                     onSelectionChanged();
76   void                     onXYChanged();
77   void                     onOrientationChanged();
78
79 private:
80   SMESHGUI*                mySMESHGUI;
81   LightApp_SelectionMgr*   mySelectionMgr;
82   SMESH_Actor*             myActor;
83   double                   myIniX, myIniY, myIniW, myIniH;
84   int                      myIniOrientation;
85   double                   DEF_VER_X, DEF_VER_Y, DEF_VER_H, DEF_VER_W;
86   double                   DEF_HOR_X, DEF_HOR_Y, DEF_HOR_H, DEF_HOR_W;
87
88   QGroupBox*               myRangeGrp;
89   QLineEdit*               myMinEdit;
90   QLineEdit*               myMaxEdit;
91
92   QGroupBox*               myFontGrp;
93   QtxColorButton*          myTitleColorBtn;
94   QComboBox*               myTitleFontCombo;
95   QCheckBox*               myTitleBoldCheck;
96   QCheckBox*               myTitleItalicCheck;
97   QCheckBox*               myTitleShadowCheck;
98   QtxColorButton*          myLabelsColorBtn;
99   QComboBox*               myLabelsFontCombo;
100   QCheckBox*               myLabelsBoldCheck;
101   QCheckBox*               myLabelsItalicCheck;
102   QCheckBox*               myLabelsShadowCheck;
103   
104   QGroupBox*               myLabColorGrp;
105   QSpinBox*                myColorsSpin;
106   QSpinBox*                myLabelsSpin;
107
108   QGroupBox*               myOrientationGrp;
109   QRadioButton*            myVertRadioBtn;
110   QRadioButton*            myHorizRadioBtn;
111
112   QGroupBox*               myOriginDimGrp;
113   QtxDoubleSpinBox*        myXSpin;
114   QtxDoubleSpinBox*        myYSpin;
115   QtxDoubleSpinBox*        myWidthSpin;
116   QtxDoubleSpinBox*        myHeightSpin;
117
118   QGroupBox*               myButtonGrp;
119   QPushButton*             myOkBtn;
120   QPushButton*             myApplyBtn;
121   QPushButton*             myCancelBtn;
122 };
123
124 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H