X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=9fb8ddd76f2caad71ddfa3e8308ebf3d3eccb630;hb=450d1bd65c11870d3942a30164518037b9a7503e;hp=c3489952e7c7066ca03386840f072ef41a24f6ba;hpb=72cb66f9c09b0f8fa224f6f8ab43548658015b49;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index c3489952e..9fb8ddd76 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,26 +33,26 @@ 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() + virtual bool restoreValueCustom() { return true; } virtual QList getControls() const; - QWidget* getControl() const; - /// This control doesn't accept focus virtual bool focusTo() { return false; } -private: +protected: + /// Saves the internal parameters to the given feature + /// \return True in success + virtual bool storeValueCustom() const + { + return true; + } + /// A label control QLabel* myLabel; }; -#endif \ No newline at end of file +#endif