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