summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircoutput.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircoutput.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircoutput.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/noncore/net/opieirc/ircoutput.h b/noncore/net/opieirc/ircoutput.h
index 9c0b8bb..934dbda 100644
--- a/noncore/net/opieirc/ircoutput.h
+++ b/noncore/net/opieirc/ircoutput.h
@@ -47,3 +47,10 @@ enum IRCOutputType {
47 OUTPUT_CHANPERSONMODE = 16, /* parameters : channel (IRCCHannel) person (IRCChannelPerson) */ 47 OUTPUT_CHANPERSONMODE = 16, /* parameters : channel (IRCCHannel) person (IRCChannelPerson) */
48 OUTPUT_TOPIC = 17 /* parameters : channel (IRCChannel) */ 48 OUTPUT_TOPIC = 17, /* parameters : channel (IRCChannel) */
49 OUTPUT_TITLE = 18 /* parameters : channel (IRCChannel) */
50};
51
52typedef struct IRCOutputEscapeSecuences {
53 char escape;
54 char *open;
55 char *close;
49}; 56};
@@ -56,3 +63,3 @@ class IRCOutput {
56public: 63public:
57 IRCOutput(IRCOutputType type, QString message); 64 IRCOutput(IRCOutputType type = OUTPUT_SERVERMESSAGE, QString message = QString::null);
58 /* Used to add a parameter to this IRCOutput. Parameters are dependent 65 /* Used to add a parameter to this IRCOutput. Parameters are dependent
@@ -65,4 +72,7 @@ public:
65 QString htmlMessage(); 72 QString htmlMessage();
66 73
67 static QString toHTML(QString message); 74 void setType(IRCOutputType);
75 void setMessage(const QString &message);
76
77 static QString toHTML(const QString &message);
68 void *getParam(int index); 78 void *getParam(int index);
@@ -72,2 +82,3 @@ protected:
72 QList<void> m_parameters; 82 QList<void> m_parameters;
83 static IRCOutputEscapeSecuences m_escapeSecuences[];
73}; 84};