Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ColorDlg.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_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
36 // Qt includes
37 #include <QDialog>
38
39 class QCheckBox;
40 class SMESHGUI;
41 class SMESHGUI_SpinBox;
42 class SalomeApp_IntSpinBox;
43 class QtxColorButton;
44 class VTKViewer_MarkerWidget;
45
46 class SMESHGUI_EXPORT SMESHGUI_Preferences_ColorDlg : public QDialog
47
48   Q_OBJECT
49     
50 public:
51   SMESHGUI_Preferences_ColorDlg( SMESHGUI* );
52   ~SMESHGUI_Preferences_ColorDlg();
53
54   void                  SetColor( int, const QColor& );
55   QColor                GetColor( int );
56   void                  SetIntValue( int, int );
57   int                   GetIntValue( int );
58   void                  SetDoubleValue( int, double );
59   double                GetDoubleValue( int );
60   void                  SetBooleanValue( int, bool );
61   bool                  GetBooleanValue( int );
62
63   void                  setCustomMarkerMap( VTK::MarkerMap );
64   VTK::MarkerMap        getCustomMarkerMap();
65
66   void                  setStandardMarker( VTK::MarkerType, VTK::MarkerScale );
67   void                  setCustomMarker( int );
68   VTK::MarkerType       getMarkerType() const;
69   VTK::MarkerScale      getStandardMarkerScale() const;
70   int                   getCustomMarkerID() const;
71
72 protected:
73   void                  closeEvent( QCloseEvent* );
74   void                  keyPressEvent( QKeyEvent* );
75
76 private slots:
77   void                  ClickOnOk();
78   void                  ClickOnCancel();
79   void                  ClickOnHelp();
80   void                  DeactivateActiveDialog();
81   void                  ActivateThisDialog();
82   
83 private:
84   SMESHGUI*             mySMESHGUI;            
85   
86   QtxColorButton*       btnFillColor;
87   QtxColorButton*       btnBackFaceColor;
88   QtxColorButton*       btnOutlineColor;
89   QtxColorButton*       btn0DElementsColor;
90   SalomeApp_IntSpinBox* SpinBox_0DElements_Size;
91   SalomeApp_IntSpinBox* SpinBox_Width;
92   SalomeApp_IntSpinBox* SpinBox_Shrink;
93   QtxColorButton*       btnNodeColor;
94   VTKViewer_MarkerWidget* MarkerWidget;
95   QtxColorButton*       btnOrientationColor;
96   SMESHGUI_SpinBox*     SpinBox_Orientation_Scale;
97   QCheckBox*            CheckBox_Orientation_3DVectors;
98
99   QString               myHelpFileName;
100 };
101
102 #endif // SMESHGUI_PREFERENCES_COLORDLG_H