summaryrefslogtreecommitdiff
path: root/noncore
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
parentf572b6a41ab3576957b29d73b54bfc34adeea07c (diff)
downloadopie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.zip
opie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.tar.gz
opie-b6c5c3b8b1ab130217678ec789db573ffc52c3eb.tar.bz2
Added bold and underline display support
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircoutput.cpp45
-rw-r--r--noncore/net/opieirc/ircoutput.h19
2 files changed, 55 insertions, 9 deletions
diff --git a/noncore/net/opieirc/ircoutput.cpp b/noncore/net/opieirc/ircoutput.cpp
index 4822fc4..d2c730f 100644
--- a/noncore/net/opieirc/ircoutput.cpp
+++ b/noncore/net/opieirc/ircoutput.cpp
@@ -1,8 +1,18 @@
+#include <qtopia/stringutil.h>
+
#include "ircoutput.h"
+
+IRCOutputEscapeSecuences IRCOutput::m_escapeSecuences[] = {
+ { '', "<b>", "</b>"},
+ { '', "<u>", "</u>"},
+ { 0, 0, 0},
+};
+
IRCOutput::IRCOutput(IRCOutputType type, QString message) {
m_type = type;
- m_message = message;
+ /* Filter color, bold and underline escape sequences, since they aren't implemented yet */
+ m_message = message.replace(QRegExp("[1-9]*,*[1-9]*"), "");
}
IRCOutputType IRCOutput::type() {
@@ -13,14 +23,38 @@ QString IRCOutput::message() {
return m_message;
}
+void IRCOutput::setType(IRCOutputType type) {
+ m_type = type;
+}
+
+void IRCOutput::setMessage(const QString &message) {
+ m_message = message;
+}
+
QString IRCOutput::htmlMessage() {
return toHTML(m_message);
}
-QString IRCOutput::toHTML(QString message) {
- QString htmlMessage =message.replace(QRegExp("&"), "&amp;");
- htmlMessage = htmlMessage.replace(QRegExp(">"), "&gt;");
- htmlMessage = htmlMessage.replace(QRegExp("<"), "&lt;");
+QString IRCOutput::toHTML(const QString &message) {
+ QString htmlMessage = Qtopia::escapeString(message);
+
+ for(int i=0; m_escapeSecuences[i].escape != 0;++i) {
+ int pos = 0;
+ bool isOpen = false;
+ while( (pos = htmlMessage.find(m_escapeSecuences[i].escape, pos)) != -1) {
+ htmlMessage.remove(pos, 1);
+ if(isOpen)
+ htmlMessage.insert(pos, m_escapeSecuences[i].close);
+ else
+ htmlMessage.insert(pos, m_escapeSecuences[i].open);
+
+ isOpen = !isOpen;
+ }
+ if(isOpen)
+ htmlMessage.append(m_escapeSecuences[i].close);
+ }
+
+ htmlMessage = htmlMessage.replace(QRegExp("\n"), "<br>");
return htmlMessage;
}
@@ -31,3 +65,4 @@ void IRCOutput::addParam(void *data) {
void *IRCOutput::getParam(int index) {
return m_parameters.at(index);
}
+
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
@@ -45,7 +45,14 @@ enum IRCOutputType {
OUTPUT_CHANACTION = 14, /* parameters : channel (IRCChannel) person (IRCChannelPerson) */
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;
};
/* The IRCOutput class is used as a kind of message which is sent by the
@@ -54,7 +61,7 @@ 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) */
void addParam(void *data);
@@ -63,13 +70,17 @@ public:
QString message();
/* Return the message with all HTML code escaped (for example &lt; instead of '<') */
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:
IRCOutputType m_type;
QString m_message;
QList<void> m_parameters;
+ static IRCOutputEscapeSecuences m_escapeSecuences[];
};
#endif