More systray refactoring
[quassel.git] / src / uisupport / multilineedit.cpp
index c80c2fc..53341f7 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005/06 by the Quassel Project                          *
+ *   Copyright (C) 2005-2010 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -60,22 +60,22 @@ MultiLineEdit::MultiLineEdit(QWidget *parent)
 
   connect(this, SIGNAL(textChanged()), this, SLOT(on_textChanged()));
 
-  mircColorMap["00"] = "#ffffff";
-  mircColorMap["01"] = "#000000";
-  mircColorMap["02"] = "#000080";
-  mircColorMap["03"] = "#008000";
-  mircColorMap["04"] = "#ff0000";
-  mircColorMap["05"] = "#800000";
-  mircColorMap["06"] = "#800080";
-  mircColorMap["07"] = "#ffa500";
-  mircColorMap["08"] = "#ffff00";
-  mircColorMap["09"] = "#00ff00";
-  mircColorMap["10"] = "#008080";
-  mircColorMap["11"] = "#00ffff";
-  mircColorMap["12"] = "#4169e1";
-  mircColorMap["13"] = "#ff00ff";
-  mircColorMap["14"] = "#808080";
-  mircColorMap["15"] = "#c0c0c0";
+  _mircColorMap["00"] = "#ffffff";
+  _mircColorMap["01"] = "#000000";
+  _mircColorMap["02"] = "#000080";
+  _mircColorMap["03"] = "#008000";
+  _mircColorMap["04"] = "#ff0000";
+  _mircColorMap["05"] = "#800000";
+  _mircColorMap["06"] = "#800080";
+  _mircColorMap["07"] = "#ffa500";
+  _mircColorMap["08"] = "#ffff00";
+  _mircColorMap["09"] = "#00ff00";
+  _mircColorMap["10"] = "#008080";
+  _mircColorMap["11"] = "#00ffff";
+  _mircColorMap["12"] = "#4169e1";
+  _mircColorMap["13"] = "#ff00ff";
+  _mircColorMap["14"] = "#808080";
+  _mircColorMap["15"] = "#c0c0c0";
 
 }
 
