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