InputLine history handling improved
[quassel.git] / src / uisupport / inputline.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "inputline.h"
22
23 #include "tabcompleter.h"
24
25 InputLine::InputLine(QWidget *parent)
26   : QLineEdit(parent),
27     idx(0),
28     tabCompleter(new TabCompleter(this))
29 {
30   connect(this, SIGNAL(returnPressed()), this, SLOT(on_returnPressed()));
31   connect(this, SIGNAL(textChanged(QString)), this, SLOT(on_textChanged(QString)));
32 }
33
34 InputLine::~InputLine() {
35 }
36
37 void InputLine::keyPressEvent(QKeyEvent * event) {
38   switch(event->key()) {
39   case Qt::Key_Up:
40     event->accept();
41
42     addToHistory(text(), true);
43     
44     if(idx > 0) {
45       idx--;
46       showHistoryEntry();
47     }
48
49     break;
50     
51   case Qt::Key_Down:
52     event->accept();
53
54     addToHistory(text(), true);
55     
56     if(idx < history.count()) {
57       idx++;
58       if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
59         showHistoryEntry();
60       else
61         resetLine();              // equals clear() in this case
62     } else {
63       addToHistory(text());
64       resetLine();
65     }
66
67     break;
68     
69   case Qt::Key_Select:          // for Qtopia
70     emit returnPressed();
71
72   default:
73     QLineEdit::keyPressEvent(event);
74   }
75 }
76
77 bool InputLine::addToHistory(const QString &text, bool temporary) {
78   if(text.isEmpty())
79     return false;
80
81   Q_ASSERT(0 <= idx && idx <= history.count());
82   
83   if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
84     // if an entry of the history is changed, we remember it and show it again at this
85     // position until a line was actually sent
86     // sent lines get appended to the history
87     if(temporary) {
88       tempHistory[idx] = text;
89     } else {
90       history << text;
91       tempHistory.clear();
92     }
93     return true;
94   } else {
95     return false;
96   }
97 }
98
99 void InputLine::on_returnPressed() {
100   addToHistory(text());
101   emit sendText(text());
102   resetLine();
103 }
104
105 void InputLine::on_textChanged(QString newText) {
106   QStringList lineSeperators;
107   lineSeperators << QString("\r\n")
108                  << QString('\n')
109                  << QString('\r');
110   
111   QString lineSep;
112   foreach(QString seperator, lineSeperators) {
113     if(newText.contains(seperator)) {
114       lineSep = seperator;
115       break;
116     }
117   }
118
119   if(lineSep.isEmpty())
120     return;
121   
122   if(newText.contains(lineSep)) {
123     clear();
124     QString line = newText.section(lineSep, 0, 0);
125     QString remainder = newText.section(lineSep, 1);
126     insert(line);
127     emit returnPressed();
128     insert(remainder);
129   }
130 }
131
132 void InputLine::resetLine() {
133   // every time the InputLine is cleared we also reset history index
134   idx = history.count();
135   clear();
136 }
137
138 void InputLine::showHistoryEntry() {
139   // if the user changed the history, display the changed line
140   tempHistory.contains(idx) ? setText(tempHistory[idx]) : setText(history[idx]);
141 }