Salome HOME
Prevent exception at shape selection if no mesh was pre-selected
[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-platorm.org or email : webmaster.salome@opencascade.org 
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
42 class SMESHGUI_LineEdit : public QLineEdit
43 {
44   Q_OBJECT
45
46   public:
47     SMESHGUI_LineEdit(QWidget* parent, const char* name = 0);
48     SMESHGUI_LineEdit(const QString& text, QWidget* parent, const char* name = 0);
49
50     ~SMESHGUI_LineEdit() {};
51
52   protected:
53     void focusOutEvent(QFocusEvent* e);
54 };
55
56 class SMESHGUI_DoubleValidator : public QDoubleValidator
57 {
58   Q_OBJECT
59
60   public:
61     SMESHGUI_DoubleValidator(QObject* parent, const char* name = 0);
62     SMESHGUI_DoubleValidator(double bottom, double top, int decimals,
63                             QObject* parent, const char* name = 0);
64
65     ~SMESHGUI_DoubleValidator() {};
66
67     void fixup(QString& text) const;
68 };
69
70 class SMESHGUI_Preferences_SelectionDlg : public QDialog
71
72     Q_OBJECT
73
74 public:
75     SMESHGUI_Preferences_SelectionDlg( QWidget* parent = 0, const char* name = 0 );
76     ~SMESHGUI_Preferences_SelectionDlg();
77
78     void   SetColor(int type, QColor color);
79     QColor GetColor(int type);
80     void   SetWidth(int type, int value);
81     int    GetWidth(int type);
82     void   SetPrecision(int type, double value);
83     double GetPrecision(int type);
84
85 private:
86     void closeEvent( QCloseEvent* e ) ;
87
88 private slots:
89     void onSelectColor();
90
91 private:
92     QPushButton*          myColor[3];
93     QSpinBox*             myWidth[2];
94     QLineEdit*            myPrecision[2];
95 };
96
97 #endif // SMESHGUI_PREFERENCES_SELECTIONDLG_H