1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/html/winpars.cpp
3 // Purpose: wxHtmlParser class (generic parser)
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
16 #if wxUSE_HTML && wxUSE_STREAMS
22 #include "wx/settings.h"
25 #include "wx/html/htmldefs.h"
26 #include "wx/html/winpars.h"
27 #include "wx/html/htmlwin.h"
28 #include "wx/fontmap.h"
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 IMPLEMENT_ABSTRACT_CLASS(wxHtmlWinParser
, wxHtmlParser
)
38 wxList
wxHtmlWinParser::m_Modules
;
40 wxHtmlWinParser::wxHtmlWinParser(wxHtmlWindowInterface
*wndIface
)
44 m_windowInterface
= wndIface
;
47 m_CharHeight
= m_CharWidth
= 0;
51 m_InputEnc
= wxFONTENCODING_ISO8859_1
;
52 m_OutputEnc
= wxFONTENCODING_DEFAULT
;
54 m_lastWordCell
= NULL
;
58 for (i
= 0; i
< 2; i
++)
59 for (j
= 0; j
< 2; j
++)
60 for (k
= 0; k
< 2; k
++)
61 for (l
= 0; l
< 2; l
++)
62 for (m
= 0; m
< 7; m
++)
64 m_FontsTable
[i
][j
][k
][l
][m
] = NULL
;
65 m_FontsFacesTable
[i
][j
][k
][l
][m
] = wxEmptyString
;
67 m_FontsEncTable
[i
][j
][k
][l
][m
] = wxFONTENCODING_DEFAULT
;
71 SetFonts(wxEmptyString
, wxEmptyString
, NULL
);
74 // fill in wxHtmlParser's tables:
75 wxList::compatibility_iterator node
= m_Modules
.GetFirst();
78 wxHtmlTagsModule
*mod
= (wxHtmlTagsModule
*) node
->GetData();
79 mod
->FillHandlersTable(this);
80 node
= node
->GetNext();
84 wxHtmlWinParser::~wxHtmlWinParser()
88 for (i
= 0; i
< 2; i
++)
89 for (j
= 0; j
< 2; j
++)
90 for (k
= 0; k
< 2; k
++)
91 for (l
= 0; l
< 2; l
++)
92 for (m
= 0; m
< 7; m
++)
94 if (m_FontsTable
[i
][j
][k
][l
][m
] != NULL
)
95 delete m_FontsTable
[i
][j
][k
][l
][m
];
100 delete[] m_tmpStrBuf
;
103 void wxHtmlWinParser::AddModule(wxHtmlTagsModule
*module)
105 m_Modules
.Append(module);
108 void wxHtmlWinParser::RemoveModule(wxHtmlTagsModule
*module)
110 m_Modules
.DeleteObject(module);
113 // build all HTML font sizes (1..7) from the given base size
114 static void wxBuildFontSizes(int *sizes
, int size
)
116 // using a fixed factor (1.2, from CSS2) is a bad idea as explained at
117 // http://www.w3.org/TR/CSS21/fonts.html#font-size-props but this is by far
118 // simplest thing to do so still do it like this for now
119 sizes
[0] = int(size
* 0.75); // exception to 1.2 rule, otherwise too small
120 sizes
[1] = int(size
* 0.83);
122 sizes
[3] = int(size
* 1.2);
123 sizes
[4] = int(size
* 1.44);
124 sizes
[5] = int(size
* 1.73);
125 sizes
[6] = int(size
* 2);
128 static int wxGetDefaultHTMLFontSize()
130 // base the default font size on the size of the default system font but
131 // also ensure that we have a font of reasonable size, otherwise small HTML
132 // fonts are unreadable
133 int size
= wxNORMAL_FONT
->GetPointSize();
139 void wxHtmlWinParser::SetFonts(const wxString
& normal_face
,
140 const wxString
& fixed_face
,
143 static int default_sizes
[7] = { 0 };
146 if ( !default_sizes
[0] )
147 wxBuildFontSizes(default_sizes
, wxGetDefaultHTMLFontSize());
149 sizes
= default_sizes
;
154 for (i
= 0; i
< 7; i
++)
155 m_FontsSizes
[i
] = sizes
[i
];
157 m_FontFaceFixed
= fixed_face
;
158 m_FontFaceNormal
= normal_face
;
161 SetInputEncoding(m_InputEnc
);
164 for (i
= 0; i
< 2; i
++)
165 for (j
= 0; j
< 2; j
++)
166 for (k
= 0; k
< 2; k
++)
167 for (l
= 0; l
< 2; l
++)
168 for (m
= 0; m
< 7; m
++) {
169 if (m_FontsTable
[i
][j
][k
][l
][m
] != NULL
)
171 delete m_FontsTable
[i
][j
][k
][l
][m
];
172 m_FontsTable
[i
][j
][k
][l
][m
] = NULL
;
177 void wxHtmlWinParser::SetStandardFonts(int size
,
178 const wxString
& normal_face
,
179 const wxString
& fixed_face
)
182 size
= wxGetDefaultHTMLFontSize();
185 wxBuildFontSizes(f_sizes
, size
);
187 wxString normal
= normal_face
;
188 if ( normal
.empty() )
189 normal
= wxNORMAL_FONT
->GetFaceName();
191 SetFonts(normal
, fixed_face
, f_sizes
);
194 void wxHtmlWinParser::InitParser(const wxString
& source
)
196 wxHtmlParser::InitParser(source
);
197 wxASSERT_MSG(m_DC
!= NULL
, wxT("no DC assigned to wxHtmlWinParser!!"));
199 m_FontBold
= m_FontItalic
= m_FontUnderlined
= m_FontFixed
= FALSE
;
200 m_FontSize
= 3; //default one
201 CreateCurrentFont(); // we're selecting default font into
203 // we're not using GetCharWidth/Height() because of
204 // differences under X and win
206 m_DC
->GetTextExtent( wxT("H"), &w
, &h
);
211 m_Link
= wxHtmlLinkInfo( wxEmptyString
);
212 m_LinkColor
.Set(0, 0, 0xFF);
213 m_ActualColor
.Set(0, 0, 0);
214 m_Align
= wxHTML_ALIGN_LEFT
;
215 m_ScriptMode
= wxHTML_SCRIPT_NORMAL
;
216 m_ScriptBaseline
= 0;
217 m_tmpLastWasSpace
= false;
218 m_lastWordCell
= NULL
;
220 // open the toplevel container that contains everything else and that
221 // is never closed (this makes parser's life easier):
224 // then open the first container into which page's content will go:
228 wxString charset
= ExtractCharsetInformation(source
);
229 if (!charset
.empty())
231 wxFontEncoding enc
= wxFontMapper::Get()->CharsetToEncoding(charset
);
232 if (enc
!= wxFONTENCODING_SYSTEM
)
233 SetInputEncoding(enc
);
237 m_Container
->InsertCell(new wxHtmlColourCell(m_ActualColor
));
238 wxColour windowColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
) ;
240 m_Container
->InsertCell
245 ? m_windowInterface
->GetHTMLBackgroundColour()
247 wxHTML_CLR_BACKGROUND
251 m_Container
->InsertCell(new wxHtmlFontCell(CreateCurrentFont()));
254 void wxHtmlWinParser::DoneParser()
258 SetInputEncoding(wxFONTENCODING_ISO8859_1
); // for next call
260 wxHtmlParser::DoneParser();
263 #if WXWIN_COMPATIBILITY_2_6
264 wxHtmlWindow
*wxHtmlWinParser::GetWindow()
266 if (!m_windowInterface
)
268 return wxDynamicCast(m_windowInterface
->GetHTMLWindow(), wxHtmlWindow
);
272 wxObject
* wxHtmlWinParser::GetProduct()
274 wxHtmlContainerCell
*top
;
280 while (top
->GetParent()) top
= top
->GetParent();
281 top
->RemoveExtraSpacing(true, true);
286 wxFSFile
*wxHtmlWinParser::OpenURL(wxHtmlURLType type
,
287 const wxString
& url
) const
289 if ( !m_windowInterface
)
290 return wxHtmlParser::OpenURL(type
, url
);
293 wxHtmlOpeningStatus status
;
296 wxString
myfullurl(myurl
);
298 // consider url as absolute path first
299 wxURI
current(myurl
);
300 myfullurl
= current
.BuildUnescapedURI();
302 // if not absolute then ...
303 if( current
.IsReference() )
305 wxString basepath
= GetFS()->GetPath();
306 wxURI
base(basepath
);
308 // ... try to apply base path if valid ...
309 if( !base
.IsReference() )
311 wxURI
path(myfullurl
);
312 path
.Resolve( base
);
313 myfullurl
= path
.BuildUnescapedURI();
317 // ... or force such addition if not included already
318 if( !current
.GetPath().Contains(base
.GetPath()) )
321 wxURI
connected( basepath
);
322 myfullurl
= connected
.BuildUnescapedURI();
328 status
= m_windowInterface
->OnHTMLOpeningURL(type
, myfullurl
, &redirect
);
329 if ( status
!= wxHTML_REDIRECT
)
335 if ( status
== wxHTML_BLOCK
)
338 int flags
= wxFS_READ
;
339 if (type
== wxHTML_URL_IMAGE
)
340 flags
|= wxFS_SEEKABLE
;
342 return GetFS()->OpenFile(myurl
, flags
);
345 void wxHtmlWinParser::AddText(const wxString
& txt
)
349 wxChar nbsp
= GetEntitiesParser()->GetCharForCode(160 /* nbsp */);
351 size_t lng
= txt
.length();
352 if (lng
+1 > m_tmpStrBufSize
)
354 delete[] m_tmpStrBuf
;
355 m_tmpStrBuf
= new wxChar
[lng
+1];
356 m_tmpStrBufSize
= lng
+1;
358 wxChar
*temp
= m_tmpStrBuf
;
360 wxString::const_iterator i
= txt
.begin();
361 wxString::const_iterator end
= txt
.end();
363 if (m_tmpLastWasSpace
)
366 (*i
== wxT('\n') || *i
== wxT('\r') || *i
== wxT(' ') ||
376 d
= temp
[templen
++] = *i
;
377 if ((d
== wxT('\n')) || (d
== wxT('\r')) || (d
== wxT(' ')) || (d
== wxT('\t')))
381 (*i
== wxT('\n') || *i
== wxT('\r') ||
382 *i
== wxT(' ') || *i
== wxT('\t')) )
393 temp
[templen
-1] = wxT(' ');
394 DoAddText(temp
, templen
, nbsp
);
395 m_tmpLastWasSpace
= true;
399 if (templen
&& (templen
> 1 || temp
[0] != wxT(' ')))
401 DoAddText(temp
, templen
, nbsp
);
402 m_tmpLastWasSpace
= false;
406 void wxHtmlWinParser::DoAddText(wxChar
*temp
, int& templen
, wxChar nbsp
)
412 m_EncConv
->Convert(temp
);
414 size_t len
= wxStrlen(temp
);
415 for (size_t j
= 0; j
< len
; j
++)
421 wxHtmlCell
*c
= new wxHtmlWordCell(temp
, *(GetDC()));
425 m_Container
->InsertCell(c
);
426 ((wxHtmlWordCell
*)c
)->SetPreviousWord(m_lastWordCell
);
427 m_lastWordCell
= (wxHtmlWordCell
*)c
;
432 wxHtmlContainerCell
* wxHtmlWinParser::OpenContainer()
434 m_Container
= new wxHtmlContainerCell(m_Container
);
435 m_Container
->SetAlignHor(m_Align
);
436 m_tmpLastWasSpace
= true;
437 /* to avoid space being first character in paragraph */
443 wxHtmlContainerCell
* wxHtmlWinParser::SetContainer(wxHtmlContainerCell
*c
)
445 m_tmpLastWasSpace
= true;
446 /* to avoid space being first character in paragraph */
447 return m_Container
= c
;
452 wxHtmlContainerCell
* wxHtmlWinParser::CloseContainer()
454 m_Container
= m_Container
->GetParent();
459 void wxHtmlWinParser::SetFontSize(int s
)
462 else if (s
> 7) s
= 7;
468 wxFont
* wxHtmlWinParser::CreateCurrentFont()
470 int fb
= GetFontBold(),
471 fi
= GetFontItalic(),
472 fu
= GetFontUnderlined(),
474 fs
= GetFontSize() - 1 /*remap from <1;7> to <0;6>*/ ;
476 wxString face
= ff
? m_FontFaceFixed
: m_FontFaceNormal
;
477 wxString
*faceptr
= &(m_FontsFacesTable
[fb
][fi
][fu
][ff
][fs
]);
478 wxFont
**fontptr
= &(m_FontsTable
[fb
][fi
][fu
][ff
][fs
]);
480 wxFontEncoding
*encptr
= &(m_FontsEncTable
[fb
][fi
][fu
][ff
][fs
]);
483 if (*fontptr
!= NULL
&& (*faceptr
!= face
485 || *encptr
!= m_OutputEnc
493 if (*fontptr
== NULL
)
496 *fontptr
= new wxFont(
497 (int) (m_FontsSizes
[fs
] * m_PixelScale
),
498 ff
? wxMODERN
: wxSWISS
,
499 fi
? wxITALIC
: wxNORMAL
,
500 fb
? wxBOLD
: wxNORMAL
,
501 fu
? true : false, face
506 *encptr
= m_OutputEnc
;
509 m_DC
->SetFont(**fontptr
);
515 void wxHtmlWinParser::SetLink(const wxHtmlLinkInfo
& link
)
518 m_UseLink
= (link
.GetHref() != wxEmptyString
);
521 void wxHtmlWinParser::SetFontFace(const wxString
& face
)
523 if (GetFontFixed()) m_FontFaceFixed
= face
;
524 else m_FontFaceNormal
= face
;
527 if (m_InputEnc
!= wxFONTENCODING_DEFAULT
)
528 SetInputEncoding(m_InputEnc
);
532 void wxHtmlWinParser::ApplyStateToCell(wxHtmlCell
*cell
)
536 cell
->SetLink(GetLink());
538 // apply current script mode settings:
539 cell
->SetScriptMode(GetScriptMode(), GetScriptBaseline());
544 void wxHtmlWinParser::SetInputEncoding(wxFontEncoding enc
)
546 m_InputEnc
= m_OutputEnc
= wxFONTENCODING_DEFAULT
;
553 if (enc
== wxFONTENCODING_DEFAULT
) return;
555 wxFontEncoding altfix
, altnorm
;
556 bool availfix
, availnorm
;
559 availnorm
= wxFontMapper::Get()->IsEncodingAvailable(enc
, m_FontFaceNormal
);
560 availfix
= wxFontMapper::Get()->IsEncodingAvailable(enc
, m_FontFaceFixed
);
561 if (availnorm
&& availfix
)
565 else if (wxFontMapper::Get()->GetAltForEncoding(enc
, &altnorm
, m_FontFaceNormal
, false) &&
566 wxFontMapper::Get()->GetAltForEncoding(enc
, &altfix
, m_FontFaceFixed
, false) &&
568 m_OutputEnc
= altnorm
;
570 // at least normal face?
573 else if (wxFontMapper::Get()->GetAltForEncoding(enc
, &altnorm
, m_FontFaceNormal
, false))
574 m_OutputEnc
= altnorm
;
579 // okay, let's convert to ISO_8859-1, available always
580 m_OutputEnc
= wxFONTENCODING_DEFAULT
;
582 m_OutputEnc
= wxLocale::GetSystemEncoding() ;
587 if (m_OutputEnc
== wxFONTENCODING_DEFAULT
)
588 GetEntitiesParser()->SetEncoding(wxFONTENCODING_SYSTEM
);
590 GetEntitiesParser()->SetEncoding(m_OutputEnc
);
592 if (m_InputEnc
== m_OutputEnc
) return;
594 m_EncConv
= new wxEncodingConverter();
595 if (!m_EncConv
->Init(m_InputEnc
,
596 (m_OutputEnc
== wxFONTENCODING_DEFAULT
) ?
597 wxFONTENCODING_ISO8859_1
: m_OutputEnc
,
598 wxCONVERT_SUBSTITUTE
))
599 { // total failure :-(
600 wxLogError(_("Failed to display HTML document in %s encoding"),
601 wxFontMapper::GetEncodingName(enc
).c_str());
602 m_InputEnc
= m_OutputEnc
= wxFONTENCODING_DEFAULT
;
612 //-----------------------------------------------------------------------------
613 // wxHtmlWinTagHandler
614 //-----------------------------------------------------------------------------
616 IMPLEMENT_ABSTRACT_CLASS(wxHtmlWinTagHandler
, wxHtmlTagHandler
)
618 //-----------------------------------------------------------------------------
620 //-----------------------------------------------------------------------------
622 // NB: This is *NOT* winpars.cpp's initialization and shutdown code!!
623 // This module is an ancestor for tag handlers modules defined
624 // in m_*.cpp files with TAGS_MODULE_BEGIN...TAGS_MODULE_END construct.
626 // Do not add any winpars.cpp shutdown or initialization code to it,
627 // create a new module instead!
629 IMPLEMENT_DYNAMIC_CLASS(wxHtmlTagsModule
, wxModule
)
631 bool wxHtmlTagsModule::OnInit()
633 wxHtmlWinParser::AddModule(this);
637 void wxHtmlTagsModule::OnExit()
639 wxHtmlWinParser::RemoveModule(this);