Salome HOME
dc26a938483fb75f1b571e427bb3247430af798a
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_ColorDlg.h
1 //  Copyright (C) 2007-2010  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
75 private slots:
76   void                  ClickOnOk();
77   void                  ClickOnCancel();
78   void                  DeactivateActiveDialog();
79   void                  ActivateThisDialog();
80   
81 private:
82   SMESHGUI*             mySMESHGUI;            
83   
84   QtxColorButton*       btnFillColor;
85   QtxColorButton*       btnBackFaceColor;
86   QtxColorButton*       btnOutlineColor;
87   QtxColorButton*       btn0DElementsColor;
88   SalomeApp_IntSpinBox* SpinBox_0DElements_Size;
89   SalomeApp_IntSpinBox* SpinBox_Width;
90   SalomeApp_IntSpinBox* SpinBox_Shrink;
91   QtxColorButton*       btnNodeColor;
92   VTKViewer_MarkerWidget* MarkerWidget;
93   QtxColorButton*       btnOrientationColor;
94   SMESHGUI_SpinBox*     SpinBox_Orientation_Scale;
95   QCheckBox*            CheckBox_Orientation_3DVectors;
96 };
97
98 #endif // SMESHGUI_PREFERENCES_COLORDLG_H