]> git.saurik.com Git - wxWidgets.git/blame - src/html/htmprint.cpp
Applied patch [ 597398 ] Generic MDI, wxNotebook based.
[wxWidgets.git] / src / html / htmprint.cpp
CommitLineData
3ce369e6
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: htmprint.cpp
3// Purpose: html printing classes
4// Author: Vaclav Slavik
5// Created: 25/09/99
6// RCS-ID: $Id$
7// Copyright: (c) Vaclav Slavik, 1999
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11
12#ifdef __GNUG__
1aedb1dd 13#pragma implementation "htmprint.h"
3ce369e6
VS
14#endif
15
16// For compilers that support precompilation, includes "wx/wx.h".
17#include "wx/wxprec.h"
18
314260fb
VS
19#include "wx/defs.h"
20
3ce369e6
VS
21#ifdef __BORLANDC__
22#pragma hdrstop
23#endif
24
25#ifndef WX_PRECOMP
04dbb646
VZ
26 #include "wx/log.h"
27 #include "wx/intl.h"
5438a566 28 #include "wx/dc.h"
3ce369e6
VS
29#endif
30
f6bcfd97 31#if wxUSE_HTML && wxUSE_PRINTING_ARCHITECTURE && wxUSE_STREAMS
3ce369e6 32
f11bdd03 33#include "wx/dc.h"
3ce369e6
VS
34#include "wx/print.h"
35#include "wx/printdlg.h"
36#include "wx/html/htmprint.h"
37#include "wx/wxhtml.h"
38#include "wx/wfstream.h"
39
40
41//--------------------------------------------------------------------------------
42// wxHtmlDCRenderer
43//--------------------------------------------------------------------------------
44
45
46wxHtmlDCRenderer::wxHtmlDCRenderer() : wxObject()
47{
48 m_DC = NULL;
49 m_Width = m_Height = 0;
50 m_Cells = NULL;
51 m_Parser = new wxHtmlWinParser(NULL);
52 m_FS = new wxFileSystem();
4f9297b0 53 m_Parser->SetFS(m_FS);
3ce369e6
VS
54}
55
56
57
58wxHtmlDCRenderer::~wxHtmlDCRenderer()
59{
60 if (m_Cells) delete m_Cells;
61 if (m_Parser) delete m_Parser;
62 if (m_FS) delete m_FS;
63}
64
65
66
edbd0635 67void wxHtmlDCRenderer::SetDC(wxDC *dc, double pixel_scale)
3ce369e6 68{
3ce369e6 69 m_DC = dc;
4f9297b0 70 m_Parser->SetDC(m_DC, pixel_scale);
3ce369e6
VS
71}
72
73
74
75void wxHtmlDCRenderer::SetSize(int width, int height)
76{
edbd0635
VS
77 m_Width = width;
78 m_Height = height;
3ce369e6
VS
79}
80
81
82
83void wxHtmlDCRenderer::SetHtmlText(const wxString& html, const wxString& basepath, bool isdir)
84{
85 if (m_DC == NULL) return;
86
87 if (m_Cells != NULL) delete m_Cells;
04dbb646 88
4f9297b0
VS
89 m_FS->ChangePathTo(basepath, isdir);
90 m_Cells = (wxHtmlContainerCell*) m_Parser->Parse(html);
91 m_Cells->SetIndent(0, wxHTML_INDENT_ALL, wxHTML_UNITS_PIXELS);
92 m_Cells->Layout(m_Width);
3ce369e6
VS
93}
94
95
96
97int wxHtmlDCRenderer::Render(int x, int y, int from, int dont_render)
98{
ec939b68 99 int pbreak, hght;
04dbb646 100
3ce369e6 101 if (m_Cells == NULL || m_DC == NULL) return 0;
04dbb646 102
edbd0635 103 pbreak = (int)(from + m_Height);
4f9297b0 104 while (m_Cells->AdjustPagebreak(&pbreak)) {}
edbd0635 105 hght = pbreak - from;
04dbb646
VZ
106
107 if (!dont_render)
4f9297b0
VS
108 {
109 m_DC->SetBrush(*wxWHITE_BRUSH);
04dbb646 110
4f9297b0 111 m_DC->SetClippingRegion(x, y, m_Width, hght);
04dbb646 112 m_Cells->Draw(*m_DC,
edbd0635
VS
113 x, (y - from),
114 y, pbreak + (y /*- from*/));
4f9297b0 115 m_DC->DestroyClippingRegion();
3ce369e6 116 }
04dbb646 117
4f9297b0 118 if (pbreak < m_Cells->GetHeight()) return pbreak;
3ce369e6
VS
119 else return GetTotalHeight();
120}
121
122
123
124int wxHtmlDCRenderer::GetTotalHeight()
125{
4f9297b0 126 if (m_Cells) return m_Cells->GetHeight();
3ce369e6
VS
127 else return 0;
128}
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145//--------------------------------------------------------------------------------
146// wxHtmlPrintout
147//--------------------------------------------------------------------------------
148
149
150
151wxHtmlPrintout::wxHtmlPrintout(const wxString& title) : wxPrintout(title)
152{
153 m_Renderer = new wxHtmlDCRenderer;
154 m_RendererHdr = new wxHtmlDCRenderer;
efba2b89 155 m_NumPages = wxHTML_PRINT_MAX_PAGES;
3ce369e6
VS
156 m_Document = m_BasePath = wxEmptyString; m_BasePathIsDir = TRUE;
157 m_Headers[0] = m_Headers[1] = wxEmptyString;
158 m_Footers[0] = m_Footers[1] = wxEmptyString;
159 m_HeaderHeight = m_FooterHeight = 0;
160 SetMargins(); // to default values
161}
162
163
164
165wxHtmlPrintout::~wxHtmlPrintout()
166{
167 delete m_Renderer;
168 delete m_RendererHdr;
169}
170
171
172
2a0eb922 173bool wxHtmlPrintout::OnBeginDocument(int startPage, int endPage)
3ce369e6 174{
edbd0635 175 int pageWidth, pageHeight, mm_w, mm_h, scr_w, scr_h, dc_w, dc_h;
3ce369e6 176 float ppmm_h, ppmm_v;
04dbb646 177
2a0eb922 178 if (!wxPrintout::OnBeginDocument(startPage, endPage)) return FALSE;
3ce369e6
VS
179
180 GetPageSizePixels(&pageWidth, &pageHeight);
181 GetPageSizeMM(&mm_w, &mm_h);
182 ppmm_h = (float)pageWidth / mm_w;
183 ppmm_v = (float)pageHeight / mm_h;
184
edbd0635
VS
185 int ppiPrinterX, ppiPrinterY;
186 GetPPIPrinter(&ppiPrinterX, &ppiPrinterY);
187 int ppiScreenX, ppiScreenY;
188 GetPPIScreen(&ppiScreenX, &ppiScreenY);
189
190 wxDisplaySize(&scr_w, &scr_h);
4f9297b0 191 GetDC()->GetSize(&dc_w, &dc_h);
edbd0635 192
4f9297b0 193 GetDC()->SetUserScale((double)dc_w / (double)pageWidth, (double)dc_w / (double)pageWidth);
edbd0635 194
3ce369e6 195 /* prepare headers/footers renderer: */
04dbb646 196
4f9297b0 197 m_RendererHdr->SetDC(GetDC(), (double)ppiPrinterY / (double)ppiScreenY);
04dbb646 198 m_RendererHdr->SetSize((int) (ppmm_h * (mm_w - m_MarginLeft - m_MarginRight)),
68be9f09 199 (int) (ppmm_v * (mm_h - m_MarginTop - m_MarginBottom)));
04dbb646 200 if (m_Headers[0] != wxEmptyString)
4f9297b0
VS
201 {
202 m_RendererHdr->SetHtmlText(TranslateHeader(m_Headers[0], 1));
203 m_HeaderHeight = m_RendererHdr->GetTotalHeight();
3ce369e6 204 }
04dbb646 205 else if (m_Headers[1] != wxEmptyString)
4f9297b0
VS
206 {
207 m_RendererHdr->SetHtmlText(TranslateHeader(m_Headers[1], 1));
208 m_HeaderHeight = m_RendererHdr->GetTotalHeight();
3ce369e6 209 }
04dbb646 210 if (m_Footers[0] != wxEmptyString)
4f9297b0
VS
211 {
212 m_RendererHdr->SetHtmlText(TranslateHeader(m_Footers[0], 1));
213 m_FooterHeight = m_RendererHdr->GetTotalHeight();
3ce369e6 214 }
04dbb646 215 else if (m_Footers[1] != wxEmptyString)
4f9297b0
VS
216 {
217 m_RendererHdr->SetHtmlText(TranslateHeader(m_Footers[1], 1));
218 m_FooterHeight = m_RendererHdr->GetTotalHeight();
3ce369e6 219 }
04dbb646 220
3ce369e6 221 /* prepare main renderer: */
4f9297b0 222 m_Renderer->SetDC(GetDC(), (double)ppiPrinterY / (double)ppiScreenY);
6c5b628e 223 m_Renderer->SetSize((int) (ppmm_h * (mm_w - m_MarginLeft - m_MarginRight)),
04dbb646 224 (int) (ppmm_v * (mm_h - m_MarginTop - m_MarginBottom) -
3ce369e6
VS
225 m_FooterHeight - m_HeaderHeight -
226 ((m_HeaderHeight == 0) ? 0 : m_MarginSpace * ppmm_v) -
227 ((m_FooterHeight == 0) ? 0 : m_MarginSpace * ppmm_v)
68be9f09 228 ));
4f9297b0 229 m_Renderer->SetHtmlText(m_Document, m_BasePath, m_BasePathIsDir);
3ce369e6 230 CountPages();
2a0eb922 231 return TRUE;
3ce369e6
VS
232}
233
234
235bool wxHtmlPrintout::OnPrintPage(int page)
236{
237 wxDC *dc = GetDC();
04dbb646 238 if (dc)
4f9297b0 239 {
3ce369e6
VS
240 if (HasPage(page))
241 RenderPage(dc, page);
242 return TRUE;
04dbb646 243 }
4f9297b0 244 else return FALSE;
3ce369e6
VS
245}
246
247
248void wxHtmlPrintout::GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo)
249{
250 *minPage = 1;
efba2b89 251 *maxPage = wxHTML_PRINT_MAX_PAGES;
3ce369e6 252 *selPageFrom = 1;
efba2b89 253 *selPageTo = wxHTML_PRINT_MAX_PAGES;
3ce369e6
VS
254}
255
256
257
258bool wxHtmlPrintout::HasPage(int pageNum)
259{
260 return (pageNum >= 1 && pageNum <= m_NumPages);
261}
262
263
264
265void wxHtmlPrintout::SetHtmlText(const wxString& html, const wxString &basepath, bool isdir)
266{
267 m_Document = html;
268 m_BasePath = basepath;
269 m_BasePathIsDir = isdir;
270}
271
eb37e1d2
MB
272// defined in htmlfilt.cpp
273void wxPrivate_ReadString(wxString& str, wxInputStream* s);
3ce369e6
VS
274
275void wxHtmlPrintout::SetHtmlFile(const wxString& htmlfile)
276{
277 wxFileSystem fs;
278 wxFSFile *ff = fs.OpenFile(htmlfile);
04dbb646 279
f5ba273e 280 if (ff == NULL)
04dbb646 281 {
f5ba273e
VS
282 wxLogError(htmlfile + _(": file does not exist!"));
283 return;
284 }
04dbb646 285
4f9297b0 286 wxInputStream *st = ff->GetStream();
eb37e1d2
MB
287 wxString doc;
288 wxPrivate_ReadString(doc, st);
04dbb646 289
3ce369e6 290 delete ff;
04dbb646 291
3ce369e6
VS
292 SetHtmlText(doc, htmlfile, FALSE);
293}
294
295
296
297void wxHtmlPrintout::SetHeader(const wxString& header, int pg)
298{
04dbb646 299 if (pg == wxPAGE_ALL || pg == wxPAGE_EVEN)
3ce369e6 300 m_Headers[0] = header;
04dbb646 301 if (pg == wxPAGE_ALL || pg == wxPAGE_ODD)
3ce369e6
VS
302 m_Headers[1] = header;
303}
304
305
306
307void wxHtmlPrintout::SetFooter(const wxString& footer, int pg)
308{
04dbb646 309 if (pg == wxPAGE_ALL || pg == wxPAGE_EVEN)
3ce369e6 310 m_Footers[0] = footer;
04dbb646 311 if (pg == wxPAGE_ALL || pg == wxPAGE_ODD)
3ce369e6
VS
312 m_Footers[1] = footer;
313}
314
315
316
317void wxHtmlPrintout::CountPages()
318{
319 wxBusyCursor wait;
320 int pageWidth, pageHeight, mm_w, mm_h;
321 float ppmm_h, ppmm_v;
322
323 GetPageSizePixels(&pageWidth, &pageHeight);
324 GetPageSizeMM(&mm_w, &mm_h);
325 ppmm_h = (float)pageWidth / mm_w;
326 ppmm_v = (float)pageHeight / mm_h;
327
328 int pos = 0;
329
330 m_NumPages = 0;
04dbb646 331
3ce369e6 332 m_PageBreaks[0] = 0;
04dbb646 333 do
4f9297b0 334 {
04dbb646 335 pos = m_Renderer->Render((int)( ppmm_h * m_MarginLeft),
68be9f09 336 (int) (ppmm_v * (m_MarginTop + (m_HeaderHeight == 0 ? 0 : m_MarginSpace)) + m_HeaderHeight),
3ce369e6
VS
337 pos, TRUE);
338 m_PageBreaks[++m_NumPages] = pos;
4f9297b0 339 } while (pos < m_Renderer->GetTotalHeight());
3ce369e6
VS
340}
341
342
343
344void wxHtmlPrintout::RenderPage(wxDC *dc, int page)
345{
346 wxBusyCursor wait;
347
edbd0635 348 int pageWidth, pageHeight, mm_w, mm_h, scr_w, scr_h, dc_w, dc_h;
3ce369e6
VS
349 float ppmm_h, ppmm_v;
350
351 GetPageSizePixels(&pageWidth, &pageHeight);
352 GetPageSizeMM(&mm_w, &mm_h);
353 ppmm_h = (float)pageWidth / mm_w;
354 ppmm_v = (float)pageHeight / mm_h;
edbd0635 355 wxDisplaySize(&scr_w, &scr_h);
4f9297b0 356 dc->GetSize(&dc_w, &dc_h);
3ce369e6 357
edbd0635
VS
358 int ppiPrinterX, ppiPrinterY;
359 GetPPIPrinter(&ppiPrinterX, &ppiPrinterY);
360 int ppiScreenX, ppiScreenY;
361 GetPPIScreen(&ppiScreenX, &ppiScreenY);
362
4f9297b0 363 dc->SetUserScale((double)dc_w / (double)pageWidth, (double)dc_w / (double)pageWidth);
04dbb646 364
4f9297b0 365 m_Renderer->SetDC(dc, (double)ppiPrinterY / (double)ppiScreenY);
04dbb646 366
4f9297b0 367 dc->SetBackgroundMode(wxTRANSPARENT);
3ce369e6 368
04dbb646 369 m_Renderer->Render((int) (ppmm_h * m_MarginLeft),
68be9f09 370 (int) (ppmm_v * (m_MarginTop + (m_HeaderHeight == 0 ? 0 : m_MarginSpace)) + m_HeaderHeight),
3ce369e6 371 m_PageBreaks[page-1]);
04dbb646 372
4f9297b0 373 m_RendererHdr->SetDC(dc, (double)ppiPrinterY / (double)ppiScreenY);
04dbb646 374 if (m_Headers[page % 2] != wxEmptyString)
4f9297b0
VS
375 {
376 m_RendererHdr->SetHtmlText(TranslateHeader(m_Headers[page % 2], page));
377 m_RendererHdr->Render((int) (ppmm_h * m_MarginLeft), (int) (ppmm_v * m_MarginTop));
3ce369e6 378 }
04dbb646 379 if (m_Footers[page % 2] != wxEmptyString)
4f9297b0
VS
380 {
381 m_RendererHdr->SetHtmlText(TranslateHeader(m_Footers[page % 2], page));
382 m_RendererHdr->Render((int) (ppmm_h * m_MarginLeft), (int) (pageHeight - ppmm_v * m_MarginBottom - m_FooterHeight));
3ce369e6
VS
383 }
384}
385
386
387
388wxString wxHtmlPrintout::TranslateHeader(const wxString& instr, int page)
389{
390 wxString r = instr;
391 wxString num;
04dbb646 392
66a77a74
OK
393 num.Printf(wxT("%i"), page);
394 r.Replace(wxT("@PAGENUM@"), num);
3ce369e6 395
66a77a74
OK
396 num.Printf(wxT("%i"), m_NumPages);
397 r.Replace(wxT("@PAGESCNT@"), num);
3ce369e6
VS
398
399 return r;
400}
401
402
403
404void wxHtmlPrintout::SetMargins(float top, float bottom, float left, float right, float spaces)
405{
406 m_MarginTop = top;
407 m_MarginBottom = bottom;
408 m_MarginLeft = left;
409 m_MarginRight = right;
410 m_MarginSpace = spaces;
411}
412
413
414
415
416
417
418//--------------------------------------------------------------------------------
419// wxHtmlEasyPrinting
420//--------------------------------------------------------------------------------
421
422
423wxHtmlEasyPrinting::wxHtmlEasyPrinting(const wxString& name, wxFrame *parent_frame)
424{
425 m_Frame = parent_frame;
426 m_Name = name;
427 m_PrintData = new wxPrintData;
428 m_PageSetupData = new wxPageSetupDialogData;
429 m_Headers[0] = m_Headers[1] = m_Footers[0] = m_Footers[1] = wxEmptyString;
04dbb646 430
4f9297b0 431 m_PageSetupData->EnableMargins(TRUE);
04dbb646 432 m_PageSetupData->SetMarginTopLeft(wxPoint(25, 25));
4f9297b0 433 m_PageSetupData->SetMarginBottomRight(wxPoint(25, 25));
3ce369e6
VS
434}
435
436
437
438wxHtmlEasyPrinting::~wxHtmlEasyPrinting()
439{
440 delete m_PrintData;
441 delete m_PageSetupData;
442}
443
444
445
f6bcfd97 446bool wxHtmlEasyPrinting::PreviewFile(const wxString &htmlfile)
3ce369e6
VS
447{
448 wxHtmlPrintout *p1 = CreatePrintout();
4f9297b0 449 p1->SetHtmlFile(htmlfile);
3ce369e6 450 wxHtmlPrintout *p2 = CreatePrintout();
4f9297b0 451 p2->SetHtmlFile(htmlfile);
f6bcfd97 452 return DoPreview(p1, p2);
3ce369e6
VS
453}
454
455
456
f6bcfd97 457bool wxHtmlEasyPrinting::PreviewText(const wxString &htmltext, const wxString &basepath)
3ce369e6
VS
458{
459 wxHtmlPrintout *p1 = CreatePrintout();
4f9297b0 460 p1->SetHtmlText(htmltext, basepath, TRUE);
3ce369e6 461 wxHtmlPrintout *p2 = CreatePrintout();
4f9297b0 462 p2->SetHtmlText(htmltext, basepath, TRUE);
f6bcfd97 463 return DoPreview(p1, p2);
3ce369e6
VS
464}
465
466
467
f6bcfd97 468bool wxHtmlEasyPrinting::PrintFile(const wxString &htmlfile)
3ce369e6
VS
469{
470 wxHtmlPrintout *p = CreatePrintout();
4f9297b0 471 p->SetHtmlFile(htmlfile);
453507f2
VS
472 bool ret = DoPrint(p);
473 delete p;
474 return ret;
3ce369e6
VS
475}
476
477
478
f6bcfd97 479bool wxHtmlEasyPrinting::PrintText(const wxString &htmltext, const wxString &basepath)
3ce369e6
VS
480{
481 wxHtmlPrintout *p = CreatePrintout();
4f9297b0 482 p->SetHtmlText(htmltext, basepath, TRUE);
453507f2
VS
483 bool ret = DoPrint(p);
484 delete p;
485 return ret;
3ce369e6
VS
486}
487
488
489
f6bcfd97 490bool wxHtmlEasyPrinting::DoPreview(wxHtmlPrintout *printout1, wxHtmlPrintout *printout2)
3ce369e6
VS
491{
492 // Pass two printout objects: for preview, and possible printing.
493 wxPrintDialogData printDialogData(*m_PrintData);
494 wxPrintPreview *preview = new wxPrintPreview(printout1, printout2, &printDialogData);
04dbb646 495 if (!preview->Ok())
4f9297b0 496 {
3ce369e6 497 delete preview;
f6bcfd97 498 return FALSE;
3ce369e6 499 }
3ca6a5f0 500
04dbb646
VZ
501 wxPreviewFrame *frame = new wxPreviewFrame(preview, m_Frame,
502 m_Name + _(" Preview"),
3ca6a5f0 503 wxPoint(100, 100), wxSize(650, 500));
4f9297b0
VS
504 frame->Centre(wxBOTH);
505 frame->Initialize();
506 frame->Show(TRUE);
3ca6a5f0 507 return TRUE;
3ce369e6
VS
508}
509
510
511
f6bcfd97 512bool wxHtmlEasyPrinting::DoPrint(wxHtmlPrintout *printout)
3ce369e6
VS
513{
514 wxPrintDialogData printDialogData(*m_PrintData);
515 wxPrinter printer(&printDialogData);
516
517 if (!printer.Print(m_Frame, printout, TRUE))
f6bcfd97
BP
518 {
519 return FALSE;
520 }
3ca6a5f0
BP
521
522 (*m_PrintData) = printer.GetPrintDialogData().GetPrintData();
523 return TRUE;
3ce369e6
VS
524}
525
526
527
528void wxHtmlEasyPrinting::PrinterSetup()
529{
530 wxPrintDialogData printDialogData(*m_PrintData);
531 wxPrintDialog printerDialog(m_Frame, &printDialogData);
04dbb646 532
3ce369e6
VS
533 printerDialog.GetPrintDialogData().SetSetupDialog(TRUE);
534
535 if (printerDialog.ShowModal() == wxID_OK)
536 (*m_PrintData) = printerDialog.GetPrintDialogData().GetPrintData();
537}
538
539
540
541void wxHtmlEasyPrinting::PageSetup()
542{
58cf0491
JS
543 if (!m_PrintData->Ok())
544 {
936b18ac 545 wxLogError(_("There was a problem during page setup: you may need to set a default printer."));
58cf0491
JS
546 return;
547 }
548
4f9297b0 549 m_PageSetupData->SetPrintData(*m_PrintData);
3ce369e6
VS
550 wxPageSetupDialog pageSetupDialog(m_Frame, m_PageSetupData);
551
04dbb646 552 if (pageSetupDialog.ShowModal() == wxID_OK)
4f9297b0 553 {
3ce369e6
VS
554 (*m_PrintData) = pageSetupDialog.GetPageSetupData().GetPrintData();
555 (*m_PageSetupData) = pageSetupDialog.GetPageSetupData();
556 }
557}
558
559
560
561void wxHtmlEasyPrinting::SetHeader(const wxString& header, int pg)
562{
04dbb646 563 if (pg == wxPAGE_ALL || pg == wxPAGE_EVEN)
3ce369e6 564 m_Headers[0] = header;
04dbb646 565 if (pg == wxPAGE_ALL || pg == wxPAGE_ODD)
3ce369e6
VS
566 m_Headers[1] = header;
567}
568
569
570
571void wxHtmlEasyPrinting::SetFooter(const wxString& footer, int pg)
572{
04dbb646 573 if (pg == wxPAGE_ALL || pg == wxPAGE_EVEN)
3ce369e6 574 m_Footers[0] = footer;
04dbb646 575 if (pg == wxPAGE_ALL || pg == wxPAGE_ODD)
3ce369e6
VS
576 m_Footers[1] = footer;
577}
578
579
580
581wxHtmlPrintout *wxHtmlEasyPrinting::CreatePrintout()
582{
583 wxHtmlPrintout *p = new wxHtmlPrintout(m_Name);
04dbb646 584
4f9297b0
VS
585 p->SetHeader(m_Headers[0], wxPAGE_EVEN);
586 p->SetHeader(m_Headers[1], wxPAGE_ODD);
587 p->SetFooter(m_Footers[0], wxPAGE_EVEN);
588 p->SetFooter(m_Footers[1], wxPAGE_ODD);
589
590 p->SetMargins(m_PageSetupData->GetMarginTopLeft().y,
591 m_PageSetupData->GetMarginBottomRight().y,
592 m_PageSetupData->GetMarginTopLeft().x,
593 m_PageSetupData->GetMarginBottomRight().x);
04dbb646 594
3ce369e6
VS
595 return p;
596}
597
598
0cecad31
VS
599// This hack forces the linker to always link in m_* files
600// (wxHTML doesn't work without handlers from these files)
601#include "wx/html/forcelnk.h"
602FORCE_WXHTML_MODULES()
3ce369e6 603
72cdf4c9 604#endif // wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE