X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=9f74e614bd06f877ed10c9a29d66907d953b7c4e;hb=f9fd953bf814fad40ae045f6164c7f80229b0872;hp=8d7d4281f9e490cadf1808040be4ad266d3480c5;hpb=a2686c838648dcf05659df3c31d9b90aca42b792;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 8d7d4281f..9f74e614b 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -33,26 +33,27 @@ 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; } +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