Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Preferences_SelectionDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : SMESHGUI_Preferences_SelectionDlg.h
25 //  Author : Natalia KOPNOVA
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef SMESHGUI_PREFERENCES_SELECTIONDLG_H
30 #define SMESHGUI_PREFERENCES_SELECTIONDLG_H
31
32
33 // QT Includes
34 #include <qdialog.h>
35 #include <qlineedit.h>
36 #include <qvalidator.h>
37
38 class QPushButton;
39 class QSpinBox;
40 class QColor;
41 class SMESHGUI;
42
43 class SMESHGUI_LineEdit : public QLineEdit
44 {
45   Q_OBJECT
46
47   public:
48     SMESHGUI_LineEdit(QWidget* parent, const char* name = 0);
49     SMESHGUI_LineEdit(const QString& text, QWidget* parent, const char* name = 0);
50
51     ~SMESHGUI_LineEdit() {};
52
53   protected:
54     void focusOutEvent(QFocusEvent* e);
55 };
56
57 class SMESHGUI_DoubleValidator : public QDoubleValidator
58 {
59   Q_OBJECT
60
61   public:
62     SMESHGUI_DoubleValidator(QObject* parent, const char* name = 0);
63     SMESHGUI_DoubleValidator(double bottom, double top, int decimals,
64                             QObject* parent, const char* name = 0);
65
66     ~SMESHGUI_DoubleValidator() {};
67
68     void fixup(QString& text) const;
69 };
70
71 class SMESHGUI_Preferences_SelectionDlg : public QDialog
72
73     Q_OBJECT
74
75 public:
76     SMESHGUI_Preferences_SelectionDlg( SMESHGUI*, const char* name = 0 );
77     ~SMESHGUI_Preferences_SelectionDlg();
78
79     void   SetColor(int type, QColor color);
80     QColor GetColor(int type);
81     void   SetWidth(int type, int value);
82     int    GetWidth(int type);
83     void   SetPrecision(int type, double value);
84     double GetPrecision(int type);
85
86 private:
87     void closeEvent( QCloseEvent* e ) ;
88
89 private slots:
90     void onSelectColor();
91
92 private:
93     SMESHGUI*             mySMESHGUI;
94     QPushButton*          myColor[3];
95     QSpinBox*             myWidth[2];
96     QLineEdit*            myPrecision[2];
97 };
98
99 #endif // SMESHGUI_PREFERENCES_SELECTIONDLG_H