Salome HOME
Update copyright
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ScalarBarDlg.h
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_Preferences_ScalarBarDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_PREFERENCES_SCALARBARDLG_H
28 #define SMESHGUI_PREFERENCES_SCALARBARDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 class QCheckBox;
37 class QComboBox;
38 class QGroupBox;
39 class QLineEdit;
40 class QPushButton;
41 class QToolButton;
42 class QRadioButton;
43 class QButtonGroup;
44 class QLabel;
45
46 class SMESHGUI;
47 class SMESH_Actor;
48 class SMESHGUI_SpinBox;
49 class SalomeApp_IntSpinBox;
50 class QtxColorButton;
51 class LightApp_SelectionMgr;
52
53 class SMESHGUI_EXPORT SMESHGUI_Preferences_ScalarBarDlg : public QDialog
54
55   Q_OBJECT
56
57 private:
58   SMESHGUI_Preferences_ScalarBarDlg( SMESHGUI* );
59
60   static SMESHGUI_Preferences_ScalarBarDlg* myDlg;
61
62 public:
63   ~SMESHGUI_Preferences_ScalarBarDlg();
64
65   static void              ScalarBarProperties( SMESHGUI* );
66
67   void                     closeEvent( QCloseEvent* );
68   void                     setOriginAndSize( const double,
69                                              const double,
70                                              const double,
71                                              const double );
72   void                     initScalarBarFromResources();
73
74 protected slots:
75   void                     onOk();
76   bool                     onApply();
77   void                     onCancel();
78   void                     onHelp();
79   void                     onSelectionChanged();
80   void                     onXYChanged();
81   void                     onOrientationChanged();
82   void                     onDistributionChanged( int );
83   void                     onDistributionActivated( bool );
84
85 private:
86   SMESHGUI*                mySMESHGUI;
87   LightApp_SelectionMgr*   mySelectionMgr;
88   SMESH_Actor*             myActor;
89   double                   myIniX, myIniY, myIniW, myIniH;
90   int                      myIniOrientation;
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;
93
94   QGroupBox*               myRangeGrp;
95   QLineEdit*               myMinEdit;
96   QLineEdit*               myMaxEdit;
97
98   QGroupBox*               myFontGrp;
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;
109   
110   QGroupBox*               myLabColorGrp;
111   SalomeApp_IntSpinBox*    myColorsSpin;
112   SalomeApp_IntSpinBox*    myLabelsSpin;
113
114   QGroupBox*               myOrientationGrp;
115   QRadioButton*            myVertRadioBtn;
116   QRadioButton*            myHorizRadioBtn;
117
118   QGroupBox*               myOriginDimGrp;
119   SMESHGUI_SpinBox*        myXSpin;
120   SMESHGUI_SpinBox*        myYSpin;
121   SMESHGUI_SpinBox*        myWidthSpin;
122   SMESHGUI_SpinBox*        myHeightSpin;
123
124   QGroupBox*               myDistributionGrp;
125   QRadioButton*            myDMonoColor;
126   QRadioButton*            myDMultiColor;
127   QtxColorButton*          myMonoColorBtn;
128   QLabel*                  myDistributionColorLbl;
129
130   QGroupBox*               myButtonGrp;
131   QButtonGroup*            myDistribColorGrp;
132   QPushButton*             myOkBtn;
133   QPushButton*             myApplyBtn;
134   QPushButton*             myCancelBtn;
135   QPushButton*             myHelpBtn;
136
137   QString                  myHelpFileName;
138 };
139
140 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H