X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=714f1e3cc182d37853ec0a26bbb7175ec6aa29a8;hb=f2f34e30b41047d12277ad87e1adf6c0e410e4ff;hp=7935316dace0ce9fe9eabe8e36af1c3e326c96b3;hpb=a7f44a41bdf29e7bd978ff3b8c8bd514d1223be7;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 7935316da..714f1e3cc 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -1,6 +1,22 @@ -// File: ModuleBase_WidgetLabel.h -// Created: 03 Dec 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2017 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,38 +26,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(); /// 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 canAcceptFocus() const { return false; }; - virtual bool storeValue() const - { - return true; - } - - 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