Fixing backlog timestamps when merging from sqlite.
[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   void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly
46
47 #ifdef HAVE_KDE
48 //Compatibility methods with the rest of the classes which expects this to be a QLineEdit
49   QString text() { return toPlainText(); };
50   int cursorPosition() { return textCursor().position(); };
51   void insert(const QString &newText) { insertPlainText(newText); };
52   void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier));  };
53   bool hasSelectedText() { return textCursor().hasSelection(); };
54 #endif
55
56 protected:
57   //    virtual bool event(QEvent *);
58   virtual void keyPressEvent(QKeyEvent * event);
59   virtual bool eventFilter(QObject *watched, QEvent *event);
60
61 private slots:
62   void on_returnPressed();
63   void on_textChanged(QString newText);
64 #ifdef HAVE_KDE
65 //Needed to emulate the signal that QLineEdit has
66   void on_textChanged() { emit textChanged(toPlainText()); };
67 #endif
68
69   bool addToHistory(const QString &text, bool temporary = false);
70
71 signals:
72   void sendText(QString text);
73 #ifdef HAVE_KDE
74 //KTextEdit does not provide this signal, so we manually emit it in keyPressEvent()
75   void returnPressed();
76   void textChanged(QString newText);
77 #endif
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