Salome HOME
#1083 errors in parameter
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetIntValue.h
index 255e716035b009b31f9403eb45e8371320dbff52..ffc52d9f97271631e8f054b6860a69cc1f292c12 100644 (file)
 #include "ModuleBase.h"
 #include "ModuleBase_ModelWidget.h"
 
+class ModuleBase_IntSpinBox;
 class Config_WidgetAPI;
 class QWidget;
 class QLabel;
 class QTimer;
-class QSpinBox;
 
 /**
 * \ingroup GUI
@@ -37,13 +37,12 @@ Q_OBJECT
 
   virtual ~ModuleBase_WidgetIntValue();
 
-  /// Fills the widget with default values
-  virtual bool reset();
-
   /// Returns list of widget controls
   /// \return a control list
   virtual QList<QWidget*> getControls() const;
 
+  /// Returns true if the event is processed.
+  virtual bool processEnter();
 
 protected:
   /// Saves the internal parameters to the given feature
@@ -54,12 +53,16 @@ protected:
   // \return True in success
   virtual bool restoreValueCustom();
 
+  /// Fills the widget with default values
+  /// \return true if the widget current value is reset
+  virtual bool resetCustom();
+
 protected:
   /// Label of the widget
   QLabel* myLabel;
 
   /// Input value control
-  QSpinBox* mySpinBox;
+  ModuleBase_IntSpinBox* mySpinBox;
 };
 
 #endif