Salome HOME
0022364: EDF SMESH: Create Mesh dialog box improvement: hide inapplicable algorithms...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ScalarBarDlg.h
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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                     setOriginAndSize( const double,
68                                              const double,
69                                              const double,
70                                              const double );
71   void                     initScalarBarFromResources();
72
73 protected slots:
74   virtual void             reject();
75
76 protected slots:
77   void                     onOk();
78   bool                     onApply();
79   void                     onHelp();
80   void                     onSelectionChanged();
81   void                     onXYChanged();
82   void                     onMinMaxChanged();
83   void                     onOrientationChanged();
84   void                     onDistributionChanged( int );
85   void                     onDistributionActivated( bool );
86
87 private:
88   SMESHGUI*                mySMESHGUI;
89   LightApp_SelectionMgr*   mySelectionMgr;
90   SMESH_Actor*             myActor;
91   double                   myIniX, myIniY, myIniW, myIniH;
92   int                      myIniOrientation;
93   double                   DEF_VER_X, DEF_VER_Y, DEF_VER_H, DEF_VER_W;
94   double                   DEF_HOR_X, DEF_HOR_Y, DEF_HOR_H, DEF_HOR_W;
95
96   QGroupBox*               myRangeGrp;
97   QLineEdit*               myMinEdit;
98   QLineEdit*               myMaxEdit;
99   QCheckBox*               myLogarithmicCheck;
100
101   QGroupBox*               myFontGrp;
102   QtxColorButton*          myTitleColorBtn;
103   QComboBox*               myTitleFontCombo;
104   QCheckBox*               myTitleBoldCheck;
105   QCheckBox*               myTitleItalicCheck;
106   QCheckBox*               myTitleShadowCheck;
107   QtxColorButton*          myLabelsColorBtn;
108   QComboBox*               myLabelsFontCombo;
109   QCheckBox*               myLabelsBoldCheck;
110   QCheckBox*               myLabelsItalicCheck;
111   QCheckBox*               myLabelsShadowCheck;
112   
113   QGroupBox*               myLabColorGrp;
114   SalomeApp_IntSpinBox*    myColorsSpin;
115   SalomeApp_IntSpinBox*    myLabelsSpin;
116
117   QGroupBox*               myOrientationGrp;
118   QRadioButton*            myVertRadioBtn;
119   QRadioButton*            myHorizRadioBtn;
120
121   QGroupBox*               myOriginDimGrp;
122   SMESHGUI_SpinBox*        myXSpin;
123   SMESHGUI_SpinBox*        myYSpin;
124   SMESHGUI_SpinBox*        myWidthSpin;
125   SMESHGUI_SpinBox*        myHeightSpin;
126
127   QGroupBox*               myDistributionGrp;
128   QRadioButton*            myDMonoColor;
129   QRadioButton*            myDMultiColor;
130   QtxColorButton*          myMonoColorBtn;
131   QLabel*                  myDistributionColorLbl;
132
133   QGroupBox*               myButtonGrp;
134   QButtonGroup*            myDistribColorGrp;
135   QPushButton*             myOkBtn;
136   QPushButton*             myApplyBtn;
137   QPushButton*             myCancelBtn;
138   QPushButton*             myHelpBtn;
139
140   QString                  myHelpFileName;
141 };
142
143 #endif // SMESHGUI_PREFERENCES_SCALARBARDLG_H