}
-
void wxHtmlDCRenderer::SetHtmlText(const wxString& html, const wxString& basepath, bool isdir)
{
if (m_DC == NULL) return;
}
+void wxHtmlDCRenderer::SetFonts(wxString normal_face, wxString fixed_face,
+ const int *sizes)
+{
+ m_Parser->SetFonts(normal_face, fixed_face, sizes);
+ if (m_DC == NULL && m_Cells != NULL) m_Cells->Layout(m_Width);
+}
+
int wxHtmlDCRenderer::Render(int x, int y, int from, int dont_render)
{
m_BasePathIsDir = isdir;
}
-// defined in htmlfilt.cpp
-void wxPrivate_ReadString(wxString& str, wxInputStream* s);
-
void wxHtmlPrintout::SetHtmlFile(const wxString& htmlfile)
{
wxFileSystem fs;
return;
}
- wxInputStream *st = ff->GetStream();
- wxString doc;
- wxPrivate_ReadString(doc, st);
-
- delete ff;
-
+ wxHtmlFilterHTML filter;
+ wxString doc = filter.ReadFile(*ff);
+
SetHtmlText(doc, htmlfile, FALSE);
+ delete ff;
}
+void wxHtmlPrintout::SetFonts(wxString normal_face, wxString fixed_face,
+ const int *sizes)
+{
+ m_Renderer->SetFonts(normal_face, fixed_face, sizes);
+ m_RendererHdr->SetFonts(normal_face, fixed_face, sizes);
+}
+
-//--------------------------------------------------------------------------------
+//----------------------------------------------------------------------------
// wxHtmlEasyPrinting
-//--------------------------------------------------------------------------------
+//----------------------------------------------------------------------------
wxHtmlEasyPrinting::wxHtmlEasyPrinting(const wxString& name, wxFrame *parent_frame)
m_PageSetupData->EnableMargins(TRUE);
m_PageSetupData->SetMarginTopLeft(wxPoint(25, 25));
m_PageSetupData->SetMarginBottomRight(wxPoint(25, 25));
+
+ SetFonts(wxEmptyString, wxEmptyString, NULL);
}
}
+void wxHtmlEasyPrinting::SetFonts(wxString normal_face, wxString fixed_face,
+ const int *sizes)
+{
+ m_FontFaceNormal = normal_face;
+ m_FontFaceFixed = fixed_face;
+
+ if (sizes)
+ {
+ m_FontsSizes = m_FontsSizesArr;
+ for (int i = 0; i < 7; i++) m_FontsSizes[i] = sizes[i];
+ }
+ else
+ m_FontsSizes = NULL;
+}
+
wxHtmlPrintout *wxHtmlEasyPrinting::CreatePrintout()
{
wxHtmlPrintout *p = new wxHtmlPrintout(m_Name);
+ p->SetFonts(m_FontFaceNormal, m_FontFaceFixed, m_FontsSizes);
+
p->SetHeader(m_Headers[0], wxPAGE_EVEN);
p->SetHeader(m_Headers[1], wxPAGE_ODD);
p->SetFooter(m_Footers[0], wxPAGE_EVEN);