X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FQDS%2FQDS_CheckBox.h;h=62c0324bd9a31d5f1b048f3bf67206f04f50dffa;hb=4b9752a1020be8da956a719df6bde322304f8944;hp=8b1344b930ddd8c553bcc6696d8a0ec830cf5244;hpb=9f1a66957ba9a2308f8fdc3f9397140af9df5fd0;p=modules%2Fgui.git diff --git a/src/QDS/QDS_CheckBox.h b/src/QDS/QDS_CheckBox.h index 8b1344b93..62c0324bd 100644 --- a/src/QDS/QDS_CheckBox.h +++ b/src/QDS/QDS_CheckBox.h @@ -1,3 +1,25 @@ +// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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. +// +// 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 QDS_CHECKBOX_H #define QDS_CHECKBOX_H @@ -10,12 +32,14 @@ class QDS_EXPORT QDS_CheckBox : public QDS_Datum Q_OBJECT public: - QDS_CheckBox( const QString&, QWidget* = 0, const int = All, const QString& = QString::null ); + QDS_CheckBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() ); virtual ~QDS_CheckBox(); bool isChecked() const; void setChecked( const bool ); + virtual QString getString() const; + virtual void clear(); signals: @@ -29,7 +53,6 @@ protected: QCheckBox* checkBox() const; virtual QWidget* createControl( QWidget* ); - virtual QString getString() const; virtual void setString( const QString& ); };