Fixes #682 - Core crashes on client connection
[quassel.git] / src / uisupport / inputline.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 INPUTLINE_H_
22 #define INPUTLINE_H_
23
24 #include <QHash>
25 #include <QKeyEvent>
26 #include <QTextEdit>
27
28 #ifdef HAVE_KDE
29 #include <KDE/KTextEdit>
30 #endif
31
32 class TabCompleter;
33
34 class InputLine : public
35 #ifdef HAVE_KDE
36                   KTextEdit
37 #else
38                   QTextEdit
39 #endif
40 {
41   Q_OBJECT
42
43 public:
44   InputLine(QWidget *parent = 0);
45   ~InputLine();
46
47   void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly
48
49   // Compatibility methods with the rest of the classes which still expect this to be a QLineEdit
50   inline QString text() { return toPlainText(); }
51   inline int cursorPosition() { return textCursor().position(); }
52   inline void insert(const QString &newText) { insertPlainText(newText); }
53   inline void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier)); }
54   inline bool hasSelectedText() { return textCursor().hasSelection(); }
55
56   virtual QSize sizeHint() const;
57   virtual QSize minimumSizeHint() const;
58
59 protected:
60   virtual void keyPressEvent(QKeyEvent * event);
61   virtual bool eventFilter(QObject *watched, QEvent *event);
62
63 private slots:
64   void on_returnPressed();
65   void on_textChanged(QString newText);
66
67   // Needed to emulate the signal that QLineEdit has
68   inline void on_textChanged() { emit textChanged(toPlainText()); };
69
70   bool addToHistory(const QString &text, bool temporary = false);
71
72 signals:
73   void sendText(QString text);
74
75   // QTextEdit does not provide this signal, so we manually emit it in keyPressEvent()
76   void returnPressed();
77   void textChanged(QString newText);
78
79 private:
80   QStringList history;
81   QHash<int, QString> tempHistory;
82   qint32 idx;
83   TabCompleter *tabCompleter;
84
85   int bindModifier;
86   int jumpModifier;
87
88   void resetLine();
89   void showHistoryEntry();
90 };
91
92 #endif