ClearTemporaryImageLocations();
buffer->Defragment();
-
+
wxTextOutputStream str(stream);
wxTextAttrEx currentParaStyle = buffer->GetAttributes();
str << wxT("<table border=0 cellpadding=0 cellspacing=0><tr><td width=\"100%\">");
OutputFont(currentParaStyle, str);
-
+
m_font = false;
m_inTable = false;
-
+
m_indents.Clear();
m_listTypes.Clear();
if (para)
{
wxTextAttrEx paraStyle(para->GetCombinedAttributes());
-
+
BeginParagraphFormatting(currentParaStyle, paraStyle, str);
wxRichTextObjectList::compatibility_iterator node2 = para->GetChildren().GetFirst();
{
wxTextAttrEx charStyle(para->GetCombinedAttributes(obj->GetAttributes()));
BeginCharacterFormatting(currentCharStyle, charStyle, paraStyle, str);
-
+
wxString text = textObj->GetText();
if (charStyle.HasTextEffects() && (charStyle.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS))
}
node = node->GetNext();
}
-
+
CloseLists(-1, str);
str << wxT("</font>");
-
+
str << wxT("</td></tr></table><p>");
if ((GetFlags() & wxRICHTEXT_HANDLER_NO_HEADER_FOOTER) == 0)
str << wxT("</body></html>");
-
+
str << wxT("\n");
m_buffer = NULL;
str << wxT("<i>");
if (thisStyle.GetFont().GetUnderlined())
str << wxT("<u>");
-
+
if (thisStyle.HasURL())
str << wxT("<a href=\"") << thisStyle.GetURL() << wxT("\">");
}
// 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);
-
+
wxString align = GetAlignment(thisStyle);
str << wxString::Format(wxT("<p align=\"%s\">"), align.c_str());
-
+
str << tag;
}
-
+
str << wxT("<li> ");
}
else
{
CloseLists(-1, str);
-
+
wxString align = GetAlignment(thisStyle);
str << wxString::Format(wxT("<p align=\"%s\">"), align.c_str());
str << SymbolicIndent( - thisStyle.GetLeftSubIndent());
}
- m_inTable = true;
+ m_inTable = true;
}
}
else
wxString align = GetAlignment(thisStyle);
str << wxString::Format(wxT("<p align=\"%s\">"), align.c_str());
- }
+ }
}
/// End paragraph formatting
{
if (thisStyle.HasFont())
stream << wxT("</font>");
-
+
stream << wxT("</td></tr></table>\n");
m_inTable = false;
}
{
if (style.HasFont())
{
- stream << wxString::Format(wxT("<font face=\"%s\" size=\"%ld\" color=\"%s\" >"),
- style.GetFont().GetFaceName().c_str(), PtToSize(style.GetFont().GetPointSize()),
- style.GetTextColour().GetAsString(wxC2S_HTML_SYNTAX).c_str());
+ stream << wxString::Format(wxT("<font face=\"%s\" size=\"%ld\""), style.GetFont().GetFaceName().c_str(), PtToSize(style.GetFont().GetPointSize()));
+ if (style.HasTextColour())
+ stream << wxString::Format(wxT(" color=\"%s\""), style.GetTextColour().GetAsString(wxC2S_HTML_SYNTAX).c_str());
+ stream << wxT(" >");
}
}
tag = wxT("<ul>");
m_is_ul = true;
}
-
+
if (m_is_ul)
return 1;
else
image->MakeBlock();
if (image->GetImage().Ok())
- {
+ {
wxString ext(image->GetImageBlock().GetExtension());
wxString tempFilename(wxString::Format(wxT("image%d.%s"), sm_fileCounter, ext));
wxMemoryFSHandler::AddFile(tempFilename, image->GetImage(), image->GetImageBlock().GetImageType());
-
+
m_imageLocations.Add(tempFilename);
-
+
str << wxT("memory:") << tempFilename;
}
else
image->MakeBlock();
if (image->GetImage().Ok())
- {
+ {
wxString tempDir(GetTempDir());
if (tempDir.IsEmpty())
tempDir = wxFileName::GetTempDir();
-
+
wxString ext(image->GetImageBlock().GetExtension());
wxString tempFilename(wxString::Format(wxT("%s/image%d.%s"), tempDir, sm_fileCounter, ext));
image->GetImageBlock().Write(tempFilename);
-
+
m_imageLocations.Add(tempFilename);
-
- str << wxFileSystem::FileNameToURL(tempFilename);
+
+ str << wxFileSystem::FileNameToURL(tempFilename);
}
else
str << wxT("file:?");
for (i = 0; i < len; i++)
if (size <= m_fontSizeMapping[i])
return i+1;
- return 7;
+ return 7;
}
wxString wxRichTextHTMLHandler::SymbolicIndent(long indent)
for (i = 0; i < imageLocations.GetCount(); i++)
{
wxString location = imageLocations[i];
-
+
if (flags & wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY)
{
#if wxUSE_FILESYSTEM
wxRemoveFile(location);
}
}
-
+
return true;
}