#include "wx/html/htmlwin.h"
#include "wx/fontmap.h"
#include "wx/log.h"
+#include "wx/settings.h"
//-----------------------------------------------------------------------------
// wxHtmlWinParser
//-----------------------------------------------------------------------------
+IMPLEMENT_ABSTRACT_CLASS(wxHtmlWinParser, wxHtmlParser)
wxList wxHtmlWinParser::m_Modules;
#endif
m_Container->InsertCell(new wxHtmlColourCell(m_ActualColor));
+ wxColour windowColour = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW) ;
m_Container->InsertCell(
- new wxHtmlColourCell(GetWindow()->GetBackgroundColour(),
+ new wxHtmlColourCell(GetWindow() ?
+ GetWindow()->GetBackgroundColour() :
+ windowColour,
wxHTML_CLR_BACKGROUND));
m_Container->InsertCell(new wxHtmlFontCell(CreateCurrentFont()));
}
else if (wxFontMapper::Get()->GetAltForEncoding(enc, &altnorm, m_FontFaceNormal, FALSE))
m_OutputEnc = altnorm;
- // okay, let convert to ISO_8859-1, available always
else
+ {
+#ifndef __WXMAC__
+ // okay, let convert to ISO_8859-1, available always
m_OutputEnc = wxFONTENCODING_DEFAULT;
+#else
+ m_OutputEnc = wxLocale::GetSystemEncoding() ;
+#endif
+ }
m_InputEnc = enc;
if (m_OutputEnc == wxFONTENCODING_DEFAULT)