]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Provide completion on editing
authorvsv <vsv@opencascade.com>
Wed, 4 Jul 2018 17:54:27 +0000 (20:54 +0300)
committervsv <vsv@opencascade.com>
Wed, 4 Jul 2018 17:54:27 +0000 (20:54 +0300)
src/ModuleBase/ModuleBase_ParamSpinBox.cpp
src/ModuleBase/ModuleBase_ParamSpinBox.h

index d0f527331337389f668e0ab172b0af475c65feef..97b8e3f22123643d4a132e60ecad58a075dd4a52 100644 (file)
@@ -209,14 +209,21 @@ bool ModuleBase_ParamSpinBox::hasVariable(const QString& theText) const
   return !isDouble;
 }
 
-void ModuleBase_ParamSpinBox::showCompletion()
+void ModuleBase_ParamSpinBox::showCompletion(bool checkPrefix)
 {
   myCompletePos = lineEdit()->cursorPosition();
   int aStart, aEnd;
   QString aPrefix;
   aPrefix = getPrefix(aStart, aEnd);
-  myCompleter->setCompletionPrefix(aPrefix);
-  myCompleter->complete();
+  if (checkPrefix) {
+    if (aPrefix.length() > 0) {
+      myCompleter->setCompletionPrefix(aPrefix);
+      myCompleter->complete();
+    }
+  } else {
+    myCompleter->setCompletionPrefix(aPrefix);
+    myCompleter->complete();
+  }
 }
 
 void ModuleBase_ParamSpinBox::keyReleaseEvent(QKeyEvent* e)
@@ -225,7 +232,10 @@ void ModuleBase_ParamSpinBox::keyReleaseEvent(QKeyEvent* e)
 
   switch (e->key()) {
   case Qt::Key_Backspace:
-    showCompletion();
+    if (myCompleter->popup()->isVisible()) {
+      myCompleter->popup()->hide();
+    }
+    showCompletion(true);
     break;
   case Qt::Key_Return:
   case Qt::Key_Enter:
@@ -237,14 +247,14 @@ void ModuleBase_ParamSpinBox::keyReleaseEvent(QKeyEvent* e)
     break;
   case Qt::Key_Space:
     if (e->modifiers() & Qt::ControlModifier) {
-      showCompletion();
+      showCompletion(false);
     }
     break;  default:
     aText = e->text();
     if (aText.length() == 1) {
       QChar aChar = aText.at(0);
       if (isVariableSymbol(aChar)) {
-        showCompletion();
+        showCompletion(true);
       }
     }
   }
index 489d082fd7136808fa17e2035bc1c447468fc483..7e33da9c693b911267cd86bb33c2dae083efcf40 100644 (file)
@@ -142,7 +142,7 @@ private slots:
 
 private:
   QString getPrefix(int& theStart, int& theEnd) const;
-  void showCompletion();
+  void showCompletion(bool checkPrefix);
 
   bool myIsEquation;
   bool myAcceptVariables;