@@ -318,7 +318,10 @@ void MultiLineEdit::keyPressEvent(QKeyEvent *event) {
 }
 
 QString MultiLineEdit::convertHtmlToMircCodes(const QString &text) {
-  QRegExp regexLines = QRegExp("(?:<p.*>(.*)</p>\\n?)+", Qt::CaseInsensitive);
+  QRegExp regexHtmlContent = QRegExp("<p.*>(.*)</p>", Qt::CaseInsensitive);
+  regexHtmlContent.setMinimal(true);
+
+  QRegExp regexLines = QRegExp("(.*)(?:<br />)?", Qt::CaseInsensitive);
   regexLines.setMinimal(true);
 
   QRegExp regexStyles = QRegExp("(?:((<span.*>)(.*)</span>))", Qt::CaseInsensitive);
@@ -328,78 +331,80 @@ QString MultiLineEdit::convertHtmlToMircCodes(const QString &text) {
   regexStyles.setMinimal(true);
 
   QStringList result;
-  int posLines = 0;
-  QString line, line2, styleText, style, content;
-
-  while ((posLines = regexLines.indexIn(text, posLines)) != -1) {
-    line = line2 = regexLines.cap(1);
-    int posStyles = 0;
-    while ((posStyles = regexStyles.indexIn(line2, posStyles)) != -1) {
-      styleText = regexStyles.cap(1);
-      style = regexStyles.cap(2);
-      content = regexStyles.cap(3);
-
-      if (style.contains("font-weight:600;")) {
-        content.prepend('\x02');
-        content.append('\x02');
-      }
-      if (style.contains("font-style:italic;")) {
-        content.prepend('\x1d');
-        content.append('\x1d');
-      }
-      if (style.contains("text-decoration: underline;")) {
-        content.prepend('\x1f');
-        content.append('\x1f');
-      }
-      if (style.contains("color:#")) { // we have either foreground or background color or both
-        int posColors = 0;
-        QString mircFgColor, mircBgColor;
-        while ((posColors = regexColors.indexIn(style, posColors)) != -1) {
-          QString colorType = regexColors.cap(1);
-          QString color = regexColors.cap(2);
-
-          if (colorType == "color")
-            mircFgColor = mircColorMap.key(color);
-
-          if (colorType == "background-color")
-            mircBgColor = mircColorMap.key(color);
-
-          posColors += regexColors.matchedLength();
+  QString htmlContent, line, line2, styleText, style, content;
+
+  if (regexHtmlContent.indexIn((text)) > -1) {
+    htmlContent = regexHtmlContent.cap(1);
+    QStringList lines = htmlContent.split("<br />");
+    for (int i=0; i < lines.count(); i++) {
+      line = line2 = lines[i];
+      int posStyles = 0;
+      while ((posStyles = regexStyles.indexIn(line2, posStyles)) != -1) {
+        styleText = regexStyles.cap(1);
+        style = regexStyles.cap(2);
+        content = regexStyles.cap(3);
+
+        if (style.contains("font-weight:600;")) {
+          content.prepend('\x02');
+          content.append('\x02');
         }
-        if (!mircBgColor.isEmpty())
-          content.prepend("," + mircBgColor);
-
-        // we need a fg color to be able to use a bg color
-        if (mircFgColor.isEmpty()) {
-          //FIXME try to use the current forecolor
-          mircFgColor = mircColorMap.key(textColor().name());
-          if (mircFgColor.isEmpty())
-            mircFgColor = "01"; //use black if the current foreground color can't be converted
+        if (style.contains("font-style:italic;")) {
+          content.prepend('\x1d');
+          content.append('\x1d');
+        }
+        if (style.contains("text-decoration: underline;")) {
+          content.prepend('\x1f');
+          content.append('\x1f');
+        }
+        if (style.contains("color:#")) { // we have either foreground or background color or both
+          int posColors = 0;
+          QString mircFgColor, mircBgColor;
+          while ((posColors = regexColors.indexIn(style, posColors)) != -1) {
+            QString colorType = regexColors.cap(1);
+            QString color = regexColors.cap(2);
+
+            if (colorType == "color")
+              mircFgColor = _mircColorMap.key(color);
+
+            if (colorType == "background-color")
+              mircBgColor = _mircColorMap.key(color);
+
+            posColors += regexColors.matchedLength();
+          }
+          if (!mircBgColor.isEmpty())
+            content.prepend("," + mircBgColor);
+
+          // we need a fg color to be able to use a bg color
+          if (mircFgColor.isEmpty()) {
+            //FIXME try to use the current forecolor
+            mircFgColor = _mircColorMap.key(textColor().name());
+            if (mircFgColor.isEmpty())
+              mircFgColor = "01"; //use black if the current foreground color can't be converted
+          }
+
+          content.prepend(mircFgColor);
+          content.prepend('\x03');
+          content.append('\x03');
         }
 
-        content.prepend(mircFgColor);
-        content.prepend('\x03');
-        content.append('\x03');
+        line.replace(styleText, content);
+        posStyles += regexStyles.matchedLength();
       }
 
-      line.replace(styleText, content);
-      posStyles += regexStyles.matchedLength();
-    }
-
-    // get rid of all remaining html tags
-    QRegExp regexTags = QRegExp("<.*>",Qt::CaseInsensitive);
-    regexTags.setMinimal(true);
-    line.replace(regexTags, "");
+      // get rid of all remaining html tags
+      QRegExp regexTags = QRegExp("<.*>",Qt::CaseInsensitive);
+      regexTags.setMinimal(true);
+      line.replace(regexTags, "");
 
-    line.replace("&amp;","&");
-    line.replace("&lt;","<");
-    line.replace("&gt;",">");
+      line.replace("&amp;","&");
+      line.replace("&lt;","<");
+      line.replace("&gt;",">");
+      line.replace("&quot;","\"");
 
-    result << line;
-    posLines += regexLines.matchedLength();
+      result << line;
+    }
   }
-
-  return result.join("\n").replace("<br />", "\n");
+  return result.join("\n");
 }
 
 QString MultiLineEdit::convertMircCodesToHtml(const QString &text) {
@@ -450,12 +455,12 @@ QString MultiLineEdit::convertMircCodesToHtml(const QString &text) {
           bg = words[i].mid(pos+4,2);
 
         style.append(" color:");
-        style.append(mircColorMap[fg]);
+        style.append(_mircColorMap[fg]);
         style.append(";");
 
         if (!bg.isEmpty()) {
           style.append(" background-color:");
-          style.append(mircColorMap[bg]);
+          style.append(_mircColorMap[bg]);
           style.append(";");
           len = 6;
         }
@@ -465,6 +470,7 @@ QString MultiLineEdit::convertMircCodesToHtml(const QString &text) {
       words[i].replace("&","&amp;");
       words[i].replace("<", "&lt;");
       words[i].replace(">", "&gt;");
+      words[i].replace("\"", "&quot;");
       if (style.isEmpty()) {
         words[i] = "<span>" + words[i] + "</span>";
       }