summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircservertab.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircservertab.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircservertab.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircservertab.h b/noncore/net/opieirc/ircservertab.h
index 698689a..8d24cba 100644
--- a/noncore/net/opieirc/ircservertab.h
+++ b/noncore/net/opieirc/ircservertab.h
@@ -23,12 +23,13 @@
23 23
24#include "irctab.h" 24#include "irctab.h"
25#include "ircsession.h" 25#include "ircsession.h"
26#include "mainwindow.h" 26#include "mainwindow.h"
27#include "ircchanneltab.h" 27#include "ircchanneltab.h"
28#include "ircquerytab.h" 28#include "ircquerytab.h"
29#include "ircmisc.h"
29 30
30class IRCServerTab : public IRCTab { 31class IRCServerTab : public IRCTab {
31 Q_OBJECT 32 Q_OBJECT
32public: 33public:
33 /* IRCTab implementation */ 34 /* IRCTab implementation */
34 IRCServerTab(IRCServer server, MainWindow *mainWindow, QWidget *parent = 0, const char *name = 0, WFlags f = 0); 35 IRCServerTab(IRCServer server, MainWindow *mainWindow, QWidget *parent = 0, const char *name = 0, WFlags f = 0);
@@ -55,18 +56,19 @@ public slots:
55 void remove(); 56 void remove();
56 void processCommand(); 57 void processCommand();
57 void settingsChanged(); 58 void settingsChanged();
58protected slots: 59protected slots:
59 void display(IRCOutput output); 60 void display(IRCOutput output);
60protected: 61protected:
62 int m_lines;
61 bool m_close; 63 bool m_close;
62 IRCServer m_server; 64 IRCServer m_server;
63 IRCSession *m_session; 65 IRCSession *m_session;
64 MainWindow *m_mainWindow; 66 MainWindow *m_mainWindow;
65 QTextView *m_textview; 67 QTextView *m_textview;
66 QLineEdit *m_field; 68 IRCHistoryLineEdit *m_field;
67 /* Channel tabs associated with this server tab */ 69 /* Channel tabs associated with this server tab */
68 QList<IRCChannelTab> m_channelTabs; 70 QList<IRCChannelTab> m_channelTabs;
69 /* Query tabs associated with this server tab */ 71 /* Query tabs associated with this server tab */
70 QList<IRCQueryTab> m_queryTabs; 72 QList<IRCQueryTab> m_queryTabs;
71}; 73};
72 74