Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ColorDlg.h
1 // Copyright (C) 2007-2012  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_ColorDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_PREFERENCES_COLORDLG_H
28 #define SMESHGUI_PREFERENCES_COLORDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // SALOME GUI includes
34 #include <VTKViewer_MarkerDef.h>
35 #include <QtxBiColorTool.h>
36
37 // Qt includes
38 #include <QDialog>
39
40 class QCheckBox;
41 class SMESHGUI;
42 class SMESHGUI_SpinBox;
43 class SalomeApp_IntSpinBox;
44 class QtxColorButton;
45 class VTKViewer_MarkerWidget;
46
47 class SMESHGUI_EXPORT SMESHGUI_Preferences_ColorDlg : public QDialog
48
49   Q_OBJECT
50     
51 public:
52   SMESHGUI_Preferences_ColorDlg( SMESHGUI* );
53   ~SMESHGUI_Preferences_ColorDlg();
54
55   void                  SetColor( int, const QColor& );
56   QColor                GetColor( int );
57   void                  SetIntValue( int, int );
58   int                   GetIntValue( int );
59   void                  SetDoubleValue( int, double );
60   double                GetDoubleValue( int );
61   void                  SetBooleanValue( int, bool );
62   bool                  GetBooleanValue( int );
63
64   void                  setCustomMarkerMap( VTK::MarkerMap );
65   VTK::MarkerMap        getCustomMarkerMap();
66
67   void                  SetDeltaBrightness(int);
68   int                   GetDeltaBrightness();
69
70   void                  setStandardMarker( VTK::MarkerType, VTK::MarkerScale );
71   void                  setCustomMarker( int );
72   VTK::MarkerType       getMarkerType() const;
73   VTK::MarkerScale      getStandardMarkerScale() const;
74   int                   getCustomMarkerID() const;
75
76 protected:
77   void                  closeEvent( QCloseEvent* );
78   void                  keyPressEvent( QKeyEvent* );
79
80 private slots:
81   void                  ClickOnOk();
82   void                  ClickOnCancel();
83   void                  ClickOnHelp();
84   void                  DeactivateActiveDialog();
85   void                  ActivateThisDialog();
86   
87 private:
88   SMESHGUI*             mySMESHGUI;            
89
90   QtxBiColorTool*       toolSurfColor; 
91   QtxColorButton*       btnWireframeColor;
92   QtxColorButton*       btnOutlineColor;
93   QtxColorButton*       btn0DElementsColor;
94   QtxColorButton*       btnBallElemColor;
95   SalomeApp_IntSpinBox* SpinBox_0DElements_Size;
96   SalomeApp_IntSpinBox* SpinBox_BallElem_Size;
97   SalomeApp_IntSpinBox* SpinBox_Width;
98   SalomeApp_IntSpinBox* SpinBox_Shrink;
99   QtxColorButton*       btnNodeColor;
100   VTKViewer_MarkerWidget* MarkerWidget;
101   QtxColorButton*       btnOrientationColor;
102   SMESHGUI_SpinBox*     SpinBox_Orientation_Scale;
103   QCheckBox*            CheckBox_Orientation_3DVectors;
104   QtxColorButton*       btnPreselectionColor;
105   QtxColorButton*       btnSelectionColor;
106
107   QString               myHelpFileName;
108 };
109
110 #endif // SMESHGUI_PREFERENCES_COLORDLG_H