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