X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=8d7d4281f9e490cadf1808040be4ad266d3480c5;hb=a2982d2108f929cf9e7f996cfd590c4ce59dc21c;hp=3fbf7e883411325fe921c9279f0910e3f6023a26;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 3fbf7e883..8d7d4281f 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -12,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); @@ -43,6 +51,7 @@ Q_OBJECT virtual bool focusTo() { return false; } private: + /// A label control QLabel* myLabel; };