summaryrefslogtreecommitdiffstats
path: root/konversation/src/ircinput.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
commitee0d2e6e1967294f4a62da1840b0ffdaa3124a2d (patch)
tree5c150db3c91a190b4911f19aeec9b1b2163c0c53 /konversation/src/ircinput.h
downloadkonversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.tar.gz
konversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.zip
Added old abandoned KDE3 version of Konversation
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/konversation@1092922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konversation/src/ircinput.h')
-rw-r--r--konversation/src/ircinput.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/konversation/src/ircinput.h b/konversation/src/ircinput.h
new file mode 100644
index 0000000..85e42c1
--- /dev/null
+++ b/konversation/src/ircinput.h
@@ -0,0 +1,91 @@
+/*
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+*/
+
+/*
+ The line input widget with chat enhanced functions
+ begin: Tue Mar 5 2002
+ copyright: (C) 2002 by Dario Abatianni
+ email: eisfuchs@tigress.com
+*/
+
+#ifndef IRCINPUT_H
+#define IRCINPUT_H
+
+#include <qstringlist.h>
+
+#include <ktextedit.h>
+
+
+class KCompletionBox;
+class QMouseEvent;
+
+class IRCInput : public KTextEdit
+{
+ Q_OBJECT
+
+ public:
+ explicit IRCInput(QWidget* parent);
+ ~IRCInput();
+
+ void setCompletionMode(char mode);
+ char getCompletionMode();
+ void setOldCursorPosition(int pos);
+ int getOldCursorPosition();
+ QString lastCompletion() const { return m_lastCompletion; }
+
+ virtual QSize sizeHint() const;
+ QString text() const;
+
+ signals:
+ void nickCompletion();
+ void endCompletion(); // tell channel that completion phase is over
+ void history(bool up);
+ void textPasted(const QString& text);
+ void submit();
+ void envelopeCommand();
+
+ public slots:
+ void paste();
+ void paste(bool useSelection);
+ void showCompletionList(const QStringList& nicks);
+ void setText(const QString& text);
+ void setLastCompletion(const QString& completion);
+ virtual void setOverwriteMode(bool) { }
+ virtual void resizeContents( int w, int h );
+ virtual void updateAppearance();
+
+ protected slots:
+ void getHistory(bool up);
+ void insertCompletion(const QString& nick);
+ void disableSpellChecking();
+ virtual void slotSpellCheckDone(const QString& s);
+
+ protected:
+ bool eventFilter(QObject *object,QEvent *event);
+ void addHistory(const QString& text);
+ bool checkPaste(QString& text);
+ void contentsMouseReleaseEvent(QMouseEvent *);
+
+ virtual void keyPressEvent(QKeyEvent* e);
+ virtual QPopupMenu *createPopupMenu( const QPoint& pos );
+ virtual void showEvent(QShowEvent* e);
+ virtual void hideEvent(QHideEvent* e);
+
+ QStringList historyList;
+ unsigned int lineNum;
+ unsigned int oldPos;
+ char completionMode;
+ KCompletionBox* completionBox;
+ QString m_lastCompletion;
+ bool m_useSelection;
+ bool m_multiRow;
+ int m_lastHeight; //essentially corresponds to qtextbrowser::doc->height()
+ int m_qtBoxPadding; //see comment in constructor
+
+ QTimer* m_disableSpellCheckTimer;
+};
+#endif