Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 #include "SMESH_SMESHGUI.hxx"
33
34
35 // QT Includes
36 #include <qdialog.h>
37 #include <qlineedit.h>
38 #include <qvalidator.h>
39
40 class QPushButton;
41 class QSpinBox;
42 class QColor;
43 class SMESHGUI;
44
45 class SMESHGUI_EXPORT SMESHGUI_LineEdit : public QLineEdit
46 {
47   Q_OBJECT
48
49   public:
50     SMESHGUI_LineEdit(QWidget* parent, const char* name = 0);
51     SMESHGUI_LineEdit(const QString& text, QWidget* parent, const char* name = 0);
52
53     ~SMESHGUI_LineEdit() {};
54
55   protected:
56     void focusOutEvent(QFocusEvent* e);
57 };
58
59 class SMESHGUI_EXPORT SMESHGUI_DoubleValidator : public QDoubleValidator
60 {
61   Q_OBJECT
62
63   public:
64     SMESHGUI_DoubleValidator(QObject* parent, const char* name = 0);
65     SMESHGUI_DoubleValidator(double bottom, double top, int decimals,
66                             QObject* parent, const char* name = 0);
67
68     ~SMESHGUI_DoubleValidator() {};
69
70     void fixup(QString& text) const;
71 };
72
73 class SMESHGUI_EXPORT SMESHGUI_Preferences_SelectionDlg : public QDialog
74
75     Q_OBJECT
76
77 public:
78     SMESHGUI_Preferences_SelectionDlg( SMESHGUI*, const char* name = 0 );
79     ~SMESHGUI_Preferences_SelectionDlg();
80
81     void   SetColor(int type, QColor color);
82     QColor GetColor(int type);
83     void   SetWidth(int type, int value);
84     int    GetWidth(int type);
85     void   SetPrecision(int type, double value);
86     double GetPrecision(int type);
87
88 private:
89     void closeEvent( QCloseEvent* e ) ;
90
91 private slots:
92     void onSelectColor();
93
94 private:
95     SMESHGUI*             mySMESHGUI;
96     QPushButton*          myColor[3];
97     QSpinBox*             myWidth[2];
98     QLineEdit*            myPrecision[2];
99 };
100
101 #endif // SMESHGUI_PREFERENCES_SELECTIONDLG_H