summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircoutput.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc/ircoutput.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircoutput.h17
1 files changed, 14 insertions, 3 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
@@ -46,5 +46,12 @@ enum IRCOutputType {
OUTPUT_QUERYACTION = 15, /* parameters : person (IRCPerson) */
OUTPUT_CHANPERSONMODE = 16, /* parameters : channel (IRCCHannel) person (IRCChannelPerson) */
- OUTPUT_TOPIC = 17 /* parameters : channel (IRCChannel) */
+ OUTPUT_TOPIC = 17, /* parameters : channel (IRCChannel) */
+ OUTPUT_TITLE = 18 /* parameters : channel (IRCChannel) */
+};
+
+typedef struct IRCOutputEscapeSecuences {
+ char escape;
+ char *open;
+ char *close;
};
@@ -55,5 +62,5 @@ enum IRCOutputType {
class IRCOutput {
public:
- IRCOutput(IRCOutputType type, QString message);
+ IRCOutput(IRCOutputType type = OUTPUT_SERVERMESSAGE, QString message = QString::null);
/* Used to add a parameter to this IRCOutput. Parameters are dependent
on which IRCOutputType we are using (see above) */
@@ -65,5 +72,8 @@ public:
QString htmlMessage();
- static QString toHTML(QString message);
+ void setType(IRCOutputType);
+ void setMessage(const QString &message);
+
+ static QString toHTML(const QString &message);
void *getParam(int index);
protected:
@@ -71,4 +81,5 @@ protected:
QString m_message;
QList<void> m_parameters;
+ static IRCOutputEscapeSecuences m_escapeSecuences[];
};