Salome HOME
+//#define MESSAGE(m) {cout<<m<<endl;}
[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
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef SMESHGUI_PREFERENCES_COLORDLG_H
29 #define SMESHGUI_PREFERENCES_COLORDLG_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 // SALOME Includes
34 //#include "SUIT_Config.h"
35 //#include "SUIT_Settings.h"
36
37 // IDL Headers
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SMESH_Gen)
40
41 // QT Includes
42 #include <qdialog.h>
43
44 class QButtonGroup;
45 class QFrame;
46 class QLabel;
47 class QPushButton;
48 class QSpinBox;
49 class QColor;
50 class SMESHGUI;
51
52 class SMESHGUI_EXPORT SMESHGUI_Preferences_ColorDlg : public QDialog
53
54     Q_OBJECT
55
56 public:
57     SMESHGUI_Preferences_ColorDlg( SMESHGUI*, const char* name = 0 );
58     ~SMESHGUI_Preferences_ColorDlg();
59
60     void   SetColor(int type, QColor color);
61     QColor GetColor(int type);
62     void   SetIntValue(int type, int value);
63     int    GetIntValue(int type);
64
65 private:
66     void closeEvent( QCloseEvent* e ) ;
67     void Init();
68
69 private slots:
70 //  void RadioButtonClicked(int radioButtonId);
71     void ClickOnOk();
72     void ClickOnCancel();
73     void DeactivateActiveDialog() ;
74     void ActivateThisDialog() ;
75
76     void SelectFillColor();
77     void SelectBackFaceColor();
78     void SelectOutlineColor();
79     void SelectNodeColor();
80
81 private:
82     SMESH::SMESH_Gen_var  myCompMesh ;                
83     SMESHGUI*             mySMESHGUI ;            
84
85     QButtonGroup*         ButtonGroup1;
86     QLabel*               TextLabel_Fill;
87     QPushButton*          btnFillColor;
88     QLabel*               TextLabel_Outine;
89     QPushButton*          btnOutlineColor;
90     QLabel*               TextLabel_Width;
91     QSpinBox*             SpinBox_Width;
92     QLabel*               TextLabel_BackFace;
93     QPushButton*          btnBackFaceColor;
94     QLabel*               TextLabel_ShrinkCoeff;
95     QSpinBox*             SpinBox_Shrink;
96     QButtonGroup*         ButtonGroup2;
97     QLabel*               TextLabel_Nodes_Color;
98     QPushButton*          btnNodeColor;
99     QLabel*               TextLabel_Nodes_Size;
100     QSpinBox*             SpinBox_Nodes_Size;
101     QButtonGroup*         GroupButtons;
102     QPushButton*          buttonOk;
103     QPushButton*          buttonCancel;
104 };
105
106 #endif // SMESHGUI_PREFERENCES_COLORDLG_H