Salome HOME
Splash screen was implemented. Changes in packages SUIT and Session are integrated.
[modules/gui.git] / src / Qtx / QtxDblSpinBox.h
index 9adb490bb04392d2050d81c895b7ee94b2bc97c8..eea959f7a140f0f69d961050cfb7c06d30cfcb24 100755 (executable)
@@ -29,19 +29,19 @@ public:
   void               setMinValue( double );
   void               setMaxValue( double );
   void              setRange( int, int );
-  void               setRange( double, double );
+  virtual void       setRange( double, double );
 
   double                  lineStep() const;
   void               setLineStep( int );
-  void               setLineStep( double );
+  virtual void       setLineStep( double );
 
   double             value() const;
 
   int                precision() const;
-  void               setPrecision( const int );
+  virtual void       setPrecision( const int );
   
   bool               isCleared() const;
-  void               setCleared( const bool );
+  virtual void       setCleared( const bool );
   
   virtual bool       eventFilter( QObject*, QEvent* );
     
@@ -56,6 +56,9 @@ public slots:
   virtual void      setValue( int );
   virtual void      setValue( double );
   
+protected slots:
+  virtual void       onTextChanged( const QString& );
+
 protected:
   virtual void      updateDisplay();
   virtual void      interpretText();