1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtexthtml.cpp
3 // Purpose: HTML I/O for wxRichTextCtrl
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtexthtml.h"
27 #include "wx/filename.h"
28 #include "wx/wfstream.h"
29 #include "wx/txtstrm.h"
31 IMPLEMENT_DYNAMIC_CLASS(wxRichTextHTMLHandler
, wxRichTextFileHandler
)
33 /// Can we handle this filename (if using files)? By default, checks the extension.
34 bool wxRichTextHTMLHandler::CanHandle(const wxString
& filename
) const
36 wxString path
, file
, ext
;
37 wxSplitPath(filename
, & path
, & file
, & ext
);
39 return (ext
.Lower() == wxT("html") || ext
.Lower() == wxT("htm"));
44 bool wxRichTextHTMLHandler::DoLoadFile(wxRichTextBuffer
*WXUNUSED(buffer
), wxInputStream
& WXUNUSED(stream
))
50 * We need to output only _changes_ in character formatting.
53 bool wxRichTextHTMLHandler::DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
57 wxTextOutputStream
str(stream
);
59 wxTextAttrEx currentParaStyle
= buffer
->GetAttributes();
60 wxTextAttrEx currentCharStyle
= buffer
->GetAttributes();
62 str
<< wxT("<html><head></head><body>\n");
65 wxRichText may be support paper formats like a1/a2/a3/a4
66 when this widget grown enough, i should turn back and support its new features
69 str << wxT("<table border=0 cellpadding=0 cellspacing=0><tr><td>");
71 wxString left_indent = SymbolicIndent(currentParaStyle.GetLeftIndent());
72 wxString right_indent = SymbolicIndent(currentParaStyle.GetRightIndent());
74 str << wxString::Format(wxT("%s</td><td></td><td>%s</td></tr><tr>"),
75 left_indent.c_str(), //Document-Wide Left Indent
76 right_indent.c_str()); //Document-Wide Right Indent
78 str << wxT("<td></td><td width=\"100%\">");
81 str
<< wxT("<table border=0 cellpadding=0 cellspacing=0><tr><td width=\"100%\">");
83 str
<< wxString::Format(wxT("<font face=\"%s\" size=\"%i\" color=\"#%02X%02X%02X\" >"),
84 currentParaStyle
.GetFont().GetFaceName(), Pt_To_Size( currentParaStyle
.GetFont().GetPointSize() ),
85 currentParaStyle
.GetTextColour().Red(), currentParaStyle
.GetTextColour().Green(),
86 currentParaStyle
.GetTextColour().Blue());
88 //wxString align = GetAlignment( currentParaStyle.GetAlignment() );
89 //str << wxString::Format(wxT("<p align=\"%s\">"), align );
95 wxRichTextObjectList::compatibility_iterator node
= buffer
->GetChildren().GetFirst();
98 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
99 wxASSERT (para
!= NULL
);
103 OutputParagraphFormatting(currentParaStyle
, para
->GetAttributes(), stream
);
105 wxRichTextObjectList::compatibility_iterator node2
= para
->GetChildren().GetFirst();
108 wxRichTextObject
* obj
= node2
->GetData();
109 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
110 if (textObj
&& !textObj
->IsEmpty())
112 BeginCharacterFormatting(currentCharStyle
, obj
->GetAttributes(), stream
);
114 str
<< textObj
->GetText();
116 EndCharacterFormatting(currentCharStyle
, obj
->GetAttributes(), stream
);
119 wxRichTextImage
* image
= wxDynamicCast(obj
, wxRichTextImage
);
120 if( image
&& !image
->IsEmpty())
121 Image_to_Base64( image
, stream
);
123 node2
= node2
->GetNext();
125 //OutputParagraphFormatting(currentParaStyle, para->GetAttributes(), stream, false);
127 node
= node
->GetNext();
130 str
<< wxT("</font></td></tr></table></body></html>\n");
135 void wxRichTextHTMLHandler::BeginCharacterFormatting(const wxTextAttrEx
& currentStyle
, const wxTextAttrEx
& thisStyle
, wxOutputStream
& stream
)
137 wxTextOutputStream
str(stream
);
139 //Is the item bulleted one?
140 if( thisStyle
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
142 //Is there any opened list?
147 //Is the item among the previous ones
148 //Is the item one of the previous list tag's child items
149 if( (thisStyle
.GetLeftIndent() == (m_indent
+ 100)) || (thisStyle
.GetLeftIndent() < 100) )
150 str
<< wxT("<li>");//Yes it is
155 //So we should close the list tag
156 str
<< (m_is_ul
? wxT("</ul>") : wxT("</ol>"));
158 //And renavigate to new list's horizontal position
159 NavigateToListPosition(thisStyle
, str
);
162 //Get the appropriate tag, an ol for numerical values, an ul for dot, square etc.
164 TypeOfList(thisStyle
, tag
);
165 str
<< wxString::Format(wxT("%s<li>"), tag
);
170 //No there isn't a list
172 //navigate to new list's horizontal position(indent)
173 NavigateToListPosition(thisStyle
, str
);
175 //Get the appropriate tag, an ol for numerical values, an ul for dot, square etc.
177 TypeOfList(thisStyle
, tag
);
178 str
<< wxString::Format(wxT("%s<li>"), tag
);
180 //Now we have a list, mark it.
186 //The item is not bulleted and there is a list what should be closed now.
189 str
<< (m_is_ul
? wxT("</ul>") : wxT("</ol>"));
190 //And mark as there is no an opened list
194 // does the item have an indentation ?
195 if( thisStyle
.GetLeftIndent() )
197 if( thisStyle
.GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
)
201 if( (thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent()) == m_indent
)
203 if( thisStyle
.GetLeftSubIndent() < 0 )
205 wxString symbolic_indent
= SymbolicIndent(~thisStyle
.GetLeftSubIndent());
206 str
<< wxString::Format(wxT("%s"), symbolic_indent
);
211 if( thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent() > m_indent
)
213 Indent(thisStyle
, str
);
214 m_indent
= thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent();
215 m_indents
.Add( m_indent
);
219 int i
= m_indents
.size() - 1;
222 if( m_indent
< (thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent()) )
224 Indent(thisStyle
, str
);
225 m_indent
= thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent();
226 m_indents
.Add( m_indent
);
230 else if( m_indent
== (thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent()) )
232 if( thisStyle
.GetLeftSubIndent() < 0 )
234 wxString symbolic_indent
= SymbolicIndent(~thisStyle
.GetLeftSubIndent());
235 str
<< wxString::Format(wxT("%s"), symbolic_indent
);
241 str
<< wxT("</td></tr></table>");
243 m_indents
.RemoveAt(i
);
245 if( i
< 1 ){m_indent
=0; break;}
246 m_indent
= m_indents
[i
-1];
254 Indent(thisStyle
, str
);
255 m_indent
= thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent();
256 m_indents
.Add( m_indent
);
262 //The item is not indented and there is a table(s) what should be closed now.
265 for(unsigned int i
= 0; i
< m_indents
.size(); i
++ )
266 str
<< wxT("</td></tr></table>");
275 //Is there any change on the font properties of the item
276 if( thisStyle
.GetFont().GetFaceName() != currentStyle
.GetFont().GetFaceName() )
277 style
+= wxString::Format(wxT(" face=\"%s\""), thisStyle
.GetFont().GetFaceName());
278 if( thisStyle
.GetFont().GetPointSize() != currentStyle
.GetFont().GetPointSize() )
279 style
+= wxString::Format(wxT(" size=\"%i\""), Pt_To_Size(thisStyle
.GetFont().GetPointSize()) );
280 if( thisStyle
.GetTextColour() != currentStyle
.GetTextColour() )
281 style
+= wxString::Format(wxT(" color=\"#%02X%02X%02X\""), thisStyle
.GetTextColour().Red(),
282 thisStyle
.GetTextColour().Green(), thisStyle
.GetTextColour().Blue());
284 if( style
.size() ){str
<< wxString::Format(wxT("<font %s >"), style
); m_font
= true;}
286 if( thisStyle
.GetFont().GetWeight() == wxBOLD
)
288 if( thisStyle
.GetFont().GetStyle() == wxITALIC
)
290 if( thisStyle
.GetFont().GetUnderlined() )
294 void wxRichTextHTMLHandler::EndCharacterFormatting(const wxTextAttrEx
& WXUNUSED(currentStyle
), const wxTextAttrEx
& thisStyle
, wxOutputStream
& stream
)
296 wxTextOutputStream
str(stream
);
298 if( thisStyle
.GetFont().GetUnderlined() )
300 if( thisStyle
.GetFont().GetStyle() == wxITALIC
)
302 if( thisStyle
.GetFont().GetWeight() == wxBOLD
)
308 str
<< wxT("</font>");
312 /// Output paragraph formatting
313 void wxRichTextHTMLHandler::OutputParagraphFormatting(const wxTextAttrEx
& WXUNUSED(currentStyle
), const wxTextAttrEx
& thisStyle
, wxOutputStream
& stream
)
315 //If there is no opened list currently, insert a <p> after every paragraph
318 wxTextOutputStream
str(stream
);
319 wxString align
= GetAlignment( thisStyle
);
320 str
<< wxString::Format(wxT("<p align=\"%s\">"), align
);
324 void wxRichTextHTMLHandler::NavigateToListPosition(const wxTextAttrEx
& thisStyle
, wxTextOutputStream
& str
)
326 //indenting an item using an ul/ol tag is equal to inserting 5 x on its left side.
327 //so we should start from 100 point left
329 //Is the second td's left wall of the current indentaion table at the 100+ point-left-side
330 //of the item, horizontally?
331 if( m_indent
+ 100 < thisStyle
.GetLeftIndent() )
334 LIndent(thisStyle
, str
);
335 m_indent
= thisStyle
.GetLeftIndent() - 100;
336 m_indents
.Add( m_indent
);
341 int i
= m_indents
.size() - 1;
344 //Is the second td's left wall of the current indentaion table at the 100+ point-left-side
346 if( m_indent
+ 100 < thisStyle
.GetLeftIndent() )
349 LIndent(thisStyle
, str
);
350 m_indent
= thisStyle
.GetLeftIndent() - 100;
351 m_indents
.Add( m_indent
);
354 else if( m_indent
+ 100 == thisStyle
.GetLeftIndent() )
358 //No it is not, the second td's left wall of the current indentaion table is at the
359 //right side of the current item horizontally, so close it.
360 str
<< wxT("</td></tr></table>");
362 m_indents
.RemoveAt(i
);
364 if( i
< 1 ){m_indent
=0; break;}
365 m_indent
= m_indents
[i
-1];
369 void wxRichTextHTMLHandler::Indent( const wxTextAttrEx
& thisStyle
, wxTextOutputStream
& str
)
371 //As a five year experienced web developer i assure you there is no way to indent an item
372 //in html way, but we can use tables.
376 //Item -> "Hello world"
377 //Its Left Indentation -> 100
378 //Its Left Sub-Indentation ->40
379 //A typical indentation-table for the item will be construct as the following
383 //LSI = Left Sub Indent
384 //LI = Left Indent - LSI
386 //-------------------------------------------
387 //| nbsp;|nbsp;nbsp;Hello World |
390 //| --LI-- | --LSI-- |
391 //-------------------------------------------
393 str
<< wxT("<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr>");
395 wxString symbolic_indent
= SymbolicIndent( (thisStyle
.GetLeftIndent() + thisStyle
.GetLeftSubIndent()) - m_indent
);
396 str
<< wxString::Format( wxT("<td>%s</td>"), symbolic_indent
);
397 str
<< wxT("<td width=\"100%\">");
399 if( thisStyle
.GetLeftSubIndent() < 0 )
401 symbolic_indent
= SymbolicIndent(~thisStyle
.GetLeftSubIndent());
402 str
<< wxString::Format(wxT("%s"), symbolic_indent
);
406 void wxRichTextHTMLHandler::LIndent( const wxTextAttrEx
& thisStyle
, wxTextOutputStream
& str
)
409 //r.BeginNumberedBullet(1, 200, 60);
411 //r.WriteText(wxT("first item"));
412 //r.EndNumberedBullet();
413 //r.BeginNumberedBullet(2, 200, 60);
415 //r.WriteText(wxT("second item."));
416 //r.EndNumberedBullet();
418 //A typical indentation-table for the item will be construct as the following
420 //1 x nbsp = 20 point
421 //ULI -> 100pt (UL/OL tag indents its sub element by 100 point)
422 //<--------- 100 pt ---------->|
423 //------------------------------------------------------
424 //| nbsp; nbsp;|<ul> |
425 //| |<-ULI-><li>first item |
426 //| |<-ULI-><li>second item |
428 //------------------------------------------------------
432 str
<< wxT("<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr>");
434 wxString symbolic_indent
= SymbolicIndent( (thisStyle
.GetLeftIndent() - m_indent
) - 100);
435 str
<< wxString::Format( wxT("<td>%s</td>"), symbolic_indent
);
436 str
<< wxT("<td width=\"100%\">");
439 void wxRichTextHTMLHandler::TypeOfList( const wxTextAttrEx
& thisStyle
, wxString
& tag
)
441 //We can use number attribute of li tag but not all the browsers support it.
442 //also wxHtmlWindow doesn't support type attribute.
445 if( thisStyle
.GetBulletStyle() == (wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
))
446 tag
= wxT("<ol type=\"1\">");
447 else if( thisStyle
.GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER
)
448 tag
= wxT("<ol type=\"A\">");
449 else if( thisStyle
.GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER
)
450 tag
= wxT("<ol type=\"a\">");
451 else if( thisStyle
.GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER
)
452 tag
= wxT("<ol type=\"I\">");
453 else if( thisStyle
.GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER
)
454 tag
= wxT("<ol type=\"i\">");
462 wxString
wxRichTextHTMLHandler::GetAlignment( const wxTextAttrEx
& thisStyle
)
464 switch( thisStyle
.GetAlignment() )
466 case wxTEXT_ALIGNMENT_LEFT
:
468 case wxTEXT_ALIGNMENT_RIGHT
:
470 case wxTEXT_ALIGNMENT_CENTER
:
471 return wxT("center");
472 case wxTEXT_ALIGNMENT_JUSTIFIED
:
473 return wxT("justify");
479 void wxRichTextHTMLHandler::Image_to_Base64(wxRichTextImage
* image
, wxOutputStream
& stream
)
481 wxTextOutputStream
str(stream
);
483 str
<< wxT("<img src=\"");
485 str
<< GetMimeType(image
->GetImageBlock().GetImageType());
486 str
<< wxT(";base64,");
488 wxChar
* data
= b64enc( image
->GetImageBlock().GetData(), image
->GetImageBlock().GetDataSize() );
496 long wxRichTextHTMLHandler::Pt_To_Size(long size
)
498 //return most approximate size
499 if(size
< 9 ) return 1;
500 else if( size
< 11 ) return 2;
501 else if( size
< 14 ) return 3;
502 else if( size
< 18 ) return 4;
503 else if( size
< 23 ) return 5;
504 else if( size
< 30 ) return 6;
508 wxString
wxRichTextHTMLHandler::SymbolicIndent(long indent
)
511 for(;indent
> 0; indent
-= 20)
512 in
.Append( wxT(" ") );
516 wxChar
* wxRichTextHTMLHandler::GetMimeType(int imageType
)
520 case wxBITMAP_TYPE_BMP
:
521 return wxT("image/bmp");
522 case wxBITMAP_TYPE_TIF
:
523 return wxT("image/tiff");
524 case wxBITMAP_TYPE_GIF
:
525 return wxT("image/gif");
526 case wxBITMAP_TYPE_PNG
:
527 return wxT("image/png");
528 case wxBITMAP_TYPE_JPEG
:
529 return wxT("image/jpeg");
531 return wxT("image/unknown");
535 //exim-style base64 encoder
536 wxChar
* wxRichTextHTMLHandler::b64enc( unsigned char* input
, size_t in_len
)
538 //elements of enc64 array must be 8 bit values
539 //otherwise encoder will fail
540 //hmmm.. Does wxT macro define a char as 16 bit value
541 //when compiling with UNICODE option?
542 const static wxChar
* enc64
= wxT("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
543 wxChar
* output
= new wxChar
[4*((in_len
+2)/3)+1];
546 while( in_len
-- > 0 )
548 register wxChar a
, b
;
552 *p
++ = enc64
[ (a
>> 2) & 0x3f ];
556 *p
++ = enc64
[ (a
<< 4 ) & 0x30 ];
564 *p
++ = enc64
[(( a
<< 4 ) | ((b
>> 4) &0xf )) & 0x3f];
568 *p
++ = enc64
[ (b
<< 2) & 0x3f ];
575 *p
++ = enc64
[ ((( b
<< 2 ) & 0x3f ) | ((a
>> 6)& 0x3)) & 0x3f ];
577 *p
++ = enc64
[ a
& 0x3f ];