]> SALOME platform Git repositories - modules/gui.git/blob - src/SalomeApp/SalomeApp_DoubleSpinBox.h
Salome HOME
[bos #42871] Clipping plane remains applied after being deleted
[modules/gui.git] / src / SalomeApp / SalomeApp_DoubleSpinBox.h
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File:      SalomeApp_DoubleSpinBox.h
21 // Author:    Oleg UVAROV
22 //
23 #ifndef SALOMEAPP_DOUBLESPINBOX_H
24 #define SALOMEAPP_DOUBLESPINBOX_H
25
26 #include "SalomeApp.h"
27
28 #include <QtxDoubleSpinBox.h>
29
30 #include <QValidator>
31
32 class SALOMEAPPIMPL_EXPORT SalomeApp_DoubleSpinBox : public QtxDoubleSpinBox
33 {
34   Q_OBJECT
35
36   enum State { Invalid = 0, NoVariable, Incompatible, Acceptable };
37   enum SearchState { NotFound = 0, IncorrectType, Found };
38
39 public:
40   SalomeApp_DoubleSpinBox( QWidget* = 0 );
41   SalomeApp_DoubleSpinBox( double, double, double = 1, QWidget* = 0 );
42   SalomeApp_DoubleSpinBox( double, double, double, int, int, QWidget* = 0, bool = true, bool = true );
43   virtual ~SalomeApp_DoubleSpinBox();
44
45   virtual void              stepBy( int );
46
47   virtual double            valueFromText( const QString& ) const;
48   virtual QString           textFromValue( double ) const;
49
50   virtual QValidator::State validate( QString&, int& ) const;
51
52   virtual bool              isValid( QString& msg, bool = false );
53
54   virtual void              setDefaultValue( const double );
55
56   virtual void              setRange( double, double );
57   virtual void              setValue( double );
58
59   virtual void              setText(const QString& );
60
61   void                      setAcceptNames( const bool );
62   bool                      isAcceptNames() const;
63
64   void                      setShowTipOnValidate( const bool );
65   bool                      isShowTipOnValidate() const;
66
67 signals:
68   void                      textChanged( const QString& );
69
70 protected:
71   State                     isValid( const QString&, double& ) const;
72
73   double                    defaultValue() const;
74   virtual bool              checkRange( const double ) const;
75
76   SearchState               findVariable( const QString&, double& ) const;
77
78   virtual void              showValidationToolTip(const QValidator::State state) const;
79
80 protected:
81   virtual void              keyPressEvent( QKeyEvent* );
82   virtual void              showEvent( QShowEvent* );
83
84 protected slots:
85   void                      onEditingFinished();
86   void                      onTextChanged( const QString& );
87
88 private:
89   void                      connectSignalsAndSlots();
90
91 private:
92   double                    myDefaultValue; 
93
94   bool                      myIsRangeSet;
95   double                    myMinimum;
96   double                    myMaximum;
97
98   QString                   myCorrectValue;
99   QString                   myTextValue;
100
101   bool                      myAcceptNames;
102   bool                      myShowTip;
103 };
104
105 #endif