X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=62fb2d2e82d57eb3b292f4318d8efa2536e03280;hb=144fb75724b240b9a627ce7179f43e04ee90b465;hp=c3489952e7c7066ca03386840f072ef41a24f6ba;hpb=5b24ea6ca4e9754fa89f7c742dce060abb2f3cda;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index c3489952e..62fb2d2e8 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -13,6 +13,7 @@ class QLabel; /** +* \ingroup GUI * Implementation of model widget for a label control */ class MODULEBASE_EXPORT ModuleBase_WidgetLabel : public ModuleBase_ModelWidget @@ -32,11 +33,6 @@ Q_OBJECT /// It returns false because this is an info widget virtual bool canSetValue() const { return false; }; - virtual bool storeValue() const - { - return true; - } - virtual bool restoreValue() { return true; @@ -44,14 +40,20 @@ Q_OBJECT virtual QList 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 storeValueCustom() const + { + return true; + } + private: /// A label control QLabel* myLabel; }; -#endif \ No newline at end of file +#endif