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