Don't set a default font for the chatview
[quassel.git] / src / uisupport / multilineedit.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 #ifndef MULTILINEEDIT_H_
22 #define MULTILINEEDIT_H_
23
24 #include <QKeyEvent>
25 #include <QHash>
26 #include <QTextEdit>
27
28 #ifdef HAVE_KDE
29 #  include <KDE/KTextEdit>
30 #endif
31
32 class QKeyEvent;
33 class TabCompleter;
34
35 class MultiLineEdit : public
36 #ifdef HAVE_KDE
37                   KTextEdit
38 #else
39                   QTextEdit
40 #endif
41 {
42   Q_OBJECT
43
44 public:
45   enum Mode {
46     SingleLine,
47     MultiLine
48   };
49
50   MultiLineEdit(QWidget *parent = 0);
51   ~MultiLineEdit();
52
53   void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly
54
55   // Compatibility methods with the rest of the classes which still expect this to be a QLineEdit
56   inline QString text() { return toPlainText(); }
57   inline int cursorPosition() { return textCursor().position(); }
58   inline void insert(const QString &newText) { insertPlainText(newText); }
59   inline void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier)); }
60   inline bool hasSelectedText() { return textCursor().hasSelection(); }
61
62   virtual QSize sizeHint() const;
63   virtual QSize minimumSizeHint() const;
64
65 public slots:
66   void setMode(Mode mode);
67   void setWrapMode(QTextOption::WrapMode = QTextOption::NoWrap);
68   void setMinHeight(int numLines);
69   void setMaxHeight(int numLines);
70   void enableScrollBars(bool enable = true);
71
72 signals:
73   void textEntered(const QString &text);
74
75 protected:
76   virtual void keyPressEvent(QKeyEvent * event);
77   virtual void resizeEvent(QResizeEvent *event);
78
79 private slots:
80   void on_returnPressed();
81   void on_textChanged();
82   void on_documentHeightChanged(qreal height);
83
84   bool addToHistory(const QString &text, bool temporary = false);
85   void historyMoveForward();
86   void historyMoveBack();
87
88 private:
89   QStringList history;
90   QHash<int, QString> tempHistory;
91   qint32 idx;
92   Mode _mode;
93   QTextOption::WrapMode _wrapMode;
94   int _numLines;
95   int _minHeight;
96   int _maxHeight;
97   bool _scrollBarsEnabled;
98
99   QSize _sizeHint;
100   qreal _lastDocumentHeight;
101
102   void reset();
103   void showHistoryEntry();
104   void updateScrollBars();
105
106   inline int numLines() const { return _numLines; }
107   void setNumLines(int);
108 };
109
110 #endif