X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModuleBase%2FModuleBase_ParamSpinBox.h;h=8298d1e1cf3b7e66aff0514d0c47ee6a5f97c86e;hb=374a366d81778aa27ed32cc080c0f95bdb03f1c5;hp=696bf0cd79bf4ad1e3e812587502566017bf46e7;hpb=1c3738ae81b02ba62136ac03a53a81a532b95141;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ParamSpinBox.h b/src/ModuleBase/ModuleBase_ParamSpinBox.h index 696bf0cd7..8298d1e1c 100644 --- a/src/ModuleBase/ModuleBase_ParamSpinBox.h +++ b/src/ModuleBase/ModuleBase_ParamSpinBox.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2021 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 @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef ModuleBase_ParamSpinBox_H @@ -51,7 +50,7 @@ public: \param theParent a parent object \param thePrecision a precision of values display */ - ModuleBase_ParamSpinBox( QWidget* theParent = 0, int thePrecision = -12 ); + ModuleBase_ParamSpinBox( QWidget* theParent = 0, int thePrecision = 12 ); /// Set list of completion strings void setCompletionList(QStringList&); @@ -102,6 +101,12 @@ protected: */ virtual void keyReleaseEvent(QKeyEvent *event); + virtual bool eventFilter(QObject* theObj, QEvent* theEvent); + + /// The virtual function is reimplemented in order to avoid extra increasing of value by StepBy + /// method + virtual void timerEvent(QTimerEvent* /*event*/) {} + virtual StepEnabled stepEnabled() const { return StepUpEnabled | StepDownEnabled; } /// Returns True if the given text contains variable @@ -139,13 +144,13 @@ private slots: private: QString getPrefix(int& theStart, int& theEnd) const; + void showCompletion(bool checkPrefix); bool myIsEquation; bool myAcceptVariables; QStringListModel* myCompleterModel; QCompleter* myCompleter; - int myPrecision; double myMinimum; double myMaximum;