+ wxString style;
+
+ // Is there any change in the font properties of the item?
+ if (thisStyle.GetFontFaceName() != currentStyle.GetFontFaceName())
+ {
+ wxString faceName(thisStyle.GetFontFaceName());
+ style += wxString::Format(wxT(" face=\"%s\""), faceName.c_str());
+ }
+ if (thisStyle.GetFontSize() != currentStyle.GetFontSize())
+ style += wxString::Format(wxT(" size=\"%ld\""), PtToSize(thisStyle.GetFontSize()));
+ if (thisStyle.GetTextColour() != currentStyle.GetTextColour() )
+ {
+ wxString color(thisStyle.GetTextColour().GetAsString(wxC2S_HTML_SYNTAX));
+ style += wxString::Format(wxT(" color=\"%s\""), color.c_str());
+ }
+
+ if (style.size())
+ {
+ str << wxString::Format(wxT("<font %s >"), style.c_str());
+ m_font = true;
+ }
+
+ if (thisStyle.GetFontWeight() == wxBOLD)
+ str << wxT("<b>");
+ if (thisStyle.GetFontStyle() == wxITALIC)
+ str << wxT("<i>");
+ if (thisStyle.GetFontUnderlined())
+ str << wxT("<u>");
+
+ if (thisStyle.HasURL())
+ str << wxT("<a href=\"") << thisStyle.GetURL() << wxT("\">");
+}
+
+void wxRichTextHTMLHandler::EndCharacterFormatting(const wxTextAttr& WXUNUSED(currentStyle), const wxTextAttr& thisStyle, const wxTextAttr& WXUNUSED(paraStyle), wxTextOutputStream& stream)
+{
+ if (thisStyle.HasURL())
+ stream << wxT("</a>");
+
+ if (thisStyle.GetFontUnderlined())
+ stream << wxT("</u>");
+ if (thisStyle.GetFontStyle() == wxITALIC)
+ stream << wxT("</i>");
+ if (thisStyle.GetFontWeight() == wxBOLD)
+ stream << wxT("</b>");
+
+ if (m_font)
+ {
+ m_font = false;
+ stream << wxT("</font>");
+ }
+}
+
+/// Begin paragraph formatting
+void wxRichTextHTMLHandler::BeginParagraphFormatting(const wxTextAttr& WXUNUSED(currentStyle), const wxTextAttr& thisStyle, wxTextOutputStream& str)
+{
+ if (thisStyle.HasPageBreak())
+ {
+ str << wxT("<div style=\"page-break-after:always\"></div>\n");
+ }
+
+ if (thisStyle.HasLeftIndent() && thisStyle.GetLeftIndent() != 0)
+ {
+ if (thisStyle.HasBulletStyle())
+ {
+ int indent = thisStyle.GetLeftIndent();
+
+ // Close levels high than this
+ CloseLists(indent, str);
+
+ if (m_indents.GetCount() > 0 && indent == m_indents.Last())
+ {
+ // Same level, no need to start a new list
+ }
+ else if (m_indents.GetCount() == 0 || indent > m_indents.Last())
+ {
+ m_indents.Add(indent);
+
+ wxString tag;
+ int listType = TypeOfList(thisStyle, tag);
+ m_listTypes.Add(listType);
+
+ // wxHTML needs an extra <p> before a list when using <p> ... </p> in previous paragraphs.
+ // TODO: pass a flag that indicates we're using wxHTML.
+ str << wxT("<p>\n");
+
+ str << tag;
+ }
+
+ str << wxT("<li> ");
+ }
+ else
+ {
+ CloseLists(-1, str);
+
+ wxString align = GetAlignment(thisStyle);
+ str << wxString::Format(wxT("<p align=\"%s\""), align.c_str());
+
+ wxString styleStr;
+
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) && thisStyle.HasParagraphSpacingBefore())
+ {
+ float spacingBeforeMM = thisStyle.GetParagraphSpacingBefore() / 10.0;
+
+ styleStr += wxString::Format(wxT("margin-top: %.2fmm; "), spacingBeforeMM);
+ }
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) && thisStyle.HasParagraphSpacingAfter())
+ {
+ float spacingAfterMM = thisStyle.GetParagraphSpacingAfter() / 10.0;
+
+ styleStr += wxString::Format(wxT("margin-bottom: %.2fmm; "), spacingAfterMM);
+ }
+
+ float indentLeftMM = (thisStyle.GetLeftIndent() + thisStyle.GetLeftSubIndent())/10.0;
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) && (indentLeftMM > 0.0))
+ {
+ styleStr += wxString::Format(wxT("margin-left: %.2fmm; "), indentLeftMM);
+ }
+ float indentRightMM = thisStyle.GetRightIndent()/10.0;
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) && thisStyle.HasRightIndent() && (indentRightMM > 0.0))
+ {
+ styleStr += wxString::Format(wxT("margin-right: %.2fmm; "), indentRightMM);
+ }
+ // First line indentation
+ float firstLineIndentMM = - thisStyle.GetLeftSubIndent() / 10.0;
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) && (firstLineIndentMM > 0.0))
+ {
+ styleStr += wxString::Format(wxT("text-indent: %.2fmm; "), firstLineIndentMM);
+ }
+
+ if (!styleStr.IsEmpty())
+ str << wxT(" style=\"") << styleStr << wxT("\"");
+
+ str << wxT(">");
+
+ // TODO: convert to pixels
+ int indentPixels = static_cast<int>(indentLeftMM*10/4);
+
+ if ((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) == 0)
+ {
+ // Use a table to do indenting if we don't have CSS
+ str << wxString::Format(wxT("<table border=0 cellpadding=0 cellspacing=0><tr><td width=\"%d\"></td><td>"), indentPixels);
+ m_inTable = true;
+ }
+
+ OutputFont(thisStyle, str);
+
+ if (((GetFlags() & wxRICHTEXT_HANDLER_USE_CSS) == 0) && (thisStyle.GetLeftSubIndent() < 0))
+ {
+ str << SymbolicIndent( - thisStyle.GetLeftSubIndent());
+ }
+ }
+ }
+ else
+ {
+ CloseLists(-1, str);
+
+ wxString align = GetAlignment(thisStyle);
+ str << wxString::Format(wxT("<p align=\"%s\""), align.c_str());