Don't enable wordwrap for the input widget
[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 }
167
168 void MultiLineEdit::historyMoveBack() {
169   addToHistory(text(), true);
170
171   if(idx > 0) {
172     idx--;
173     showHistoryEntry();
174   }
175 }
176
177 void MultiLineEdit::historyMoveForward() {
178   addToHistory(text(), true);
179
180   if(idx < history.count()) {
181     idx++;
182     if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
183       showHistoryEntry();
184     else
185       reset();              // equals clear() in this case
186   } else {
187     addToHistory(text());
188     reset();
189   }
190 }
191
192 bool MultiLineEdit::addToHistory(const QString &text, bool temporary) {
193   if(text.isEmpty())
194     return false;
195
196   Q_ASSERT(0 <= idx && idx <= history.count());
197
198   if(temporary) {
199     // if an entry of the history is changed, we remember it and show it again at this
200     // position until a line was actually sent
201     // sent lines get appended to the history
202     if(history.isEmpty() || text != history[idx - (int)(idx == history.count())]) {
203       tempHistory[idx] = text;
204       return true;
205     }
206   } else {
207     if(history.isEmpty() || text != history.last()) {
208       history << text;
209       tempHistory.clear();
210       return true;
211     }
212   }
213   return false;
214 }
215
216 void MultiLineEdit::keyPressEvent(QKeyEvent *event) {
217   // Workaround the fact that Qt < 4.5 doesn't know InsertLineSeparator yet
218 #if QT_VERSION >= 0x040500
219   if(event == QKeySequence::InsertLineSeparator) {
220 #else
221
222 # ifdef Q_WS_MAC
223   if((event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) && event->modifiers() & Qt::META) {
224 # else
225   if((event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) && event->modifiers() & Qt::SHIFT) {
226 # endif
227 #endif
228
229     if(_mode == SingleLine)
230       return;
231 #ifdef HAVE_KDE
232     KTextEdit::keyPressEvent(event);
233 #else
234     QTextEdit::keyPressEvent(event);
235 #endif
236     return;
237   }
238
239   switch(event->key()) {
240   case Qt::Key_Up:
241     if(event->modifiers() & Qt::ShiftModifier)
242       break;
243     {
244       event->accept();
245       if(!(event->modifiers() & Qt::ControlModifier)) {
246         int pos = textCursor().position();
247         moveCursor(QTextCursor::Up);
248         if(pos == textCursor().position()) // already on top line -> history
249           historyMoveBack();
250       } else
251         historyMoveBack();
252       return;
253     }
254
255   case Qt::Key_Down:
256     if(event->modifiers() & Qt::ShiftModifier)
257       break;
258     {
259       event->accept();
260       if(!(event->modifiers() & Qt::ControlModifier)) {
261         int pos = textCursor().position();
262         moveCursor(QTextCursor::Down);
263         if(pos == textCursor().position()) // already on bottom line -> history
264           historyMoveForward();
265       } else
266         historyMoveForward();
267       return;
268     }
269
270   case Qt::Key_Return:
271   case Qt::Key_Enter:
272   case Qt::Key_Select:
273     event->accept();
274     on_returnPressed();
275     return;
276
277   // We don't want to have the tab key react even if no completer is installed
278   case Qt::Key_Tab:
279     event->accept();
280     return;
281
282   default:
283     ;
284   }
285
286
287 #ifdef HAVE_KDE
288   KTextEdit::keyPressEvent(event);
289 #else
290   QTextEdit::keyPressEvent(event);
291 #endif
292 }
293
294 void MultiLineEdit::on_returnPressed() {
295   if(!text().isEmpty()) {
296     foreach(const QString &line, text().split('\n', QString::SkipEmptyParts)) {
297       if(line.isEmpty())
298         continue;
299       addToHistory(line);
300       emit textEntered(line);
301     }
302     reset();
303     tempHistory.clear();
304   }
305 }
306
307 void MultiLineEdit::on_textChanged() {
308   QString newText = text();
309   newText.replace("\r\n", "\n");
310   newText.replace('\r', '\n');
311   if(_mode == SingleLine)
312     newText.replace('\n', ' ');
313
314   _singleLine = (newText.indexOf('\n') < 0);
315
316   if(document()->size().height() != _lastDocumentHeight) {
317     _lastDocumentHeight = document()->size().height();
318     on_documentHeightChanged(_lastDocumentHeight);
319   }
320   updateSizeHint();
321 }
322
323 void MultiLineEdit::on_documentHeightChanged(qreal) {
324   updateScrollBars();
325 }
326
327 void MultiLineEdit::reset() {
328   // every time the MultiLineEdit is cleared we also reset history index
329   idx = history.count();
330   clear();
331   QTextBlockFormat format = textCursor().blockFormat();
332   format.setLeftMargin(leftMargin); // we want a little space between the frame and the contents
333   textCursor().setBlockFormat(format);
334   updateScrollBars();
335 }
336
337 void MultiLineEdit::showHistoryEntry() {
338   // if the user changed the history, display the changed line
339   setPlainText(tempHistory.contains(idx) ? tempHistory[idx] : history[idx]);
340   QTextCursor cursor = textCursor();
341   QTextBlockFormat format = cursor.blockFormat();
342   format.setLeftMargin(leftMargin); // we want a little space between the frame and the contents
343   cursor.setBlockFormat(format);
344   cursor.movePosition(QTextCursor::End);
345   setTextCursor(cursor);
346   updateScrollBars();
347 }