1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/html/htmprint.cpp
3 // Purpose: html printing classes
4 // Author: Vaclav Slavik
7 // Copyright: (c) Vaclav Slavik, 1999
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx/wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_HTML && wxUSE_PRINTING_ARCHITECTURE && wxUSE_STREAMS
24 #include "wx/settings.h"
28 #include "wx/printdlg.h"
29 #include "wx/html/htmprint.h"
30 #include "wx/wxhtml.h"
31 #include "wx/wfstream.h"
32 #include "wx/module.h"
35 //--------------------------------------------------------------------------------
37 //--------------------------------------------------------------------------------
40 wxHtmlDCRenderer::wxHtmlDCRenderer() : wxObject()
43 m_Width
= m_Height
= 0;
45 m_Parser
= new wxHtmlWinParser();
46 m_FS
= new wxFileSystem();
47 m_Parser
->SetFS(m_FS
);
52 wxHtmlDCRenderer::~wxHtmlDCRenderer()
54 if (m_Cells
) delete m_Cells
;
55 if (m_Parser
) delete m_Parser
;
56 if (m_FS
) delete m_FS
;
61 void wxHtmlDCRenderer::SetDC(wxDC
*dc
, double pixel_scale
)
64 m_Parser
->SetDC(m_DC
, pixel_scale
);
69 void wxHtmlDCRenderer::SetSize(int width
, int height
)
76 void wxHtmlDCRenderer::SetHtmlText(const wxString
& html
, const wxString
& basepath
, bool isdir
)
78 if (m_DC
== NULL
) return;
80 if (m_Cells
!= NULL
) delete m_Cells
;
82 m_FS
->ChangePathTo(basepath
, isdir
);
83 m_Cells
= (wxHtmlContainerCell
*) m_Parser
->Parse(html
);
84 m_Cells
->SetIndent(0, wxHTML_INDENT_ALL
, wxHTML_UNITS_PIXELS
);
85 m_Cells
->Layout(m_Width
);
89 void wxHtmlDCRenderer::SetFonts(const wxString
& normal_face
, const wxString
& fixed_face
,
92 m_Parser
->SetFonts(normal_face
, fixed_face
, sizes
);
93 if (m_DC
== NULL
&& m_Cells
!= NULL
)
94 m_Cells
->Layout(m_Width
);
97 void wxHtmlDCRenderer::SetStandardFonts(int size
,
98 const wxString
& normal_face
,
99 const wxString
& fixed_face
)
101 m_Parser
->SetStandardFonts(size
, normal_face
, fixed_face
);
102 if (m_DC
== NULL
&& m_Cells
!= NULL
)
103 m_Cells
->Layout(m_Width
);
106 int wxHtmlDCRenderer::Render(int x
, int y
,
107 wxArrayInt
& known_pagebreaks
,
108 int from
, int dont_render
, int to
)
112 if (m_Cells
== NULL
|| m_DC
== NULL
) return 0;
114 pbreak
= (int)(from
+ m_Height
);
115 while (m_Cells
->AdjustPagebreak(&pbreak
, known_pagebreaks
)) {}
116 hght
= pbreak
- from
;
122 wxHtmlRenderingInfo rinfo
;
123 wxDefaultHtmlRenderingStyle rstyle
;
124 rinfo
.SetStyle(&rstyle
);
125 m_DC
->SetBrush(*wxWHITE_BRUSH
);
126 m_DC
->SetClippingRegion(x
, y
, m_Width
, hght
);
129 y
, pbreak
+ (y
/*- from*/),
131 m_DC
->DestroyClippingRegion();
134 if (pbreak
< m_Cells
->GetHeight()) return pbreak
;
135 else return GetTotalHeight();
139 int wxHtmlDCRenderer::GetTotalHeight()
141 if (m_Cells
) return m_Cells
->GetHeight();
146 //--------------------------------------------------------------------------------
148 //--------------------------------------------------------------------------------
151 wxList
wxHtmlPrintout::m_Filters
;
153 wxHtmlPrintout::wxHtmlPrintout(const wxString
& title
) : wxPrintout(title
)
155 m_Renderer
= new wxHtmlDCRenderer
;
156 m_RendererHdr
= new wxHtmlDCRenderer
;
157 m_NumPages
= wxHTML_PRINT_MAX_PAGES
;
158 m_Document
= m_BasePath
= wxEmptyString
; m_BasePathIsDir
= true;
159 m_Headers
[0] = m_Headers
[1] = wxEmptyString
;
160 m_Footers
[0] = m_Footers
[1] = wxEmptyString
;
161 m_HeaderHeight
= m_FooterHeight
= 0;
162 SetMargins(); // to default values
167 wxHtmlPrintout::~wxHtmlPrintout()
170 delete m_RendererHdr
;
173 void wxHtmlPrintout::CleanUpStatics()
175 WX_CLEAR_LIST(wxList
, m_Filters
);
179 void wxHtmlPrintout::AddFilter(wxHtmlFilter
*filter
)
181 m_Filters
.Append(filter
);
184 void wxHtmlPrintout::OnPreparePrinting()
186 int pageWidth
, pageHeight
, mm_w
, mm_h
, scr_w
, scr_h
, dc_w
, dc_h
;
187 float ppmm_h
, ppmm_v
;
189 GetPageSizePixels(&pageWidth
, &pageHeight
);
190 GetPageSizeMM(&mm_w
, &mm_h
);
191 ppmm_h
= (float)pageWidth
/ mm_w
;
192 ppmm_v
= (float)pageHeight
/ mm_h
;
194 int ppiPrinterX
, ppiPrinterY
;
195 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
196 int ppiScreenX
, ppiScreenY
;
197 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
199 wxDisplaySize(&scr_w
, &scr_h
);
200 GetDC()->GetSize(&dc_w
, &dc_h
);
202 GetDC()->SetUserScale((double)dc_w
/ (double)pageWidth
, (double)dc_w
/ (double)pageWidth
);
204 /* prepare headers/footers renderer: */
206 m_RendererHdr
->SetDC(GetDC(), (double)ppiPrinterY
/ (double)ppiScreenY
);
207 m_RendererHdr
->SetSize((int) (ppmm_h
* (mm_w
- m_MarginLeft
- m_MarginRight
)),
208 (int) (ppmm_v
* (mm_h
- m_MarginTop
- m_MarginBottom
)));
209 if (m_Headers
[0] != wxEmptyString
)
211 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Headers
[0], 1));
212 m_HeaderHeight
= m_RendererHdr
->GetTotalHeight();
214 else if (m_Headers
[1] != wxEmptyString
)
216 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Headers
[1], 1));
217 m_HeaderHeight
= m_RendererHdr
->GetTotalHeight();
219 if (m_Footers
[0] != wxEmptyString
)
221 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Footers
[0], 1));
222 m_FooterHeight
= m_RendererHdr
->GetTotalHeight();
224 else if (m_Footers
[1] != wxEmptyString
)
226 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Footers
[1], 1));
227 m_FooterHeight
= m_RendererHdr
->GetTotalHeight();
230 /* prepare main renderer: */
231 m_Renderer
->SetDC(GetDC(), (double)ppiPrinterY
/ (double)ppiScreenY
);
232 m_Renderer
->SetSize((int) (ppmm_h
* (mm_w
- m_MarginLeft
- m_MarginRight
)),
233 (int) (ppmm_v
* (mm_h
- m_MarginTop
- m_MarginBottom
) -
234 m_FooterHeight
- m_HeaderHeight
-
235 ((m_HeaderHeight
== 0) ? 0 : m_MarginSpace
* ppmm_v
) -
236 ((m_FooterHeight
== 0) ? 0 : m_MarginSpace
* ppmm_v
)
238 m_Renderer
->SetHtmlText(m_Document
, m_BasePath
, m_BasePathIsDir
);
242 bool wxHtmlPrintout::OnBeginDocument(int startPage
, int endPage
)
244 if (!wxPrintout::OnBeginDocument(startPage
, endPage
)) return false;
250 bool wxHtmlPrintout::OnPrintPage(int page
)
256 RenderPage(dc
, page
);
263 void wxHtmlPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
)
266 if ( m_NumPages
>= (signed)m_PageBreaks
.Count()-1)
267 *maxPage
= m_NumPages
;
269 *maxPage
= (signed)m_PageBreaks
.Count()-1;
271 *selPageTo
= (signed)m_PageBreaks
.Count()-1;
276 bool wxHtmlPrintout::HasPage(int pageNum
)
278 return (pageNum
>= 1 && pageNum
-1 <= (signed)m_PageBreaks
.Count());
283 void wxHtmlPrintout::SetHtmlText(const wxString
& html
, const wxString
&basepath
, bool isdir
)
286 m_BasePath
= basepath
;
287 m_BasePathIsDir
= isdir
;
290 void wxHtmlPrintout::SetHtmlFile(const wxString
& htmlfile
)
295 if (wxFileExists(htmlfile
))
296 ff
= fs
.OpenFile(wxFileSystem::FileNameToURL(htmlfile
));
298 ff
= fs
.OpenFile(htmlfile
);
302 wxLogError(htmlfile
+ _(": file does not exist!"));
307 wxHtmlFilterHTML defaultFilter
;
310 wxList::compatibility_iterator node
= m_Filters
.GetFirst();
313 wxHtmlFilter
*h
= (wxHtmlFilter
*) node
->GetData();
316 doc
= h
->ReadFile(*ff
);
320 node
= node
->GetNext();
324 doc
= defaultFilter
.ReadFile(*ff
);
326 SetHtmlText(doc
, htmlfile
, false);
332 void wxHtmlPrintout::SetHeader(const wxString
& header
, int pg
)
334 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
335 m_Headers
[0] = header
;
336 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
337 m_Headers
[1] = header
;
342 void wxHtmlPrintout::SetFooter(const wxString
& footer
, int pg
)
344 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
345 m_Footers
[0] = footer
;
346 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
347 m_Footers
[1] = footer
;
352 void wxHtmlPrintout::CountPages()
355 int pageWidth
, pageHeight
, mm_w
, mm_h
;
356 float ppmm_h
, ppmm_v
;
358 GetPageSizePixels(&pageWidth
, &pageHeight
);
359 GetPageSizeMM(&mm_w
, &mm_h
);
360 ppmm_h
= (float)pageWidth
/ mm_w
;
361 ppmm_v
= (float)pageHeight
/ mm_h
;
365 // m_PageBreaks[0] = 0;
367 m_PageBreaks
.Clear();
368 m_PageBreaks
.Add( 0);
371 pos
= m_Renderer
->Render((int)( ppmm_h
* m_MarginLeft
),
372 (int) (ppmm_v
* (m_MarginTop
+ (m_HeaderHeight
== 0 ? 0 : m_MarginSpace
)) + m_HeaderHeight
),
375 m_PageBreaks
.Add( pos
);
376 if( m_PageBreaks
.Count() > wxHTML_PRINT_MAX_PAGES
)
378 wxMessageBox( _("HTML pagination algorithm generated more than the allowed maximum number of pages and it can continue any longer!"),
379 _("Warning"), wxCANCEL
| wxICON_ERROR
);
382 } while (pos
< m_Renderer
->GetTotalHeight());
387 void wxHtmlPrintout::RenderPage(wxDC
*dc
, int page
)
391 int pageWidth
, pageHeight
, mm_w
, mm_h
, scr_w
, scr_h
, dc_w
, dc_h
;
392 float ppmm_h
, ppmm_v
;
394 GetPageSizePixels(&pageWidth
, &pageHeight
);
395 GetPageSizeMM(&mm_w
, &mm_h
);
396 ppmm_h
= (float)pageWidth
/ mm_w
;
397 ppmm_v
= (float)pageHeight
/ mm_h
;
398 wxDisplaySize(&scr_w
, &scr_h
);
399 dc
->GetSize(&dc_w
, &dc_h
);
401 int ppiPrinterX
, ppiPrinterY
;
402 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
403 wxUnusedVar(ppiPrinterX
);
404 int ppiScreenX
, ppiScreenY
;
405 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
406 wxUnusedVar(ppiScreenX
);
408 dc
->SetUserScale((double)dc_w
/ (double)pageWidth
, (double)dc_w
/ (double)pageWidth
);
410 m_Renderer
->SetDC(dc
, (double)ppiPrinterY
/ (double)ppiScreenY
);
412 dc
->SetBackgroundMode(wxTRANSPARENT
);
414 m_Renderer
->Render((int) (ppmm_h
* m_MarginLeft
),
415 (int) (ppmm_v
* (m_MarginTop
+ (m_HeaderHeight
== 0 ? 0 : m_MarginSpace
)) + m_HeaderHeight
), m_PageBreaks
,
416 m_PageBreaks
[page
-1], false, m_PageBreaks
[page
]-m_PageBreaks
[page
-1]);
419 m_RendererHdr
->SetDC(dc
, (double)ppiPrinterY
/ (double)ppiScreenY
);
420 if (m_Headers
[page
% 2] != wxEmptyString
)
422 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Headers
[page
% 2], page
));
423 m_RendererHdr
->Render((int) (ppmm_h
* m_MarginLeft
), (int) (ppmm_v
* m_MarginTop
), m_PageBreaks
);
425 if (m_Footers
[page
% 2] != wxEmptyString
)
427 m_RendererHdr
->SetHtmlText(TranslateHeader(m_Footers
[page
% 2], page
));
428 m_RendererHdr
->Render((int) (ppmm_h
* m_MarginLeft
), (int) (pageHeight
- ppmm_v
* m_MarginBottom
- m_FooterHeight
), m_PageBreaks
);
434 wxString
wxHtmlPrintout::TranslateHeader(const wxString
& instr
, int page
)
439 num
.Printf(wxT("%i"), page
);
440 r
.Replace(wxT("@PAGENUM@"), num
);
442 num
.Printf(wxT("%i"), m_PageBreaks
.Count()-1);
443 r
.Replace(wxT("@PAGESCNT@"), num
);
450 void wxHtmlPrintout::SetMargins(float top
, float bottom
, float left
, float right
, float spaces
)
453 m_MarginBottom
= bottom
;
455 m_MarginRight
= right
;
456 m_MarginSpace
= spaces
;
462 void wxHtmlPrintout::SetFonts(const wxString
& normal_face
, const wxString
& fixed_face
,
465 m_Renderer
->SetFonts(normal_face
, fixed_face
, sizes
);
466 m_RendererHdr
->SetFonts(normal_face
, fixed_face
, sizes
);
469 void wxHtmlPrintout::SetStandardFonts(int size
,
470 const wxString
& normal_face
,
471 const wxString
& fixed_face
)
473 m_Renderer
->SetStandardFonts(size
, normal_face
, fixed_face
);
474 m_RendererHdr
->SetStandardFonts(size
, normal_face
, fixed_face
);
479 //----------------------------------------------------------------------------
480 // wxHtmlEasyPrinting
481 //----------------------------------------------------------------------------
484 wxHtmlEasyPrinting::wxHtmlEasyPrinting(const wxString
& name
, wxWindow
*parentWindow
)
486 m_ParentWindow
= parentWindow
;
489 m_PageSetupData
= new wxPageSetupDialogData
;
490 m_Headers
[0] = m_Headers
[1] = m_Footers
[0] = m_Footers
[1] = wxEmptyString
;
492 m_PageSetupData
->EnableMargins(true);
493 m_PageSetupData
->SetMarginTopLeft(wxPoint(25, 25));
494 m_PageSetupData
->SetMarginBottomRight(wxPoint(25, 25));
496 SetFonts(wxEmptyString
, wxEmptyString
, NULL
);
501 wxHtmlEasyPrinting::~wxHtmlEasyPrinting()
504 delete m_PageSetupData
;
508 wxPrintData
*wxHtmlEasyPrinting::GetPrintData()
510 if (m_PrintData
== NULL
)
511 m_PrintData
= new wxPrintData();
516 bool wxHtmlEasyPrinting::PreviewFile(const wxString
&htmlfile
)
518 wxHtmlPrintout
*p1
= CreatePrintout();
519 p1
->SetHtmlFile(htmlfile
);
520 wxHtmlPrintout
*p2
= CreatePrintout();
521 p2
->SetHtmlFile(htmlfile
);
522 return DoPreview(p1
, p2
);
527 bool wxHtmlEasyPrinting::PreviewText(const wxString
&htmltext
, const wxString
&basepath
)
529 wxHtmlPrintout
*p1
= CreatePrintout();
530 p1
->SetHtmlText(htmltext
, basepath
, true);
531 wxHtmlPrintout
*p2
= CreatePrintout();
532 p2
->SetHtmlText(htmltext
, basepath
, true);
533 return DoPreview(p1
, p2
);
538 bool wxHtmlEasyPrinting::PrintFile(const wxString
&htmlfile
)
540 wxHtmlPrintout
*p
= CreatePrintout();
541 p
->SetHtmlFile(htmlfile
);
542 bool ret
= DoPrint(p
);
549 bool wxHtmlEasyPrinting::PrintText(const wxString
&htmltext
, const wxString
&basepath
)
551 wxHtmlPrintout
*p
= CreatePrintout();
552 p
->SetHtmlText(htmltext
, basepath
, true);
553 bool ret
= DoPrint(p
);
560 bool wxHtmlEasyPrinting::DoPreview(wxHtmlPrintout
*printout1
, wxHtmlPrintout
*printout2
)
562 // Pass two printout objects: for preview, and possible printing.
563 wxPrintDialogData
printDialogData(*GetPrintData());
564 wxPrintPreview
*preview
= new wxPrintPreview(printout1
, printout2
, &printDialogData
);
571 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, m_ParentWindow
,
572 m_Name
+ _(" Preview"),
573 wxPoint(100, 100), wxSize(650, 500));
574 frame
->Centre(wxBOTH
);
582 bool wxHtmlEasyPrinting::DoPrint(wxHtmlPrintout
*printout
)
584 wxPrintDialogData
printDialogData(*GetPrintData());
585 wxPrinter
printer(&printDialogData
);
587 if (!printer
.Print(m_ParentWindow
, printout
, true))
592 (*GetPrintData()) = printer
.GetPrintDialogData().GetPrintData();
599 void wxHtmlEasyPrinting::PageSetup()
601 if (!GetPrintData()->Ok())
603 wxLogError(_("There was a problem during page setup: you may need to set a default printer."));
607 m_PageSetupData
->SetPrintData(*GetPrintData());
608 wxPageSetupDialog
pageSetupDialog(m_ParentWindow
, m_PageSetupData
);
610 if (pageSetupDialog
.ShowModal() == wxID_OK
)
612 (*GetPrintData()) = pageSetupDialog
.GetPageSetupData().GetPrintData();
613 (*m_PageSetupData
) = pageSetupDialog
.GetPageSetupData();
619 void wxHtmlEasyPrinting::SetHeader(const wxString
& header
, int pg
)
621 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
622 m_Headers
[0] = header
;
623 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
624 m_Headers
[1] = header
;
629 void wxHtmlEasyPrinting::SetFooter(const wxString
& footer
, int pg
)
631 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
632 m_Footers
[0] = footer
;
633 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
634 m_Footers
[1] = footer
;
638 void wxHtmlEasyPrinting::SetFonts(const wxString
& normal_face
, const wxString
& fixed_face
,
641 m_fontMode
= FontMode_Explicit
;
642 m_FontFaceNormal
= normal_face
;
643 m_FontFaceFixed
= fixed_face
;
647 m_FontsSizes
= m_FontsSizesArr
;
648 for (int i
= 0; i
< 7; i
++) m_FontsSizes
[i
] = sizes
[i
];
654 void wxHtmlEasyPrinting::SetStandardFonts(int size
,
655 const wxString
& normal_face
,
656 const wxString
& fixed_face
)
658 m_fontMode
= FontMode_Standard
;
659 m_FontFaceNormal
= normal_face
;
660 m_FontFaceFixed
= fixed_face
;
661 m_FontsSizesArr
[0] = size
;
665 wxHtmlPrintout
*wxHtmlEasyPrinting::CreatePrintout()
667 wxHtmlPrintout
*p
= new wxHtmlPrintout(m_Name
);
669 if (m_fontMode
== FontMode_Explicit
)
671 p
->SetFonts(m_FontFaceNormal
, m_FontFaceFixed
, m_FontsSizes
);
673 else // FontMode_Standard
675 p
->SetStandardFonts(m_FontsSizesArr
[0],
676 m_FontFaceNormal
, m_FontFaceFixed
);
679 p
->SetHeader(m_Headers
[0], wxPAGE_EVEN
);
680 p
->SetHeader(m_Headers
[1], wxPAGE_ODD
);
681 p
->SetFooter(m_Footers
[0], wxPAGE_EVEN
);
682 p
->SetFooter(m_Footers
[1], wxPAGE_ODD
);
684 p
->SetMargins(m_PageSetupData
->GetMarginTopLeft().y
,
685 m_PageSetupData
->GetMarginBottomRight().y
,
686 m_PageSetupData
->GetMarginTopLeft().x
,
687 m_PageSetupData
->GetMarginBottomRight().x
);
692 // A module to allow initialization/cleanup
693 // without calling these functions from app.cpp or from
694 // the user's application.
696 class wxHtmlPrintingModule
: public wxModule
698 DECLARE_DYNAMIC_CLASS(wxHtmlPrintingModule
)
700 wxHtmlPrintingModule() : wxModule() {}
701 bool OnInit() { return true; }
702 void OnExit() { wxHtmlPrintout::CleanUpStatics(); }
705 IMPLEMENT_DYNAMIC_CLASS(wxHtmlPrintingModule
, wxModule
)
708 // This hack forces the linker to always link in m_* files
709 // (wxHTML doesn't work without handlers from these files)
710 #include "wx/html/forcelnk.h"
711 FORCE_WXHTML_MODULES()
713 #endif // wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE