Bring back old inputline history behavior
[quassel.git] / src / uisupport / multilineedit.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 <QApplication>
22 #include <QMenu>
23 #include <QMessageBox>
24 #include <QScrollBar>
25
26 #include "bufferview.h"
27 #include "graphicalui.h"
28 #include "multilineedit.h"
29 #include "tabcompleter.h"
30
31 const int leftMargin = 3;
32
33 MultiLineEdit::MultiLineEdit(QWidget *parent)
34   :
35 #ifdef HAVE_KDE
36     KTextEdit(parent),
37 #else
38     QTextEdit(parent),
39 #endif
40     idx(0),
41     _mode(SingleLine),
42     _singleLine(true),
43     _minHeight(1),
44     _maxHeight(5),
45     _scrollBarsEnabled(true),
46     _lastDocumentHeight(-1)
47 {
48 #if QT_VERSION >= 0x040500
49   document()->setDocumentMargin(0); // new in Qt 4.5 and we really don't want it here
50 #endif
51
52   setAcceptRichText(false);
53 #ifdef HAVE_KDE
54   enableFindReplace(false);
55 #endif
56
57   setMode(SingleLine);
58   reset();
59
60   connect(this, SIGNAL(textChanged()), this, SLOT(on_textChanged()));
61 }
62
63 MultiLineEdit::~MultiLineEdit() {
64 }
65
66 void MultiLineEdit::setCustomFont(const QFont &font) {
67   setFont(font);
68   computeSizeHint();
69 }
70
71 void MultiLineEdit::setMode(Mode mode) {
72   if(mode == _mode)
73     return;
74
75   _mode = mode;
76 }
77
78 void MultiLineEdit::setMinHeight(int lines) {
79   if(lines == _minHeight)
80     return;
81
82   _minHeight = lines;
83   computeSizeHint();
84 }
85
86 void MultiLineEdit::setMaxHeight(int lines) {
87   if(lines == _maxHeight)
88     return;
89
90   _maxHeight = lines;
91   computeSizeHint();
92 }
93
94 void MultiLineEdit::enableScrollBars(bool enable) {
95   if(_scrollBarsEnabled == enable)
96     return;
97
98   _scrollBarsEnabled = enable;
99   updateScrollBars();
100 }
101
102 void MultiLineEdit::updateScrollBars() {
103   QFontMetrics fm(font());
104   int _maxPixelHeight = fm.lineSpacing() * _maxHeight;
105   if(_scrollBarsEnabled && document()->size().height() > _maxPixelHeight)
106     setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
107   else
108     setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
109
110   if(!_scrollBarsEnabled || isSingleLine())
111     setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
112   else
113     setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
114 }
115
116 void MultiLineEdit::resizeEvent(QResizeEvent *event) {
117   updateScrollBars();
118   QTextEdit::resizeEvent(event);
119 }
120
121 void MultiLineEdit::computeSizeHint() {
122   QFontMetrics fm(font());
123   int minPixelHeight = fm.lineSpacing() * _minHeight;
124   int maxPixelHeight = fm.lineSpacing() * _maxHeight;
125   int scrollBarHeight = horizontalScrollBar()->isVisible() ? horizontalScrollBar()->height() : 0;
126
127   // use the style to determine a decent size
128   int h = qMin(qMax((int)document()->size().height() + scrollBarHeight, minPixelHeight), maxPixelHeight) + 2 * frameWidth();
129   QStyleOptionFrameV2 opt;
130   opt.initFrom(this);
131   opt.rect = QRect(0, 0, 100, h);
132   opt.lineWidth = lineWidth();
133   opt.midLineWidth = midLineWidth();
134   opt.state |= QStyle::State_Sunken;
135   QSize s = style()->sizeFromContents(QStyle::CT_LineEdit, &opt, QSize(100, h).expandedTo(QApplication::globalStrut()), this);
136   if(s != _sizeHint) {
137     _sizeHint = s;
138     updateGeometry();
139   }
140 }
141
142 QSize MultiLineEdit::sizeHint() const {
143   if(!_sizeHint.isValid()) {
144     MultiLineEdit *that = const_cast<MultiLineEdit *>(this);
145     that->computeSizeHint();
146   }
147   return _sizeHint;
148 }
149
150 QSize MultiLineEdit::minimumSizeHint() const {
151   return sizeHint();
152 }
153
154 void MultiLineEdit::historyMoveBack() {
155   addToHistory(text(), true);
156
157   if(idx > 0) {
158     idx--;
159     showHistoryEntry();
160   }
161 }
162
163 void MultiLineEdit::historyMoveForward() {
164   addToHistory(text(), true);
165
166   if(idx < history.count()) {
167     idx++;
168     if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
169       showHistoryEntry();
170     else
171       reset();              // equals clear() in this case
172   } else {
173     addToHistory(text());
174     reset();
175   }
176 }
177
178 bool MultiLineEdit::addToHistory(const QString &text, bool temporary) {
179   if(text.isEmpty())
180     return false;
181
182   Q_ASSERT(0 <= idx && idx <= history.count());
183
184   if(temporary) {
185     // if an entry of the history is changed, we remember it and show it again at this
186     // position until a line was actually sent
187     // sent lines get appended to the history
188     if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
189       tempHistory[idx] = text;
190       return true;
191     }
192   } else {
193     if(history.isEmpty() || text != history.last()) {
194       history << text;
195       tempHistory.clear();
196       return true;
197     }
198   }
199   return false;
200 }
201
202 void MultiLineEdit::keyPressEvent(QKeyEvent *event) {
203   // Workaround the fact that Qt < 4.5 doesn't know InsertLineSeparator yet
204 #if QT_VERSION >= 0x040500
205   if(event == QKeySequence::InsertLineSeparator) {
206 #else
207
208 # ifdef Q_WS_MAC
209   if((event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) && event->modifiers() & Qt::META) {
210 # else
211   if((event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) && event->modifiers() & Qt::SHIFT) {
212 # endif
213 #endif
214
215     if(_mode == SingleLine)
216       return;
217 #ifdef HAVE_KDE
218     KTextEdit::keyPressEvent(event);
219 #else
220     QTextEdit::keyPressEvent(event);
221 #endif
222     return;
223   }
224
225   switch(event->key()) {
226   case Qt::Key_Up:
227     if(event->modifiers() & Qt::ShiftModifier)
228       break;
229     {
230       event->accept();
231       if(!(event->modifiers() & Qt::ControlModifier)) {
232         int pos = textCursor().position();
233         moveCursor(QTextCursor::Up);
234         if(pos == textCursor().position()) // already on top line -> history
235           historyMoveBack();
236       } else
237         historyMoveBack();
238       return;
239     }
240
241   case Qt::Key_Down:
242     if(event->modifiers() & Qt::ShiftModifier)
243       break;
244     {
245       event->accept();
246       if(!(event->modifiers() & Qt::ControlModifier)) {
247         int pos = textCursor().position();
248         moveCursor(QTextCursor::Down);
249         if(pos == textCursor().position()) // already on bottom line -> history
250           historyMoveForward();
251       } else
252         historyMoveForward();
253       return;
254     }
255
256   case Qt::Key_Return:
257   case Qt::Key_Enter:
258   case Qt::Key_Select:
259     event->accept();
260     on_returnPressed();
261     return;
262
263   // We don't want to have the tab key react even if no completer is installed
264   case Qt::Key_Tab:
265     event->accept();
266     return;
267
268   default:
269     ;
270   }
271
272
273 #ifdef HAVE_KDE
274   KTextEdit::keyPressEvent(event);
275 #else
276   QTextEdit::keyPressEvent(event);
277 #endif
278 }
279
280 void MultiLineEdit::on_returnPressed() {
281   if(!text().isEmpty()) {
282     foreach(const QString &line, text().split('\n', QString::SkipEmptyParts)) {
283       if(line.isEmpty())
284         continue;
285       addToHistory(line);
286       emit textEntered(line);
287     }
288     reset();
289     tempHistory.clear();
290   }
291 }
292
293 void MultiLineEdit::on_textChanged() {
294   QString newText = text();
295   newText.replace("\r\n", "\n");
296   newText.replace('\r', '\n');
297   if(_mode == SingleLine)
298     newText.replace('\n', ' ');
299
300   _singleLine = (newText.indexOf('\n') < 0);
301
302   if(document()->size().height() != _lastDocumentHeight) {
303     _lastDocumentHeight = document()->size().height();
304     on_documentHeightChanged(_lastDocumentHeight);
305   }
306   computeSizeHint();
307 }
308
309 void MultiLineEdit::on_documentHeightChanged(qreal) {
310   updateScrollBars();
311 }
312
313 void MultiLineEdit::reset() {
314   // every time the MultiLineEdit is cleared we also reset history index
315   idx = history.count();
316   clear();
317   QTextBlockFormat format = textCursor().blockFormat();
318   format.setLeftMargin(leftMargin); // we want a little space between the frame and the contents
319   textCursor().setBlockFormat(format);
320   updateScrollBars();
321 }
322
323 void MultiLineEdit::showHistoryEntry() {
324   // if the user changed the history, display the changed line
325   setPlainText(tempHistory.contains(idx) ? tempHistory[idx] : history[idx]);
326   QTextCursor cursor = textCursor();
327   QTextBlockFormat format = cursor.blockFormat();
328   format.setLeftMargin(leftMargin); // we want a little space between the frame and the contents
329   cursor.setBlockFormat(format);
330   cursor.movePosition(QTextCursor::End);
331   setTextCursor(cursor);
332   updateScrollBars();
333 }