]>
git.saurik.com Git - wxWidgets.git/blob - src/html/htmprint.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: html printing classes
4 // Author: Vaclav Slavik
7 // Copyright: (c) Vaclav Slavik, 1999
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
29 #if wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE
32 #include "wx/printdlg.h"
33 #include "wx/html/htmprint.h"
34 #include "wx/wxhtml.h"
35 #include "wx/wfstream.h"
38 //--------------------------------------------------------------------------------
40 //--------------------------------------------------------------------------------
43 wxHtmlDCRenderer::wxHtmlDCRenderer() : wxObject()
46 m_Width
= m_Height
= 0;
48 m_Parser
= new wxHtmlWinParser(NULL
);
49 m_FS
= new wxFileSystem();
50 m_Parser
-> SetFS(m_FS
);
55 wxHtmlDCRenderer::~wxHtmlDCRenderer()
57 if (m_Cells
) delete m_Cells
;
58 if (m_Parser
) delete m_Parser
;
59 if (m_FS
) delete m_FS
;
64 void wxHtmlDCRenderer::SetDC(wxDC
*dc
, double pixel_scale
)
67 m_Parser
-> SetDC(m_DC
, pixel_scale
);
72 void wxHtmlDCRenderer::SetSize(int width
, int height
)
80 void wxHtmlDCRenderer::SetHtmlText(const wxString
& html
, const wxString
& basepath
, bool isdir
)
82 if (m_DC
== NULL
) return;
84 if (m_Cells
!= NULL
) delete m_Cells
;
86 m_FS
-> ChangePathTo(basepath
, isdir
);
87 m_Cells
= (wxHtmlContainerCell
*) m_Parser
-> Parse(html
);
88 m_Cells
-> SetIndent(0, wxHTML_INDENT_ALL
, wxHTML_UNITS_PIXELS
);
89 m_Cells
-> Layout(m_Width
);
94 int wxHtmlDCRenderer::Render(int x
, int y
, int from
, int dont_render
)
98 if (m_Cells
== NULL
|| m_DC
== NULL
) return 0;
100 pbreak
= (int)(from
+ m_Height
);
101 while (m_Cells
-> AdjustPagebreak(&pbreak
)) {}
102 hght
= pbreak
- from
;
105 m_DC
-> SetBrush(*wxWHITE_BRUSH
);
107 m_DC
-> SetClippingRegion(x
, y
, m_Width
, hght
);
108 m_Cells
-> Draw(*m_DC
,
110 y
, pbreak
+ (y
/*- from*/));
111 m_DC
-> DestroyClippingRegion();
114 if (pbreak
< m_Cells
-> GetHeight()) return pbreak
;
115 else return GetTotalHeight();
120 int wxHtmlDCRenderer::GetTotalHeight()
122 if (m_Cells
) return m_Cells
-> GetHeight();
141 //--------------------------------------------------------------------------------
143 //--------------------------------------------------------------------------------
147 wxHtmlPrintout::wxHtmlPrintout(const wxString
& title
) : wxPrintout(title
)
149 m_Renderer
= new wxHtmlDCRenderer
;
150 m_RendererHdr
= new wxHtmlDCRenderer
;
151 m_NumPages
= wxHTML_PRINT_MAX_PAGES
;
152 m_Document
= m_BasePath
= wxEmptyString
; m_BasePathIsDir
= TRUE
;
153 m_Headers
[0] = m_Headers
[1] = wxEmptyString
;
154 m_Footers
[0] = m_Footers
[1] = wxEmptyString
;
155 m_HeaderHeight
= m_FooterHeight
= 0;
156 SetMargins(); // to default values
161 wxHtmlPrintout::~wxHtmlPrintout()
164 delete m_RendererHdr
;
169 bool wxHtmlPrintout::OnBeginDocument(int startPage
, int endPage
)
171 int pageWidth
, pageHeight
, mm_w
, mm_h
, scr_w
, scr_h
, dc_w
, dc_h
;
172 float ppmm_h
, ppmm_v
;
174 if (!wxPrintout::OnBeginDocument(startPage
, endPage
)) return FALSE
;
176 GetPageSizePixels(&pageWidth
, &pageHeight
);
177 GetPageSizeMM(&mm_w
, &mm_h
);
178 ppmm_h
= (float)pageWidth
/ mm_w
;
179 ppmm_v
= (float)pageHeight
/ mm_h
;
181 int ppiPrinterX
, ppiPrinterY
;
182 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
183 int ppiScreenX
, ppiScreenY
;
184 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
186 wxDisplaySize(&scr_w
, &scr_h
);
187 GetDC() -> GetSize(&dc_w
, &dc_h
);
189 GetDC() -> SetUserScale((double)dc_w
/ (double)pageWidth
, (double)dc_w
/ (double)pageWidth
);
191 /* prepare headers/footers renderer: */
193 m_RendererHdr
-> SetDC(GetDC(), (double)ppiPrinterY
/ (double)ppiScreenY
);
194 m_RendererHdr
-> SetSize(ppmm_h
* (mm_w
- m_MarginLeft
- m_MarginTop
),
195 ppmm_v
* (mm_h
- m_MarginTop
- m_MarginBottom
));
196 if (m_Headers
[0] != wxEmptyString
) {
197 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Headers
[0], 1));
198 m_HeaderHeight
= m_RendererHdr
-> GetTotalHeight();
200 else if (m_Headers
[1] != wxEmptyString
) {
201 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Headers
[1], 1));
202 m_HeaderHeight
= m_RendererHdr
-> GetTotalHeight();
204 if (m_Footers
[0] != wxEmptyString
) {
205 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Footers
[0], 1));
206 m_FooterHeight
= m_RendererHdr
-> GetTotalHeight();
208 else if (m_Footers
[1] != wxEmptyString
) {
209 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Footers
[1], 1));
210 m_FooterHeight
= m_RendererHdr
-> GetTotalHeight();
213 /* prepare main renderer: */
214 m_Renderer
-> SetDC(GetDC(), (double)ppiPrinterY
/ (double)ppiScreenY
);
215 m_Renderer
-> SetSize(ppmm_h
* (mm_w
- m_MarginLeft
- m_MarginTop
),
216 ppmm_v
* (mm_h
- m_MarginTop
- m_MarginBottom
) -
217 m_FooterHeight
- m_HeaderHeight
-
218 ((m_HeaderHeight
== 0) ? 0 : m_MarginSpace
* ppmm_v
) -
219 ((m_FooterHeight
== 0) ? 0 : m_MarginSpace
* ppmm_v
)
221 m_Renderer
-> SetHtmlText(m_Document
, m_BasePath
, m_BasePathIsDir
);
227 bool wxHtmlPrintout::OnPrintPage(int page
)
232 RenderPage(dc
, page
);
239 void wxHtmlPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
)
242 *maxPage
= wxHTML_PRINT_MAX_PAGES
;
244 *selPageTo
= wxHTML_PRINT_MAX_PAGES
;
249 bool wxHtmlPrintout::HasPage(int pageNum
)
251 return (pageNum
>= 1 && pageNum
<= m_NumPages
);
256 void wxHtmlPrintout::SetHtmlText(const wxString
& html
, const wxString
&basepath
, bool isdir
)
259 m_BasePath
= basepath
;
260 m_BasePathIsDir
= isdir
;
265 void wxHtmlPrintout::SetHtmlFile(const wxString
& htmlfile
)
268 wxFSFile
*ff
= fs
.OpenFile(htmlfile
);
269 wxInputStream
*st
= ff
-> GetStream();
270 char *t
= new char[st
-> GetSize() + 1];
271 st
-> Read(t
, st
-> GetSize());
272 t
[st
-> GetSize()] = 0;
274 wxString doc
= wxString(t
);
278 SetHtmlText(doc
, htmlfile
, FALSE
);
283 void wxHtmlPrintout::SetHeader(const wxString
& header
, int pg
)
285 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
286 m_Headers
[0] = header
;
287 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
288 m_Headers
[1] = header
;
293 void wxHtmlPrintout::SetFooter(const wxString
& footer
, int pg
)
295 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
296 m_Footers
[0] = footer
;
297 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
298 m_Footers
[1] = footer
;
303 void wxHtmlPrintout::CountPages()
306 int pageWidth
, pageHeight
, mm_w
, mm_h
;
307 float ppmm_h
, ppmm_v
;
309 GetPageSizePixels(&pageWidth
, &pageHeight
);
310 GetPageSizeMM(&mm_w
, &mm_h
);
311 ppmm_h
= (float)pageWidth
/ mm_w
;
312 ppmm_v
= (float)pageHeight
/ mm_h
;
320 pos
= m_Renderer
-> Render(ppmm_h
* m_MarginLeft
,
321 ppmm_v
* (m_MarginTop
+ (m_HeaderHeight
== 0 ? 0 : m_MarginSpace
)) + m_HeaderHeight
,
323 m_PageBreaks
[++m_NumPages
] = pos
;
324 } while (pos
< m_Renderer
-> GetTotalHeight());
329 void wxHtmlPrintout::RenderPage(wxDC
*dc
, int page
)
333 int pageWidth
, pageHeight
, mm_w
, mm_h
, scr_w
, scr_h
, dc_w
, dc_h
;
334 float ppmm_h
, ppmm_v
;
336 GetPageSizePixels(&pageWidth
, &pageHeight
);
337 GetPageSizeMM(&mm_w
, &mm_h
);
338 ppmm_h
= (float)pageWidth
/ mm_w
;
339 ppmm_v
= (float)pageHeight
/ mm_h
;
340 wxDisplaySize(&scr_w
, &scr_h
);
341 dc
-> GetSize(&dc_w
, &dc_h
);
343 int ppiPrinterX
, ppiPrinterY
;
344 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
345 int ppiScreenX
, ppiScreenY
;
346 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
348 dc
-> SetUserScale((double)dc_w
/ (double)pageWidth
, (double)dc_w
/ (double)pageWidth
);
350 m_Renderer
-> SetDC(dc
, (double)ppiPrinterY
/ (double)ppiScreenY
);
352 dc
-> SetBackgroundMode(wxTRANSPARENT
);
354 m_Renderer
-> Render(ppmm_h
* m_MarginLeft
,
355 ppmm_v
* (m_MarginTop
+ (m_HeaderHeight
== 0 ? 0 : m_MarginSpace
)) + m_HeaderHeight
,
356 m_PageBreaks
[page
-1]);
358 m_RendererHdr
-> SetDC(dc
, (double)ppiPrinterY
/ (double)ppiScreenY
);
359 if (m_Headers
[page
% 2] != wxEmptyString
) {
360 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Headers
[page
% 2], page
));
361 m_RendererHdr
-> Render(ppmm_h
* m_MarginLeft
, ppmm_v
* m_MarginTop
);
363 if (m_Footers
[page
% 2] != wxEmptyString
) {
364 m_RendererHdr
-> SetHtmlText(TranslateHeader(m_Footers
[page
% 2], page
));
365 m_RendererHdr
-> Render(ppmm_h
* m_MarginLeft
, pageHeight
- ppmm_v
* m_MarginBottom
- m_FooterHeight
);
371 wxString
wxHtmlPrintout::TranslateHeader(const wxString
& instr
, int page
)
376 num
.Printf(wxT("%i"), page
);
377 r
.Replace(wxT("@PAGENUM@"), num
);
379 num
.Printf(wxT("%i"), m_NumPages
);
380 r
.Replace(wxT("@PAGESCNT@"), num
);
387 void wxHtmlPrintout::SetMargins(float top
, float bottom
, float left
, float right
, float spaces
)
390 m_MarginBottom
= bottom
;
392 m_MarginRight
= right
;
393 m_MarginSpace
= spaces
;
401 //--------------------------------------------------------------------------------
402 // wxHtmlEasyPrinting
403 //--------------------------------------------------------------------------------
406 wxHtmlEasyPrinting::wxHtmlEasyPrinting(const wxString
& name
, wxFrame
*parent_frame
)
408 m_Frame
= parent_frame
;
410 m_PrintData
= new wxPrintData
;
411 #if (defined __WXGTK__) || (defined __WXMOTIF__)
412 (*m_PrintData
) = (*wxThePrintSetupData
);
414 m_PageSetupData
= new wxPageSetupDialogData
;
415 m_Headers
[0] = m_Headers
[1] = m_Footers
[0] = m_Footers
[1] = wxEmptyString
;
417 m_PageSetupData
-> EnableMargins(TRUE
);
418 m_PageSetupData
-> SetMarginTopLeft(wxPoint(25, 25));
419 m_PageSetupData
-> SetMarginBottomRight(wxPoint(25, 25));
424 wxHtmlEasyPrinting::~wxHtmlEasyPrinting()
427 delete m_PageSetupData
;
432 void wxHtmlEasyPrinting::PreviewFile(const wxString
&htmlfile
)
434 wxHtmlPrintout
*p1
= CreatePrintout();
435 p1
-> SetHtmlFile(htmlfile
);
436 wxHtmlPrintout
*p2
= CreatePrintout();
437 p2
-> SetHtmlFile(htmlfile
);
443 void wxHtmlEasyPrinting::PreviewText(const wxString
&htmltext
, const wxString
&basepath
)
445 wxHtmlPrintout
*p1
= CreatePrintout();
446 p1
-> SetHtmlText(htmltext
, basepath
, TRUE
);
447 wxHtmlPrintout
*p2
= CreatePrintout();
448 p2
-> SetHtmlText(htmltext
, basepath
, TRUE
);
454 void wxHtmlEasyPrinting::PrintFile(const wxString
&htmlfile
)
456 wxHtmlPrintout
*p
= CreatePrintout();
457 p
-> SetHtmlFile(htmlfile
);
463 void wxHtmlEasyPrinting::PrintText(const wxString
&htmltext
, const wxString
&basepath
)
465 wxHtmlPrintout
*p
= CreatePrintout();
466 p
-> SetHtmlText(htmltext
, basepath
, TRUE
);
472 void wxHtmlEasyPrinting::DoPreview(wxHtmlPrintout
*printout1
, wxHtmlPrintout
*printout2
)
474 // Pass two printout objects: for preview, and possible printing.
475 wxPrintDialogData
printDialogData(*m_PrintData
);
476 wxPrintPreview
*preview
= new wxPrintPreview(printout1
, printout2
, &printDialogData
);
477 if (!preview
-> Ok()) {
479 wxMessageBox(_("There was a problem previewing.\nPerhaps your current printer is not set correctly?"), _("Previewing"), wxOK
);
483 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, m_Frame
,
484 m_Name
+ _(" Preview"),
485 wxPoint(100, 100), wxSize(650, 500));
486 frame
-> Centre(wxBOTH
);
487 frame
-> Initialize();
494 void wxHtmlEasyPrinting::DoPrint(wxHtmlPrintout
*printout
)
496 wxPrintDialogData
printDialogData(*m_PrintData
);
497 wxPrinter
printer(&printDialogData
);
499 if (!printer
.Print(m_Frame
, printout
, TRUE
))
500 wxMessageBox(_("There was a problem printing.\nPerhaps your current printer is not set correctly?"), _("Printing"), wxOK
);
502 (*m_PrintData
) = printer
.GetPrintDialogData().GetPrintData();
507 void wxHtmlEasyPrinting::PrinterSetup()
509 wxPrintDialogData
printDialogData(*m_PrintData
);
510 wxPrintDialog
printerDialog(m_Frame
, &printDialogData
);
512 printerDialog
.GetPrintDialogData().SetSetupDialog(TRUE
);
514 if (printerDialog
.ShowModal() == wxID_OK
)
515 (*m_PrintData
) = printerDialog
.GetPrintDialogData().GetPrintData();
520 void wxHtmlEasyPrinting::PageSetup()
522 m_PageSetupData
-> SetPrintData(*m_PrintData
);
523 wxPageSetupDialog
pageSetupDialog(m_Frame
, m_PageSetupData
);
525 if (pageSetupDialog
.ShowModal() == wxID_OK
) {
526 (*m_PrintData
) = pageSetupDialog
.GetPageSetupData().GetPrintData();
527 (*m_PageSetupData
) = pageSetupDialog
.GetPageSetupData();
533 void wxHtmlEasyPrinting::SetHeader(const wxString
& header
, int pg
)
535 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
536 m_Headers
[0] = header
;
537 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
538 m_Headers
[1] = header
;
543 void wxHtmlEasyPrinting::SetFooter(const wxString
& footer
, int pg
)
545 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_EVEN
)
546 m_Footers
[0] = footer
;
547 if (pg
== wxPAGE_ALL
|| pg
== wxPAGE_ODD
)
548 m_Footers
[1] = footer
;
553 wxHtmlPrintout
*wxHtmlEasyPrinting::CreatePrintout()
555 wxHtmlPrintout
*p
= new wxHtmlPrintout(m_Name
);
557 p
-> SetHeader(m_Headers
[0], wxPAGE_EVEN
);
558 p
-> SetHeader(m_Headers
[1], wxPAGE_ODD
);
559 p
-> SetFooter(m_Footers
[0], wxPAGE_EVEN
);
560 p
-> SetFooter(m_Footers
[1], wxPAGE_ODD
);
562 p
-> SetMargins(m_PageSetupData
-> GetMarginTopLeft().y
,
563 m_PageSetupData
-> GetMarginBottomRight().y
,
564 m_PageSetupData
-> GetMarginTopLeft().x
,
565 m_PageSetupData
-> GetMarginBottomRight().x
);
572 #endif // wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE