Salome HOME
Issue #1343 Improvement of Extrusion and Revolution operations: correction for the...
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetLabel.h
index fd0112ff19b88c3b24a4ec8cd0d8e3a07daf0050..97454bf6f771c737fbd266395db9cb5ff77fa627 100644 (file)
@@ -23,39 +23,34 @@ Q_OBJECT
   /// Constructor
   /// \param theParent the parent object
   /// \param theData the widget configuation. The attribute of the model widget is obtained from
-  /// \param theParentId is Id of a parent of the current attribute
-  ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData,
-                            const std::string& theParentId);
+  ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData);
 
   virtual ~ModuleBase_WidgetLabel();
 
   /// Defines if it is supported to set the value in this widget
   /// It returns false because this is an info widget
-  virtual bool canSetValue() const { return false; };
+  virtual bool canAcceptFocus() const { return false; };
 
-  virtual bool restoreValue()
+  virtual bool restoreValueCustom()
   {
     return true;
   }
 
   virtual QList<QWidget*> getControls() const;
 
-  QWidget* getControl() const;
-
   /// This control doesn't accept focus
   virtual bool focusTo() { return false; }
 
 protected:
   /// Saves the internal parameters to the given feature
   /// \return True in success
-  virtual bool storeValue() const
+  virtual bool storeValueCustom() const
   {
     return true;
   }
 
-private:
   /// A label control
   QLabel* myLabel;
 };
 
-#endif
\ No newline at end of file
+#endif