X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=9fb8ddd76f2caad71ddfa3e8308ebf3d3eccb630;hb=061a63480f6840b6d945f7744b3b972e2d4cb25d;hp=7935316dace0ce9fe9eabe8e36af1c3e326c96b3;hpb=1bc9554419b233108be1f488edfd998c7e1d9618;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 7935316da..9fb8ddd76 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModuleBase_WidgetLabel.h // Created: 03 Dec 2014 // Author: Vitaly SMETANNIKOV @@ -10,10 +12,18 @@ class QLabel; +/** +* \ingroup GUI +* Implementation of model widget for a label control +*/ class MODULEBASE_EXPORT ModuleBase_WidgetLabel : public ModuleBase_ModelWidget { Q_OBJECT public: + /// 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); @@ -23,25 +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