summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/irctab.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/irctab.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/irctab.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/net/opieirc/irctab.h b/noncore/net/opieirc/irctab.h
index 6c29ea5..d17c530 100644
--- a/noncore/net/opieirc/irctab.h
+++ b/noncore/net/opieirc/irctab.h
@@ -29,24 +29,28 @@
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 /* The ID is required to store the position of this IRCTab inside the IRCTabWidget */ 38 /* The ID is required to store the position of this IRCTab inside the IRCTabWidget */
39 void setID(int id); 39 void setID(int id);
40 int id(); 40 int id();
41
42 static void setUseTimeStamps(bool b);
43 static QString appendTimestamp(const QString& tex);
44
41 virtual QString title() = 0; 45 virtual QString title() = 0;
42 virtual IRCSession *session() = 0; 46 virtual IRCSession *session() = 0;
43 virtual void appendText(QString text) = 0; 47 virtual void appendText(QString text) = 0;
44signals: 48signals:
45 void changed(IRCTab *); 49 void changed(IRCTab *);
46 void ping(const QString& ); 50 void ping(const QString& );
47 void nextTab(); 51 void nextTab();
48 void prevTab(); 52 void prevTab();
49 void closeTab(); 53 void closeTab();
50 void editFocus(); 54 void editFocus();
51 55
52public slots: 56public slots: