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