]> git.saurik.com Git - wxWidgets.git/blame - src/common/prntbase.cpp
no message
[wxWidgets.git] / src / common / prntbase.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: prntbase.cpp
3// Purpose: Printing framework base class implementation
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "prntbase.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
c801d85f
KB
23#include "wx/defs.h"
24
2049ba38 25#ifdef __WXMSW__
da87a1ca
JS
26#define __GOOD_COMPILER__
27#endif
28
c801d85f
KB
29#ifndef WX_PRECOMP
30#include "wx/utils.h"
31#include "wx/dc.h"
32#include "wx/app.h"
33#include "wx/msgdlg.h"
34#include "wx/layout.h"
35#include "wx/choice.h"
36#include "wx/button.h"
37#include "wx/settings.h"
38#include "wx/dcmemory.h"
39#include "wx/stattext.h"
40#include "wx/intl.h"
41#endif
42
43#include "wx/prntbase.h"
44#include "wx/dcprint.h"
45#include "wx/printdlg.h"
46
47#include <stdlib.h>
48#include <string.h>
49
2049ba38 50#ifdef __WXMSW__
c801d85f
KB
51#include <windows.h>
52#include <commdlg.h>
53
54// Clash with Windows header files
55#ifdef StartDoc
56#undef StartDoc
57#endif
58
59#ifndef __WIN32__
60#include <print.h>
61#endif
62
c801d85f 63#endif
2049ba38 64 // End __WXMSW__
c801d85f
KB
65
66#if !USE_SHARED_LIBRARY
67IMPLEMENT_CLASS(wxPrinterBase, wxObject)
68IMPLEMENT_ABSTRACT_CLASS(wxPrintout, wxObject)
69IMPLEMENT_CLASS(wxPreviewCanvas, wxWindow)
70IMPLEMENT_CLASS(wxPreviewControlBar, wxWindow)
71IMPLEMENT_CLASS(wxPreviewFrame, wxFrame)
72IMPLEMENT_CLASS(wxPrintPreviewBase, wxObject)
73
74BEGIN_EVENT_TABLE(wxPrintAbortDialog, wxDialog)
75 EVT_BUTTON(wxID_CANCEL, wxPrintAbortDialog::OnCancel)
76END_EVENT_TABLE()
77
78BEGIN_EVENT_TABLE(wxPreviewCanvas, wxScrolledWindow)
79 EVT_PAINT(wxPreviewCanvas::OnPaint)
80 EVT_SYS_COLOUR_CHANGED(wxPreviewCanvas::OnSysColourChanged)
81END_EVENT_TABLE()
82#endif
83
84/*
85 * Printer
86 */
87
88wxPrinterBase::wxPrinterBase(wxPrintData *data)
89{
34da0970
JS
90 m_currentPrintout = (wxPrintout *) NULL;
91 sm_abortWindow = (wxWindow *) NULL;
92 sm_abortIt = FALSE;
c801d85f 93 if (data)
34da0970 94 m_printData = (*data);
c801d85f
KB
95}
96
34da0970
JS
97wxWindow *wxPrinterBase::sm_abortWindow = (wxWindow *) NULL;
98bool wxPrinterBase::sm_abortIt = FALSE;
c801d85f 99
34da0970 100wxPrinterBase::~wxPrinterBase()
c801d85f
KB
101{
102}
103
104void wxPrintAbortDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
105{
34da0970
JS
106 wxPrinterBase::sm_abortIt = TRUE;
107 wxPrinterBase::sm_abortWindow->Show(FALSE);
108 wxPrinterBase::sm_abortWindow->Close(TRUE);
109 wxPrinterBase::sm_abortWindow = (wxWindow *) NULL;
c801d85f
KB
110}
111
112wxWindow *wxPrinterBase::CreateAbortWindow(wxWindow *parent, wxPrintout *WXUNUSED(printout))
113{
34da0970 114 wxPrintAbortDialog *dialog = new wxPrintAbortDialog(parent, _("Printing"), wxPoint(0, 0), wxSize(400, 400), wxDEFAULT_DIALOG_STYLE);
c801d85f
KB
115 (void) new wxStaticText(dialog, -1, _("Please wait..."), wxPoint(5, 5));
116
117 wxButton *button = new wxButton(dialog, wxID_CANCEL, _("Cancel"), wxPoint(5, 30));
118
119 dialog->Fit();
120 button->Centre(wxHORIZONTAL);
121
122 dialog->Centre();
123 return dialog;
124}
125
126void wxPrinterBase::ReportError(wxWindow *parent, wxPrintout *WXUNUSED(printout), char *message)
127{
1a5a8367 128 wxMessageBox(message, _("Printing Error"), wxOK, parent);
c801d85f
KB
129}
130
131/*
132 * Printout class
133 */
134
34da0970 135wxPrintout::wxPrintout(const wxString& title)
c801d85f 136{
34da0970
JS
137 m_printoutTitle = title ;
138 m_printoutDC = (wxDC *) NULL;
139 m_pageWidthMM = 0;
140 m_pageHeightMM = 0;
141 m_pageWidthPixels = 0;
142 m_pageHeightPixels = 0;
143 m_PPIScreenX = 0;
144 m_PPIScreenY = 0;
145 m_PPIPrinterX = 0;
146 m_PPIPrinterY = 0;
147 m_isPreview = FALSE;
c801d85f
KB
148}
149
34da0970 150wxPrintout::~wxPrintout()
c801d85f 151{
c801d85f
KB
152}
153
154bool wxPrintout::OnBeginDocument(int WXUNUSED(startPage), int WXUNUSED(endPage))
155{
1a5a8367 156 return GetDC()->StartDoc(_("Printing"));
c801d85f
KB
157}
158
34da0970 159void wxPrintout::OnEndDocument()
c801d85f
KB
160{
161 GetDC()->EndDoc();
162}
163
34da0970 164void wxPrintout::OnBeginPrinting()
c801d85f
KB
165{
166}
167
34da0970 168void wxPrintout::OnEndPrinting()
c801d85f
KB
169{
170}
171
172bool wxPrintout::HasPage(int page)
173{
174 return (page == 1);
175}
176
177void wxPrintout::GetPageInfo(int *minPage, int *maxPage, int *fromPage, int *toPage)
178{
179 *minPage = 1;
180 *maxPage = 32000;
181 *fromPage = 1;
182 *toPage = 1;
183}
184
185/*
186 * Preview canvas
187 */
188
189wxPreviewCanvas::wxPreviewCanvas(wxPrintPreviewBase *preview, wxWindow *parent,
190 const wxPoint& pos, const wxSize& size, long style, const wxString& name):
191 wxScrolledWindow(parent, -1, pos, size, style, name)
192{
34da0970 193 m_printPreview = preview;
c801d85f
KB
194 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
195
196 SetScrollbars(40, 40, 100, 100);
197}
198
34da0970 199wxPreviewCanvas::~wxPreviewCanvas()
c801d85f
KB
200{
201}
202
203void wxPreviewCanvas::OnPaint(wxPaintEvent& WXUNUSED(event))
204{
205 wxPaintDC dc(this);
206
34da0970 207 if (m_printPreview)
c801d85f 208 {
34da0970 209 m_printPreview->PaintPage(this, dc);
c801d85f
KB
210 }
211}
212
213// Responds to colour changes, and passes event on to children.
214void wxPreviewCanvas::OnSysColourChanged(wxSysColourChangedEvent& event)
215{
216 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
217 Refresh();
218
219 // Propagate the event to the non-top-level children
220 wxWindow::OnSysColourChanged(event);
221}
222
223/*
224 * Preview control bar
225 */
226
227BEGIN_EVENT_TABLE(wxPreviewControlBar, wxPanel)
228 EVT_BUTTON(wxID_PREVIEW_CLOSE, wxPreviewControlBar::OnClose)
229 EVT_BUTTON(wxID_PREVIEW_PRINT, wxPreviewControlBar::OnPrint)
230 EVT_BUTTON(wxID_PREVIEW_PREVIOUS, wxPreviewControlBar::OnPrevious)
231 EVT_BUTTON(wxID_PREVIEW_NEXT, wxPreviewControlBar::OnNext)
232 EVT_CHOICE(wxID_PREVIEW_ZOOM, wxPreviewControlBar::OnZoom)
233 EVT_PAINT(wxPreviewControlBar::OnPaint)
234END_EVENT_TABLE()
235
236wxPreviewControlBar::wxPreviewControlBar(wxPrintPreviewBase *preview, long buttons,
237 wxWindow *parent, const wxPoint& pos, const wxSize& size,
238 long style, const wxString& name):
239 wxPanel(parent, -1, pos, size, style, name)
240{
34da0970
JS
241 m_printPreview = preview;
242 m_closeButton = (wxButton *) NULL;
243 m_nextPageButton = (wxButton *) NULL;
244 m_previousPageButton = (wxButton *) NULL;
245 m_printButton = (wxButton *) NULL;
246 m_zoomControl = (wxChoice *) NULL;
247 m_buttonFlags = buttons;
c801d85f
KB
248}
249
34da0970 250wxPreviewControlBar::~wxPreviewControlBar()
c801d85f
KB
251{
252}
253
254void wxPreviewControlBar::OnPaint(wxPaintEvent& WXUNUSED(event))
255{
256 wxPaintDC dc(this);
257
258 int w, h;
259 GetSize(&w, &h);
260 dc.SetPen(*wxBLACK_PEN);
261 dc.SetBrush(*wxTRANSPARENT_BRUSH);
262 dc.DrawLine( 0, h-1, w, h-1 );
263}
264
265void wxPreviewControlBar::OnClose(wxCommandEvent& WXUNUSED(event))
266{
267 wxPreviewFrame *frame = (wxPreviewFrame *)GetParent();
268 frame->Close(TRUE);
269}
270
271void wxPreviewControlBar::OnPrint(wxCommandEvent& WXUNUSED(event))
272{
273 wxPrintPreviewBase *preview = GetPrintPreview();
274 preview->Print(TRUE);
275}
276
277void wxPreviewControlBar::OnNext(wxCommandEvent& WXUNUSED(event))
278{
279 wxPrintPreviewBase *preview = GetPrintPreview();
280 if (preview)
281 {
282 int currentPage = preview->GetCurrentPage();
283 if ((preview->GetMaxPage() > 0) &&
284 (currentPage < preview->GetMaxPage()) &&
285 preview->GetPrintout()->HasPage(currentPage + 1))
286 {
287 preview->SetCurrentPage(currentPage + 1);
288 }
289 }
290}
291
292void wxPreviewControlBar::OnPrevious(wxCommandEvent& WXUNUSED(event))
293{
294 wxPrintPreviewBase *preview = GetPrintPreview();
295 if (preview)
296 {
297 int currentPage = preview->GetCurrentPage();
298 if ((preview->GetMinPage() > 0) &&
299 (currentPage > preview->GetMinPage()) &&
300 preview->GetPrintout()->HasPage(currentPage - 1))
301 {
302 preview->SetCurrentPage(currentPage - 1);
303 }
304 }
305}
306
307void wxPreviewControlBar::OnZoom(wxCommandEvent& WXUNUSED(event))
308{
309 int zoom = GetZoomControl();
310 if (GetPrintPreview())
311 GetPrintPreview()->SetZoom(zoom);
312}
313
34da0970 314void wxPreviewControlBar::CreateButtons()
c801d85f
KB
315{
316#ifdef __GOOD_COMPILER__ // Robert Roebling
317
318 SetSize(0, 0, 400, 40);
319
2049ba38 320#ifdef __WXMSW__
c801d85f
KB
321 int fontSize = 9;
322#else
323 int fontSize = 10;
324#endif
325
34da0970
JS
326 wxFont buttonFont(fontSize, wxSWISS, wxNORMAL, wxBOLD);
327 SetButtonFont(buttonFont);
c801d85f
KB
328
329 int buttonWidth = 65;
330 int buttonHeight = 24;
331
332 int x = 5;
333 int y = 5;
334 int gap = 5;
335
34da0970 336 m_closeButton = new wxButton(this, wxID_PREVIEW_CLOSE, _("Close"),
c801d85f
KB
337 wxPoint(x, y), wxSize(buttonWidth, buttonHeight));
338
339 x += gap + buttonWidth;
340
34da0970 341 if (m_buttonFlags & wxPREVIEW_PRINT)
c801d85f 342 {
34da0970 343 m_printButton = new wxButton(this, wxID_PREVIEW_PRINT, _("Print..."), wxPoint(x, y),
c801d85f
KB
344 wxSize(buttonWidth, buttonHeight));
345 x += gap + buttonWidth;
346 }
347
34da0970 348 if (m_buttonFlags & wxPREVIEW_PREVIOUS)
c801d85f 349 {
34da0970 350 m_previousPageButton = new wxButton(this, wxID_PREVIEW_PREVIOUS, "<<", wxPoint(x, y),
c801d85f
KB
351 wxSize(buttonWidth, buttonHeight));
352 x += gap + buttonWidth;
353 }
354
34da0970 355 if (m_buttonFlags & wxPREVIEW_NEXT)
c801d85f 356 {
34da0970 357 m_nextPageButton = new wxButton(this, wxID_PREVIEW_NEXT, ">>",
c801d85f
KB
358 wxPoint(x, y), wxSize(buttonWidth, buttonHeight));
359 x += gap + buttonWidth;
360 }
361
362 static wxString choices[] = { "10%", "20%", "25%", "30%", "35%", "40%", "45%", "50%", "55%", "60%",
363 "65%", "70%", "75%", "80%", "85%", "90%", "95%", "100%", "110%", "120%", "150%", "200%" };
364 int n = 22;
34da0970 365 if (m_buttonFlags & wxPREVIEW_ZOOM)
c801d85f 366 {
34da0970 367 m_zoomControl = new wxChoice(this, wxID_PREVIEW_ZOOM, wxPoint(x, y),
c801d85f 368 wxSize(100, -1), n, (wxString *)choices);
34da0970 369 SetZoomControl(m_printPreview->GetZoom());
c801d85f
KB
370 }
371
34da0970 372 m_closeButton->SetDefault();
c801d85f
KB
373
374#endif
375}
376
377void wxPreviewControlBar::SetZoomControl(int zoom)
378{
379#ifdef __GOOD_COMPILER__ // Robert Roebling
380 char buf[20];
381 sprintf(buf, "%d%%", zoom);
34da0970
JS
382 if (m_zoomControl)
383 m_zoomControl->SetStringSelection(buf);
c801d85f
KB
384#endif
385}
386
34da0970 387int wxPreviewControlBar::GetZoomControl()
c801d85f
KB
388{
389#ifdef __GOOD_COMPILER__ // Robert Roebling
390 char buf[20];
34da0970 391 if (m_zoomControl && m_zoomControl->GetStringSelection())
c801d85f 392 {
34da0970 393 strcpy(buf, m_zoomControl->GetStringSelection());
c801d85f
KB
394 buf[strlen(buf) - 1] = 0;
395 return (int)atoi(buf);
396 }
397 else return 0;
aad5220b
JS
398#else
399 return 0;
c801d85f
KB
400#endif
401}
402
403
404/*
405 * Preview frame
406 */
407
408wxPreviewFrame::wxPreviewFrame(wxPrintPreviewBase *preview, wxFrame *parent, const wxString& title,
409 const wxPoint& pos, const wxSize& size, long style, const wxString& name):
410 wxFrame(parent, -1, title, pos, size, style, name)
411{
412#ifdef __GOOD_COMPILER__ // Robert Roebling
34da0970
JS
413 m_printPreview = preview;
414 m_controlBar = NULL;
415 m_previewCanvas = NULL;
c801d85f
KB
416#endif
417}
418
34da0970 419wxPreviewFrame::~wxPreviewFrame()
c801d85f
KB
420{
421}
422
34da0970 423bool wxPreviewFrame::OnClose()
c801d85f
KB
424{
425#ifdef __GOOD_COMPILER__ // Robert Roebling
426
427 MakeModal(FALSE);
428
429 // Need to delete the printout and the print preview
34da0970 430 wxPrintout *printout = m_printPreview->GetPrintout();
c801d85f
KB
431 if (printout)
432 {
433 delete printout;
34da0970
JS
434 m_printPreview->SetPrintout(NULL);
435 m_printPreview->SetCanvas(NULL);
436 m_printPreview->SetFrame(NULL);
c801d85f 437 }
34da0970 438 delete m_printPreview;
c801d85f 439 return TRUE;
aad5220b
JS
440#else
441 return FALSE;
c801d85f
KB
442#endif
443}
444
34da0970 445void wxPreviewFrame::Initialize()
c801d85f
KB
446{
447
448#ifdef __GOOD_COMPILER__ // Robert Roebling
449
450 CreateStatusBar();
451
452 CreateCanvas();
453 CreateControlBar();
454
34da0970
JS
455 m_printPreview->SetCanvas(m_previewCanvas);
456 m_printPreview->SetFrame(this);
c801d85f
KB
457
458 // Set layout constraints here
459
460 // Control bar constraints
461 wxLayoutConstraints *c1 = new wxLayoutConstraints;
462// int w, h;
34da0970 463// m_controlBar->GetSize(&w, &h);
c801d85f 464 int h;
2049ba38 465#ifdef __WXMSW__
c801d85f
KB
466 h = 40;
467#else
468 h = 60;
469#endif
470
471 c1->left.SameAs (this, wxLeft);
472 c1->top.SameAs (this, wxTop);
473 c1->right.SameAs (this, wxRight);
474 c1->height.Absolute (h);
475
34da0970 476 m_controlBar->SetConstraints(c1);
c801d85f
KB
477
478 // Canvas constraints
479 wxLayoutConstraints *c2 = new wxLayoutConstraints;
480
481 c2->left.SameAs (this, wxLeft);
34da0970 482 c2->top.Below (m_controlBar);
c801d85f
KB
483 c2->right.SameAs (this, wxRight);
484 c2->bottom.SameAs (this, wxBottom);
485
34da0970 486 m_previewCanvas->SetConstraints(c2);
c801d85f
KB
487
488 SetAutoLayout(TRUE);
489
490 MakeModal(TRUE);
491
492 Layout();
493
494#endif
495}
496
34da0970 497void wxPreviewFrame::CreateCanvas()
c801d85f
KB
498{
499#ifdef __GOOD_COMPILER__ // Robert Roebling
500
34da0970 501 m_previewCanvas = new wxPreviewCanvas(m_printPreview, this);
c801d85f
KB
502
503#endif
504}
505
34da0970 506void wxPreviewFrame::CreateControlBar()
c801d85f
KB
507{
508#ifdef __GOOD_COMPILER__ // Robert Roebling
509
510 long buttons = wxPREVIEW_DEFAULT;
34da0970 511 if (m_printPreview->GetPrintoutForPrinting())
c801d85f
KB
512 buttons |= wxPREVIEW_PRINT;
513
34da0970
JS
514 m_controlBar = new wxPreviewControlBar(m_printPreview, buttons, this, wxPoint(0, 0), wxSize(400, 40));
515 m_controlBar->CreateButtons();
c801d85f
KB
516#endif
517}
518
519/*
520 * Print preview
521 */
522
523wxPrintPreviewBase::wxPrintPreviewBase(wxPrintout *printout, wxPrintout *printoutForPrinting, wxPrintData *data)
524{
525
526#ifdef __GOOD_COMPILER__ // Robert Roebling
527
34da0970
JS
528 m_isOk = TRUE;
529 m_previewPrintout = printout;
530 if (m_previewPrintout)
531 m_previewPrintout->SetIsPreview(TRUE);
c801d85f 532
34da0970 533 m_printPrintout = printoutForPrinting;
c801d85f 534 if (data)
34da0970
JS
535 m_printData = (*data);
536
537 m_previewCanvas = NULL;
538 m_previewFrame = NULL;
539 m_previewBitmap = NULL;
540 m_currentPage = 1;
541 m_currentZoom = 30;
542 m_topMargin = 40;
543 m_leftMargin = 40;
544 m_pageWidth = 0;
545 m_pageHeight = 0;
c801d85f
KB
546
547 printout->OnPreparePrinting();
548
549 // Get some parameters from the printout, if defined
550 int selFrom, selTo;
34da0970 551 printout->GetPageInfo(&m_minPage, &m_maxPage, &selFrom, &selTo);
c801d85f
KB
552
553#endif
554}
555
34da0970 556wxPrintPreviewBase::~wxPrintPreviewBase()
c801d85f
KB
557{
558#ifdef __GOOD_COMPILER__ // Robert Roebling
559
34da0970
JS
560 if (m_previewPrintout)
561 delete m_previewPrintout;
562 if (m_previewBitmap)
563 delete m_previewBitmap;
564 if (m_printPrintout)
565 delete m_printPrintout;
c801d85f
KB
566
567#endif
568}
569
570bool wxPrintPreviewBase::SetCurrentPage(int pageNum)
571{
572#ifdef __GOOD_COMPILER__ // Robert Roebling
34da0970 573 if (m_currentPage == pageNum)
c801d85f
KB
574 return TRUE;
575
34da0970
JS
576 m_currentPage = pageNum;
577 if (m_previewBitmap)
c801d85f 578 {
34da0970
JS
579 delete m_previewBitmap;
580 m_previewBitmap = NULL;
c801d85f
KB
581 }
582
34da0970 583 if (m_previewCanvas)
c801d85f
KB
584 {
585 RenderPage(pageNum);
34da0970 586 m_previewCanvas->Refresh();
c801d85f
KB
587 }
588
589#endif
590 return TRUE;
591}
592
593bool wxPrintPreviewBase::PaintPage(wxWindow *canvas, wxDC& dc)
594{
595
596#ifdef __GOOD_COMPILER__ // Robert Roebling
597
598 DrawBlankPage(canvas, dc);
599
34da0970
JS
600 if (!m_previewBitmap)
601 RenderPage(m_currentPage);
c801d85f 602
34da0970 603 if (!m_previewBitmap)
c801d85f
KB
604 return FALSE;
605
606 if (!canvas)
607 return FALSE;
608
609 int canvasWidth, canvasHeight;
610 canvas->GetSize(&canvasWidth, &canvasHeight);
611
34da0970
JS
612 double zoomScale = ((float)m_currentZoom/(float)100);
613 double actualWidth = (zoomScale*m_pageWidth*m_previewScale);
614// float actualHeight = (float)(zoomScale*m_pageHeight*m_previewScale);
c801d85f 615
341287bf 616 int x = (int) ((canvasWidth - actualWidth)/2.0);
34da0970
JS
617 if (x < m_leftMargin)
618 x = m_leftMargin;
619 int y = m_topMargin;
c801d85f
KB
620
621 wxMemoryDC temp_dc;
34da0970 622 temp_dc.SelectObject(*m_previewBitmap);
c801d85f 623
34da0970 624 dc.Blit(x, y, m_previewBitmap->GetWidth(), m_previewBitmap->GetHeight(), &temp_dc, 0, 0);
c801d85f
KB
625
626 temp_dc.SelectObject(wxNullBitmap);
627
628#endif
629
630 return TRUE;
631}
632
633bool wxPrintPreviewBase::RenderPage(int pageNum)
634{
635 int canvasWidth, canvasHeight;
636
637#ifdef __GOOD_COMPILER__ // Robert Roebling
638
34da0970 639 if (!m_previewCanvas)
c801d85f 640 {
1a5a8367
DP
641 wxMessageBox(_("wxPrintPreviewBase::RenderPage: must use wxPrintPreviewBase::SetCanvas to let me know about the canvas!"),
642 _("Print Preview Failure"), wxOK);
c801d85f
KB
643 return FALSE;
644 }
34da0970 645 m_previewCanvas->GetSize(&canvasWidth, &canvasHeight);
c801d85f 646
34da0970
JS
647 double zoomScale = (m_currentZoom/100.0);
648 int actualWidth = (int)(zoomScale*m_pageWidth*m_previewScale);
649 int actualHeight = (int)(zoomScale*m_pageHeight*m_previewScale);
c801d85f 650
34da0970
JS
651 int x = (int)((canvasWidth - actualWidth)/2.0);
652 if (x < m_leftMargin)
653 x = m_leftMargin;
654// int y = m_topMargin;
c801d85f
KB
655
656
34da0970 657 if (!m_previewBitmap)
c801d85f 658 {
34da0970
JS
659 m_previewBitmap = new wxBitmap((int)actualWidth, (int)actualHeight);
660 if (!m_previewBitmap || !m_previewBitmap->Ok())
c801d85f 661 {
34da0970
JS
662 if (m_previewBitmap)
663 delete m_previewBitmap;
1a5a8367 664 wxMessageBox(_("Sorry, not enough memory to create a preview."), _("Print Preview Failure"), wxOK);
c801d85f
KB
665 return FALSE;
666 }
667 }
668
669 wxMemoryDC memoryDC;
34da0970 670 memoryDC.SelectObject(*m_previewBitmap);
c801d85f
KB
671
672 memoryDC.Clear();
673
34da0970
JS
674 m_previewPrintout->SetDC(&memoryDC);
675 m_previewPrintout->SetPageSizePixels(m_pageWidth, m_pageHeight);
c801d85f 676
34da0970 677 m_previewPrintout->OnBeginPrinting();
c801d85f
KB
678
679
34da0970 680 if (!m_previewPrintout->OnBeginDocument(m_printData.GetFromPage(), m_printData.GetToPage()))
c801d85f 681 {
1a5a8367 682 wxMessageBox(_("Could not start document preview."), _("Print Preview Failure"), wxOK);
c801d85f
KB
683
684 memoryDC.SelectObject(wxNullBitmap);
685
34da0970 686 delete m_previewBitmap;
c801d85f
KB
687 return FALSE;
688 }
689
34da0970
JS
690 m_previewPrintout->OnPrintPage(pageNum);
691 m_previewPrintout->OnEndDocument();
692 m_previewPrintout->OnEndPrinting();
c801d85f 693
34da0970 694 m_previewPrintout->SetDC(NULL);
c801d85f
KB
695
696 memoryDC.SelectObject(wxNullBitmap);
697#endif
698
699 char buf[200];
34da0970
JS
700 if (m_maxPage != 0)
701 sprintf(buf, _("Page %d of %d"), pageNum, m_maxPage);
c801d85f 702 else
1a5a8367 703 sprintf(buf, _("Page %d"), pageNum);
c801d85f 704
34da0970
JS
705 if (m_previewFrame)
706 m_previewFrame->SetStatusText(buf);
c801d85f
KB
707
708 return TRUE;
709}
710
711
712bool wxPrintPreviewBase::DrawBlankPage(wxWindow *canvas, wxDC& dc)
713{
714
715#ifdef __GOOD_COMPILER__ // Robert Roebling
716
717 int canvasWidth, canvasHeight;
718 canvas->GetSize(&canvasWidth, &canvasHeight);
719
34da0970
JS
720 float zoomScale = (float)((float)m_currentZoom/(float)100);
721 float actualWidth = zoomScale*m_pageWidth*m_previewScale;
722 float actualHeight = zoomScale*m_pageHeight*m_previewScale;
c801d85f
KB
723
724 float x = (float)((canvasWidth - actualWidth)/2.0);
34da0970
JS
725 if (x < m_leftMargin)
726 x = (float)m_leftMargin;
727 float y = (float)m_topMargin;
c801d85f
KB
728
729 // Draw shadow, allowing for 1-pixel border AROUND the actual page
730 int shadowOffset = 4;
731 dc.SetPen(*wxBLACK_PEN);
732 dc.SetBrush(*wxBLACK_BRUSH);
733 dc.DrawRectangle(x-1 + shadowOffset, y-1 + shadowOffset, actualWidth+2, actualHeight+2);
734
735 // Draw blank page allowing for 1-pixel border AROUND the actual page
736 dc.SetPen(*wxBLACK_PEN);
737 dc.SetBrush(*wxWHITE_BRUSH);
738
739
740 dc.DrawRectangle(x-1, y-1, actualWidth+2, actualHeight+2);
741
742#endif
743
744 return TRUE;
745}
746
747void wxPrintPreviewBase::SetZoom(int percent)
748{
749#ifdef __GOOD_COMPILER__ // Robert Roebling
34da0970 750 if (m_currentZoom == percent)
c801d85f
KB
751 return;
752
34da0970
JS
753 m_currentZoom = percent;
754 if (m_previewBitmap)
c801d85f 755 {
34da0970
JS
756 delete m_previewBitmap;
757 m_previewBitmap = NULL;
c801d85f 758 }
34da0970 759 RenderPage(m_currentPage);
c801d85f 760
34da0970 761 if (m_previewCanvas)
c801d85f 762 {
34da0970
JS
763 m_previewCanvas->Clear();
764 m_previewCanvas->Refresh();
c801d85f
KB
765 }
766#endif
767
768}