X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=62fb2d2e82d57eb3b292f4318d8efa2536e03280;hb=af851100774c4ff33b515c884abe0cd03c3f0528;hp=81c7be59239fa714ae81ed2c170a6eb335392a55;hpb=07099736f9cfe28ecadd46d6801e4642cfe7f3c8;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 81c7be592..62fb2d2e8 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,19 +12,26 @@ 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); virtual ~ModuleBase_WidgetLabel(); - virtual bool storeValue() const - { - return true; - } + /// 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 restoreValue() { @@ -31,13 +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