InputLine history handling improved
authorDaniel Albers <daniel@lbers.com>
Sun, 19 Oct 2008 11:38:38 +0000 (13:38 +0200)
committerMarcus Eggenberger <egs@quassel-irc.org>
Sun, 19 Oct 2008 11:54:48 +0000 (13:54 +0200)
- The InputLine isn't cleared as often (KeyUp/Down)
- Changed InputLine history entries are preserved until a line is sent
- As soon as a new line is sent, changed history entries are restored, the sent line gets appended to the history
- KeyDown on the last line also appends lines to the history

src/uisupport/inputline.cpp
src/uisupport/inputline.h

index 521613f..b48c053 100644 (file)
@@ -39,14 +39,11 @@ void InputLine::keyPressEvent(QKeyEvent * event) {
   case Qt::Key_Up:
     event->accept();
 
-    if(addToHistory(text())) {
-      clear();
-      break;
-    }
+    addToHistory(text(), true);
     
     if(idx > 0) {
       idx--;
-      setText(history[idx]);
+      showHistoryEntry();
     }
 
     break;
@@ -54,18 +51,18 @@ void InputLine::keyPressEvent(QKeyEvent * event) {
   case Qt::Key_Down:
     event->accept();
 
-    if(addToHistory(text())) {
-      clear();
-      break;
-    }
+    addToHistory(text(), true);
     
-    if(idx < history.count())
+    if(idx < history.count()) {
       idx++;
-
-    if(idx < history.count())
-      setText(history[idx]);
-    else
-      clear();
+      if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
+        showHistoryEntry();
+      else
+        resetLine();              // equals clear() in this case
+    } else {
+      addToHistory(text());
+      resetLine();
+    }
 
     break;
     
@@ -77,17 +74,22 @@ void InputLine::keyPressEvent(QKeyEvent * event) {
   }
 }
 
-bool InputLine::addToHistory(const QString &text) {
+bool InputLine::addToHistory(const QString &text, bool temporary) {
   if(text.isEmpty())
     return false;
 
   Q_ASSERT(0 <= idx && idx <= history.count());
   
   if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
-    // if we change an entry of the history the changed entry is appended to the list and we seek to the end
-    // we could also easily change the entry in the history... per setting maybe?
-    history << text;
-    idx = history.count();
+    // if an entry of the history is changed, we remember it and show it again at this
+    // position until a line was actually sent
+    // sent lines get appended to the history
+    if(temporary) {
+      tempHistory[idx] = text;
+    } else {
+      history << text;
+      tempHistory.clear();
+    }
     return true;
   } else {
     return false;
@@ -97,7 +99,7 @@ bool InputLine::addToHistory(const QString &text) {
 void InputLine::on_returnPressed() {
   addToHistory(text());
   emit sendText(text());
-  clear();
+  resetLine();
 }
 
 void InputLine::on_textChanged(QString newText) {
@@ -125,6 +127,15 @@ void InputLine::on_textChanged(QString newText) {
     emit returnPressed();
     insert(remainder);
   }
-  
 }
 
+void InputLine::resetLine() {
+  // every time the InputLine is cleared we also reset history index
+  idx = history.count();
+  clear();
+}
+
+void InputLine::showHistoryEntry() {
+  // if the user changed the history, display the changed line
+  tempHistory.contains(idx) ? setText(tempHistory[idx]) : setText(history[idx]);
+}
index 453f286..88d6062 100644 (file)
@@ -40,18 +40,22 @@ private slots:
   void on_returnPressed();
   void on_textChanged(QString newText);
 
-  bool addToHistory(const QString &text);
+  bool addToHistory(const QString &text, bool temporary = false);
 
 signals:
   void sendText(QString text);
 
 private:
   QStringList history;
+  QHash<int, QString> tempHistory;
   qint32 idx;
   TabCompleter *tabCompleter;
 
   int bindModifier;
   int jumpModifier;
+
+  void resetLine();
+  void showHistoryEntry();
 };
 
 #endif