X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Finputline.h;h=dc6d691ceeb1dd3c1285af8dfd04c125b6c3299d;hb=b795a7b7b42ab546b1a6db2cba6091f5c3aa91fc;hp=3294be19227fbc854023902ac713033ea243e635;hpb=bcfd213c6c381e6d2344ceba4a82ed3f87a9fd3e;p=quassel.git diff --git a/src/uisupport/inputline.h b/src/uisupport/inputline.h index 3294be19..dc6d691c 100644 --- a/src/uisupport/inputline.h +++ b/src/uisupport/inputline.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -31,25 +31,32 @@ class InputLine : public QLineEdit { public: InputLine(QWidget *parent = 0); ~InputLine(); - + protected: // virtual bool event(QEvent *); virtual void keyPressEvent(QKeyEvent * event); - + virtual bool eventFilter(QObject *watched, QEvent *event); + private slots: void on_returnPressed(); void on_textChanged(QString newText); + bool addToHistory(const QString &text, bool temporary = false); + signals: void sendText(QString text); - + private: QStringList history; + QHash tempHistory; qint32 idx; TabCompleter *tabCompleter; int bindModifier; int jumpModifier; + + void resetLine(); + void showHistoryEntry(); }; #endif