Salome HOME
updated copyright message
[modules/gui.git] / src / Qtx / QtxIntSpinBox.h
old mode 100755 (executable)
new mode 100644 (file)
index 7f083d5..49269f9
@@ -1,60 +1,57 @@
-// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
-// 
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either 
-// version 2.1 of the License.
-// 
-// This library is distributed in the hope that it will be useful 
-// but WITHOUT ANY WARRANTY; without even the implied warranty of 
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Lesser General Public License for more details.
 //
-// You should have received a copy of the GNU Lesser General Public  
-// License along with this library; if not, write to the Free Software 
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 // File:      QtxIntSpinBox.h
 // Author:    Sergey TELKOV
-
+//
 #ifndef QTXINTSPINBOX_H
 #define QTXINTSPINBOX_H
 
 #include "Qtx.h"
 
-#include <qspinbox.h>
+#include <QSpinBox>
 
 class QTX_EXPORT QtxIntSpinBox : public QSpinBox
 {
-    Q_OBJECT
+  Q_OBJECT
 
 public:
-  QtxIntSpinBox( QWidget* = 0, const char* = 0 );
-  QtxIntSpinBox( int, int, int = 1, QWidget* = 0, const char* = 0 );
+  QtxIntSpinBox( QWidget* = 0 );
+  QtxIntSpinBox( int, int, int = 1, QWidget* = 0 );
   virtual ~QtxIntSpinBox();
     
-  bool         isCleared() const;
-  virtual void setCleared( const bool );
-    
-  virtual bool eventFilter( QObject*, QEvent* );
+  bool            isCleared() const;
+  virtual void    setCleared( const bool );
     
-public slots:
-  virtual void setValue( int );
-
+  virtual void    stepBy( int );
+  
 protected slots:
-  virtual void onTextChanged( const QString& );
+  virtual void    onTextChanged( const QString& );
   
 protected:
-  virtual void interpretText();
-  virtual void updateDisplay();
-  virtual void leaveEvent( QEvent* );
-  virtual void wheelEvent( QWheelEvent* );
+  virtual QString textFromValue( int ) const;
     
 private:
-  bool         myCleared;
-  bool         myBlocked;
+  bool            myCleared;
 };
 
 #endif