X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IntSpinBox.cpp;h=bfaa15afce7f3fae26c2cf93ea868d6a386e14f5;hb=3cae3b732cbc48455adeef43b3efd6dfc1cac81d;hp=197bfc22e52ebbf6f73c9d3a35a1c3b7e1de72bb;hpb=0b0fa85288c496a5774247f3f336c098160d6aeb;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IntSpinBox.cpp b/src/ModuleBase/ModuleBase_IntSpinBox.cpp old mode 100755 new mode 100644 index 197bfc22e..bfaa15afc --- a/src/ModuleBase/ModuleBase_IntSpinBox.cpp +++ b/src/ModuleBase/ModuleBase_IntSpinBox.cpp @@ -1,34 +1,31 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_IntSpinBox.cxx -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2019 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 +// + #include "ModuleBase_IntSpinBox.h" #include ModuleBase_IntSpinBox::ModuleBase_IntSpinBox(QWidget* theParent) -: QSpinBox(theParent)//, - //myIsModified(false) -{ - //connect(this, SIGNAL(valueChanged(const QString&)), this, SLOT(onValueChanged(const QString&))); -} - -/*void ModuleBase_IntSpinBox::onValueChanged(const QString& theValue) +: QSpinBox(theParent) { - myIsModified = true; } -bool ModuleBase_IntSpinBox::isModified() const -{ - return myIsModified; -} - -void ModuleBase_IntSpinBox::clearModified() -{ - myIsModified = false; -}*/ - void ModuleBase_IntSpinBox::keyPressEvent(QKeyEvent *theEvent) { switch (theEvent->key()) {