summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircoutput.h
authorskyhusker <skyhusker>2005-01-14 20:53:08 (UTC)
committer skyhusker <skyhusker>2005-01-14 20:53:08 (UTC)
commitb6c5c3b8b1ab130217678ec789db573ffc52c3eb (patch) (side-by-side diff)
tree67e8ef2f6e447b7795d2ec3c10c896d56069e727 /noncore/net/opieirc/ircoutput.h
parentf572b6a41ab3576957b29d73b54bfc34adeea07c (diff)
downloadopie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.zip
opie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.tar.gz
opie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.tar.bz2
Added bold and underline display support
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
@@ -47,3 +47,10 @@ enum IRCOutputType {
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;
};
@@ -56,3 +63,3 @@ 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
@@ -66,3 +73,6 @@ public:
- static QString toHTML(QString message);
+ void setType(IRCOutputType);
+ void setMessage(const QString &message);
+
+ static QString toHTML(const QString &message);
void *getParam(int index);
@@ -72,2 +82,3 @@ protected:
QList<void> m_parameters;
+ static IRCOutputEscapeSecuences m_escapeSecuences[];
};