X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IntSpinBox.cpp;h=eb7b69fdfa182992047fffd1d523c851052cd004;hb=refs%2Fheads%2FV9_11_BR;hp=933cc845563dec52a89788f2ae5d41aa3534ef79;hpb=5ba2ac3f39478507bd781082adb879a43d4afe7e;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 933cc8455..eb7b69fdf --- a/src/ModuleBase/ModuleBase_IntSpinBox.cpp +++ b/src/ModuleBase/ModuleBase_IntSpinBox.cpp @@ -1,30 +1,43 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_IntSpinBox.cxx -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2023 CEA, EDF +// +// 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) +: QSpinBox(theParent) { - connect(this, SIGNAL(valueChanged(const QString&)), this, SLOT(onValueChanged(const QString&))); } -void ModuleBase_IntSpinBox::onValueChanged(const QString& theValue) +void ModuleBase_IntSpinBox::keyPressEvent(QKeyEvent *theEvent) { - myIsModified = true; + switch (theEvent->key()) { + case Qt::Key_Enter: + case Qt::Key_Return: { + // do not react to the Enter key, the property panel processes it + return; + } + break; + default: + break; + } + QSpinBox::keyPressEvent(theEvent); } -bool ModuleBase_IntSpinBox::isModified() const -{ - return myIsModified; -} - -void ModuleBase_IntSpinBox::clearModified() -{ - myIsModified = false; -}