summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/irctab.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/irctab.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/irctab.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opieirc/irctab.h b/noncore/net/opieirc/irctab.h
index 3124980..0ce9777 100644
--- a/noncore/net/opieirc/irctab.h
+++ b/noncore/net/opieirc/irctab.h
@@ -28,20 +28,21 @@
28#include <qlayout.h> 28#include <qlayout.h>
29#include "ircsession.h" 29#include "ircsession.h"
30 30
31/* This is the base class for any tabs which need to be integrated into 31/* This is the base class for any tabs which need to be integrated into
32 the main GUI tab widget */ 32 the main GUI tab widget */
33 33
34class IRCTab : public QWidget { 34class IRCTab : public QWidget {
35 Q_OBJECT 35 Q_OBJECT
36public: 36public:
37 IRCTab(QWidget *parent = 0, const char *name = 0, WFlags f = 0); 37 IRCTab(QWidget *parent = 0, const char *name = 0, WFlags f = 0);
38 virtual QString title() = 0; 38 virtual QString title() = 0;
39 virtual IRCSession *session() = 0; 39 virtual IRCSession *session() = 0;
40 virtual void appendText(QString text) = 0;
40public slots: 41public slots:
41 virtual void remove() = 0; 42 virtual void remove() = 0;
42protected: 43protected:
43 QLabel *m_description; 44 QLabel *m_description;
44 QVBoxLayout *m_layout; 45 QVBoxLayout *m_layout;
45}; 46};
46 47
47#endif /* __IRCTAB_H */ 48#endif /* __IRCTAB_H */