X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=be90456c0c49989f467758f874bb8d37fdfc4592;hb=20d35238897e717b51eaba89f9ba3695ebf57e49;hp=81c7be59239fa714ae81ed2c170a6eb335392a55;hpb=07099736f9cfe28ecadd46d6801e4642cfe7f3c8;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 81c7be592..be90456c0 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -1,6 +1,21 @@ -// File: ModuleBase_WidgetLabel.h -// Created: 03 Dec 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef ModuleBase_WidgetLabel_H #define ModuleBase_WidgetLabel_H @@ -10,34 +25,42 @@ class QLabel; +/** +* \ingroup GUI +* Implementation of model widget for a label control +*/ class MODULEBASE_EXPORT ModuleBase_WidgetLabel : public ModuleBase_ModelWidget { Q_OBJECT public: - ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData, - const std::string& theParentId); + /// Constructor + /// \param theParent the parent object + /// \param theData the widget configuation. The attribute of the model widget is obtained from + ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData); 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 canAcceptFocus() const { return false; }; - virtual bool restoreValue() - { - return true; - } + virtual bool restoreValueCustom(); virtual QList getControls() const; - QWidget* getControl() const; - /// This control doesn't accept focus - virtual bool focusTo() { return false; } + virtual bool focusTo(); + +protected: + /// Saves the internal parameters to the given feature + /// \return True in success + virtual bool storeValueCustom() + { + return true; + } -private: + /// A label control QLabel* myLabel; }; -#endif \ No newline at end of file +#endif