Quassel no longer gets a nervous breakdown when you select too many buffers - fixes...
[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 #include "tabcompleter.h"
23
24 InputLine::InputLine(QWidget *parent)
25   : QLineEdit(parent),
26     idx(0),
27     tabCompleter(new TabCompleter(this))
28 {
29   connect(this, SIGNAL(returnPressed()), this, SLOT(on_returnPressed()));
30   connect(this, SIGNAL(textChanged(QString)), this, SLOT(on_textChanged(QString)));
31 }
32
33 InputLine::~InputLine() {
34 }
35
36 void InputLine::keyPressEvent(QKeyEvent * event) {
37   switch(event->key()) {
38   case Qt::Key_Up:
39     event->accept();
40
41     addToHistory(text(), true);
42
43     if(idx > 0) {
44       idx--;
45       showHistoryEntry();
46     }
47
48     break;
49
50   case Qt::Key_Down:
51     event->accept();
52
53     addToHistory(text(), true);
54
55     if(idx < history.count()) {
56       idx++;
57       if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
58         showHistoryEntry();
59       else
60         resetLine();              // equals clear() in this case
61     } else {
62       addToHistory(text());
63       resetLine();
64     }
65
66     break;
67
68   case Qt::Key_Select:          // for Qtopia
69     emit returnPressed();
70
71   default:
72     QLineEdit::keyPressEvent(event);
73   }
74 }
75
76 bool InputLine::addToHistory(const QString &text, bool temporary) {
77   if(text.isEmpty())
78     return false;
79
80   Q_ASSERT(0 <= idx && idx <= history.count());
81
82   if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
83     // if an entry of the history is changed, we remember it and show it again at this
84     // position until a line was actually sent
85     // sent lines get appended to the history
86     if(temporary) {
87       tempHistory[idx] = text;
88     } else {
89       history << text;
90       tempHistory.clear();
91     }
92     return true;
93   } else {
94     return false;
95   }
96 }
97
98 void InputLine::on_returnPressed() {
99   addToHistory(text());
100   emit sendText(text());
101   resetLine();
102 }
103
104 void InputLine::on_textChanged(QString newText) {
105   QStringList lineSeparators;
106   lineSeparators << QString("\r\n")
107                  << QString('\n')
108                  << QString('\r');
109
110   QString lineSep;
111   foreach(QString separator, lineSeparators) {
112     if(newText.contains(separator)) {
113       lineSep = separator;
114       break;
115     }
116   }
117
118   if(lineSep.isEmpty())
119     return;
120
121   if(newText.contains(lineSep)) {
122     clear();
123     QString line = newText.section(lineSep, 0, 0);
124     QString remainder = newText.section(lineSep, 1);
125     insert(line);
126     emit returnPressed();
127     insert(remainder);
128   }
129 }
130
131 void InputLine::resetLine() {
132   // every time the InputLine is cleared we also reset history index
133   idx = history.count();
134   clear();
135 }
136
137 void InputLine::showHistoryEntry() {
138   // if the user changed the history, display the changed line
139   tempHistory.contains(idx) ? setText(tempHistory[idx]) : setText(history[idx]);
140 }