More name changes
[wxWidgets.git] / samples / printing / printing.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: printing.cpp
3 // Purpose: Printing demo for wxWidgets
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 1995
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/wx.h"
25 #endif
26
27 #if !wxUSE_PRINTING_ARCHITECTURE
28 #error "You must set wxUSE_PRINTING_ARCHITECTURE to 1 in setup.h, and recompile the library."
29 #endif
30
31 // Set this to 1 if you want to test PostScript printing under MSW.
32 // However, you'll also need to edit src/msw/makefile.nt.
33 #define wxTEST_POSTSCRIPT_IN_MSW 0
34
35 #include <ctype.h>
36 #include "wx/metafile.h"
37 #include "wx/print.h"
38 #include "wx/printdlg.h"
39
40 #include "wx/accel.h"
41
42 #if wxTEST_POSTSCRIPT_IN_MSW
43 #include "wx/generic/printps.h"
44 #include "wx/generic/prntdlgg.h"
45 #endif
46
47 #include "printing.h"
48
49 #ifndef __WXMSW__
50 #include "mondrian.xpm"
51 #endif
52
53 // Declare a frame
54 MyFrame *frame = (MyFrame *) NULL;
55 // int orientation = wxPORTRAIT;
56
57 // Global print data, to remember settings during the session
58 wxPrintData *g_printData = (wxPrintData*) NULL ;
59
60 // Global page setup data
61 wxPageSetupData* g_pageSetupData = (wxPageSetupData*) NULL;
62
63 // Main proc
64 IMPLEMENT_APP(MyApp)
65
66 // Writes a header on a page. Margin units are in millimetres.
67 bool WritePageHeader(wxPrintout *printout, wxDC *dc, wxChar *text, float mmToLogical);
68
69 MyApp::MyApp()
70 {
71 }
72
73 // The `main program' equivalent, creating the windows and returning the
74 // main frame
75 bool MyApp::OnInit(void)
76 {
77 m_testFont.Create(10, wxSWISS, wxNORMAL, wxNORMAL);
78
79 g_printData = new wxPrintData;
80 g_pageSetupData = new wxPageSetupDialogData;
81
82 // Create the main frame window
83 frame = new MyFrame((wxFrame *) NULL, _T("wxWidgets Printing Demo"), wxPoint(0, 0), wxSize(400, 400));
84
85 // Give it a status line
86 frame->CreateStatusBar(2);
87
88 // Load icon and bitmap
89 frame->SetIcon( wxICON( mondrian) );
90
91 // Make a menubar
92 wxMenu *file_menu = new wxMenu;
93
94 file_menu->Append(WXPRINT_PRINT, _T("&Print..."), _T("Print"));
95 file_menu->Append(WXPRINT_PRINT_SETUP, _T("Print &Setup..."), _T("Setup printer properties"));
96 file_menu->Append(WXPRINT_PAGE_SETUP, _T("Page Set&up..."), _T("Page setup"));
97 file_menu->Append(WXPRINT_PREVIEW, _T("Print Pre&view"), _T("Preview"));
98
99 #if wxUSE_ACCEL
100 // Accelerators
101 wxAcceleratorEntry entries[1];
102 entries[0].Set(wxACCEL_CTRL, (int) 'V', WXPRINT_PREVIEW);
103 wxAcceleratorTable accel(1, entries);
104 frame->SetAcceleratorTable(accel);
105 #endif
106
107 #if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
108 file_menu->AppendSeparator();
109 file_menu->Append(WXPRINT_PRINT_PS, _T("Print PostScript..."), _T("Print (PostScript)"));
110 file_menu->Append(WXPRINT_PRINT_SETUP_PS, _T("Print Setup PostScript..."), _T("Setup printer properties (PostScript)"));
111 file_menu->Append(WXPRINT_PAGE_SETUP_PS, _T("Page Setup PostScript..."), _T("Page setup (PostScript)"));
112 file_menu->Append(WXPRINT_PREVIEW_PS, _T("Print Preview PostScript"), _T("Preview (PostScript)"));
113 #endif
114 file_menu->AppendSeparator();
115 file_menu->Append(WXPRINT_QUIT, _T("E&xit"), _T("Exit program"));
116
117 wxMenu *help_menu = new wxMenu;
118 help_menu->Append(WXPRINT_ABOUT, _T("&About"), _T("About this demo"));
119
120 wxMenuBar *menu_bar = new wxMenuBar;
121
122 menu_bar->Append(file_menu, _T("&File"));
123 menu_bar->Append(help_menu, _T("&Help"));
124
125 // Associate the menu bar with the frame
126 frame->SetMenuBar(menu_bar);
127
128 MyCanvas *canvas = new MyCanvas(frame, wxPoint(0, 0), wxSize(100, 100), wxRETAINED|wxHSCROLL|wxVSCROLL);
129
130 // Give it scrollbars: the virtual canvas is 20 * 50 = 1000 pixels in each direction
131 canvas->SetScrollbars(20, 20, 50, 50);
132
133 frame->canvas = canvas;
134
135 frame->Centre(wxBOTH);
136 frame->Show();
137
138 frame->SetStatusText(_T("Printing demo"));
139
140 SetTopWindow(frame);
141
142 return true;
143 }
144
145 int MyApp::OnExit()
146 {
147 delete g_printData;
148 delete g_pageSetupData;
149 return 1;
150 }
151
152 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
153 EVT_MENU(WXPRINT_QUIT, MyFrame::OnExit)
154 EVT_MENU(WXPRINT_PRINT, MyFrame::OnPrint)
155 EVT_MENU(WXPRINT_PREVIEW, MyFrame::OnPrintPreview)
156 EVT_MENU(WXPRINT_PRINT_SETUP, MyFrame::OnPrintSetup)
157 EVT_MENU(WXPRINT_PAGE_SETUP, MyFrame::OnPageSetup)
158 EVT_MENU(WXPRINT_ABOUT, MyFrame::OnPrintAbout)
159 #if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
160 EVT_MENU(WXPRINT_PRINT_PS, MyFrame::OnPrintPS)
161 EVT_MENU(WXPRINT_PREVIEW_PS, MyFrame::OnPrintPreviewPS)
162 EVT_MENU(WXPRINT_PRINT_SETUP_PS, MyFrame::OnPrintSetupPS)
163 EVT_MENU(WXPRINT_PAGE_SETUP_PS, MyFrame::OnPageSetupPS)
164 #endif
165 END_EVENT_TABLE()
166
167 // Define my frame constructor
168 MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size):
169 wxFrame(frame, wxID_ANY, title, pos, size)
170 {
171 canvas = NULL;
172 }
173
174 void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event))
175 {
176 Close(true /*force closing*/);
177 }
178
179 void MyFrame::OnPrint(wxCommandEvent& WXUNUSED(event))
180 {
181 wxPrintDialogData printDialogData(* g_printData);
182
183 wxPrinter printer(& printDialogData);
184 MyPrintout printout(_T("My printout"));
185 if (!printer.Print(this, &printout, true /*prompt*/))
186 {
187 if (wxPrinter::GetLastError() == wxPRINTER_ERROR)
188 wxMessageBox(_T("There was a problem printing.\nPerhaps your current printer is not set correctly?"), _T("Printing"), wxOK);
189 else
190 wxMessageBox(_T("You canceled printing"), _T("Printing"), wxOK);
191 }
192 else
193 {
194 (*g_printData) = printer.GetPrintDialogData().GetPrintData();
195 }
196 }
197
198 void MyFrame::OnPrintPreview(wxCommandEvent& WXUNUSED(event))
199 {
200 // Pass two printout objects: for preview, and possible printing.
201 wxPrintDialogData printDialogData(* g_printData);
202 wxPrintPreview *preview = new wxPrintPreview(new MyPrintout, new MyPrintout, & printDialogData);
203 if (!preview->Ok())
204 {
205 delete preview;
206 wxMessageBox(_T("There was a problem previewing.\nPerhaps your current printer is not set correctly?"), _T("Previewing"), wxOK);
207 return;
208 }
209
210 wxPreviewFrame *frame = new wxPreviewFrame(preview, this, _T("Demo Print Preview"), wxPoint(100, 100), wxSize(600, 650));
211 frame->Centre(wxBOTH);
212 frame->Initialize();
213 frame->Show();
214 }
215
216 void MyFrame::OnPrintSetup(wxCommandEvent& WXUNUSED(event))
217 {
218 wxPrintDialogData printDialogData(* g_printData);
219 wxPrintDialog printerDialog(this, & printDialogData);
220
221 printerDialog.GetPrintDialogData().SetSetupDialog(true /*show print setup dialog*/);
222 printerDialog.ShowModal();
223
224 (*g_printData) = printerDialog.GetPrintDialogData().GetPrintData();
225 }
226
227 void MyFrame::OnPageSetup(wxCommandEvent& WXUNUSED(event))
228 {
229 (*g_pageSetupData) = * g_printData;
230
231 wxPageSetupDialog pageSetupDialog(this, g_pageSetupData);
232 pageSetupDialog.ShowModal();
233
234 (*g_printData) = pageSetupDialog.GetPageSetupData().GetPrintData();
235 (*g_pageSetupData) = pageSetupDialog.GetPageSetupData();
236 }
237
238 #if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
239 void MyFrame::OnPrintPS(wxCommandEvent& WXUNUSED(event))
240 {
241 wxPostScriptPrinter printer(g_printData);
242 MyPrintout printout(_T("My printout"));
243 printer.Print(this, &printout, true/*prompt*/);
244
245 (*g_printData) = printer.GetPrintData();
246 }
247
248 void MyFrame::OnPrintPreviewPS(wxCommandEvent& WXUNUSED(event))
249 {
250 // Pass two printout objects: for preview, and possible printing.
251 wxPrintDialogData printDialogData(* g_printData);
252 wxPrintPreview *preview = new wxPrintPreview(new MyPrintout, new MyPrintout, & printDialogData);
253 wxPreviewFrame *frame = new wxPreviewFrame(preview, this, _T("Demo Print Preview"), wxPoint(100, 100), wxSize(600, 650));
254 frame->Centre(wxBOTH);
255 frame->Initialize();
256 frame->Show();
257 }
258
259 void MyFrame::OnPrintSetupPS(wxCommandEvent& WXUNUSED(event))
260 {
261 wxPrintDialogData printDialogData(* g_printData);
262 wxGenericPrintDialog printerDialog(this, & printDialogData);
263
264 printerDialog.GetPrintDialogData().SetSetupDialog(true /*show print setup dialog*/);
265 printerDialog.ShowModal();
266
267 (*g_printData) = printerDialog.GetPrintDialogData().GetPrintData();
268 }
269
270 void MyFrame::OnPageSetupPS(wxCommandEvent& WXUNUSED(event))
271 {
272 (*g_pageSetupData) = * g_printData;
273
274 wxGenericPageSetupDialog pageSetupDialog(this, g_pageSetupData);
275 pageSetupDialog.ShowModal();
276
277 (*g_printData) = pageSetupDialog.GetPageSetupData().GetPrintData();
278 (*g_pageSetupData) = pageSetupDialog.GetPageSetupData();
279 }
280 #endif
281
282
283 void MyFrame::OnPrintAbout(wxCommandEvent& WXUNUSED(event))
284 {
285 (void)wxMessageBox(_T("wxWidgets printing demo\nAuthor: Julian Smart"),
286 _T("About wxWidgets printing demo"), wxOK|wxCENTRE);
287 }
288
289 void MyFrame::Draw(wxDC& dc)
290 {
291 dc.SetBackground(*wxWHITE_BRUSH);
292 dc.Clear();
293 dc.SetFont(wxGetApp().m_testFont);
294
295 dc.SetBackgroundMode(wxTRANSPARENT);
296
297 dc.SetBrush(* wxCYAN_BRUSH);
298 dc.SetPen(* wxRED_PEN);
299
300 dc.DrawRectangle(0, 30, 200, 100);
301
302 dc.DrawText( wxT("Rectangle 200 by 100"), 40, 40);
303
304 dc.DrawEllipse(50, 140, 100, 50);
305
306 dc.DrawText( wxT("Test message: this is in 10 point text"), 10, 180);
307
308 #if wxUSE_UNICODE
309 char *test = "Hebrew שלום -- Japanese (日本語)";
310 wxString tmp = wxConvUTF8.cMB2WC( test );
311 dc.DrawText( tmp, 10, 200 );
312 #endif
313
314 dc.SetPen(* wxBLACK_PEN);
315 dc.DrawLine(0, 0, 200, 200);
316 dc.DrawLine(200, 0, 0, 200);
317
318 wxIcon my_icon = wxICON(mondrian) ;
319
320 dc.DrawIcon( my_icon, 100, 100);
321 }
322
323 void MyFrame::OnSize(wxSizeEvent& event )
324 {
325 wxFrame::OnSize(event);
326 }
327
328 BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
329 EVT_MOUSE_EVENTS(MyCanvas::OnEvent)
330 END_EVENT_TABLE()
331
332 // Define a constructor for my canvas
333 MyCanvas::MyCanvas(wxFrame *frame, const wxPoint& pos, const wxSize& size, long style):
334 wxScrolledWindow(frame, wxID_ANY, pos, size, style)
335 {
336 SetBackgroundColour(* wxWHITE);
337 }
338
339 MyCanvas::~MyCanvas(void)
340 {
341 }
342
343 // Define the repainting behaviour
344 void MyCanvas::OnDraw(wxDC& dc)
345 {
346 frame->Draw(dc);
347 }
348
349 void MyCanvas::OnEvent(wxMouseEvent& WXUNUSED(event))
350 {
351 }
352
353 bool MyPrintout::OnPrintPage(int page)
354 {
355 wxDC *dc = GetDC();
356 if (dc)
357 {
358 if (page == 1)
359 DrawPageOne(dc);
360 else if (page == 2)
361 DrawPageTwo(dc);
362
363 dc->SetDeviceOrigin(0, 0);
364 dc->SetUserScale(1.0, 1.0);
365
366 wxChar buf[200];
367 wxSprintf(buf, wxT("PAGE %d"), page);
368 dc->DrawText(buf, 10, 10);
369
370 return true;
371 }
372 else
373 return false;
374 }
375
376 bool MyPrintout::OnBeginDocument(int startPage, int endPage)
377 {
378 if (!wxPrintout::OnBeginDocument(startPage, endPage))
379 return false;
380
381 return true;
382 }
383
384 void MyPrintout::GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo)
385 {
386 *minPage = 1;
387 *maxPage = 2;
388 *selPageFrom = 1;
389 *selPageTo = 2;
390 }
391
392 bool MyPrintout::HasPage(int pageNum)
393 {
394 return (pageNum == 1 || pageNum == 2);
395 }
396
397 void MyPrintout::DrawPageOne(wxDC *dc)
398 {
399 // You might use THIS code if you were scaling
400 // graphics of known size to fit on the page.
401
402 // We know the graphic is 200x200. If we didn't know this,
403 // we'd need to calculate it.
404 float maxX = 200;
405 float maxY = 200;
406
407 // Let's have at least 50 device units margin
408 float marginX = 50;
409 float marginY = 50;
410
411 // Add the margin to the graphic size
412 maxX += (2*marginX);
413 maxY += (2*marginY);
414
415 // Get the size of the DC in pixels
416 int w, h;
417 dc->GetSize(&w, &h);
418
419 // Calculate a suitable scaling factor
420 float scaleX=(float)(w/maxX);
421 float scaleY=(float)(h/maxY);
422
423 // Use x or y scaling factor, whichever fits on the DC
424 float actualScale = wxMin(scaleX,scaleY);
425
426 // Calculate the position on the DC for centring the graphic
427 float posX = (float)((w - (200*actualScale))/2.0);
428 float posY = (float)((h - (200*actualScale))/2.0);
429
430 // Set the scale and origin
431 dc->SetUserScale(actualScale, actualScale);
432 dc->SetDeviceOrigin( (long)posX, (long)posY );
433
434 frame->Draw(*dc);
435 }
436
437 void MyPrintout::DrawPageTwo(wxDC *dc)
438 {
439 // You might use THIS code to set the printer DC to ROUGHLY reflect
440 // the screen text size. This page also draws lines of actual length
441 // 5cm on the page.
442
443 // Get the logical pixels per inch of screen and printer
444 int ppiScreenX, ppiScreenY;
445 GetPPIScreen(&ppiScreenX, &ppiScreenY);
446 int ppiPrinterX, ppiPrinterY;
447 GetPPIPrinter(&ppiPrinterX, &ppiPrinterY);
448
449 // This scales the DC so that the printout roughly represents the
450 // the screen scaling. The text point size _should_ be the right size
451 // but in fact is too small for some reason. This is a detail that will
452 // need to be addressed at some point but can be fudged for the
453 // moment.
454 float scale = (float)((float)ppiPrinterX/(float)ppiScreenX);
455
456 // Now we have to check in case our real page size is reduced
457 // (e.g. because we're drawing to a print preview memory DC)
458 int pageWidth, pageHeight;
459 int w, h;
460 dc->GetSize(&w, &h);
461 GetPageSizePixels(&pageWidth, &pageHeight);
462
463 // If printer pageWidth == current DC width, then this doesn't
464 // change. But w might be the preview bitmap width, so scale down.
465 float overallScale = scale * (float)(w/(float)pageWidth);
466 dc->SetUserScale(overallScale, overallScale);
467
468 // Calculate conversion factor for converting millimetres into
469 // logical units.
470 // There are approx. 25.1 mm to the inch. There are ppi
471 // device units to the inch. Therefore 1 mm corresponds to
472 // ppi/25.1 device units. We also divide by the
473 // screen-to-printer scaling factor, because we need to
474 // unscale to pass logical units to DrawLine.
475
476 // Draw 50 mm by 50 mm L shape
477 float logUnitsFactor = (float)(ppiPrinterX/(scale*25.1));
478 float logUnits = (float)(50*logUnitsFactor);
479 dc->SetPen(* wxBLACK_PEN);
480 dc->DrawLine(50, 250, (long)(50.0 + logUnits), 250);
481 dc->DrawLine(50, 250, 50, (long)(250.0 + logUnits));
482
483 dc->SetBackgroundMode(wxTRANSPARENT);
484
485
486 { // GetTextExtent demo:
487 wxString words[7] = {_T("This "), _T("is "), _T("GetTextExtent "), _T("testing "), _T("string. "), _T("Enjoy "), _T("it!")};
488 long w, h;
489 long x = 200, y= 250;
490 wxFont fnt(15, wxSWISS, wxNORMAL, wxNORMAL);
491
492 dc->SetFont(fnt);
493
494 for (int i = 0; i < 7; i++)
495 {
496 wxString word = words[i];
497 word.Remove( word.Len()-1, 1 );
498 dc->GetTextExtent(word, &w, &h);
499 dc->DrawRectangle(x, y, w, h);
500 dc->GetTextExtent(words[i], &w, &h);
501 dc->DrawText(words[i], x, y);
502 x += w;
503 }
504
505 }
506
507 dc->SetFont(wxGetApp().m_testFont);
508
509 dc->DrawText(_T("Some test text"), 200, 300 );
510
511 // TESTING
512
513 int leftMargin = 20;
514 int rightMargin = 20;
515 int topMargin = 20;
516 int bottomMargin = 20;
517
518 int pageWidthMM, pageHeightMM;
519 GetPageSizeMM(&pageWidthMM, &pageHeightMM);
520
521 float leftMarginLogical = (float)(logUnitsFactor*leftMargin);
522 float topMarginLogical = (float)(logUnitsFactor*topMargin);
523 float bottomMarginLogical = (float)(logUnitsFactor*(pageHeightMM - bottomMargin));
524 float rightMarginLogical = (float)(logUnitsFactor*(pageWidthMM - rightMargin));
525
526 dc->SetPen(* wxRED_PEN);
527 dc->DrawLine( (long)leftMarginLogical, (long)topMarginLogical,
528 (long)rightMarginLogical, (long)topMarginLogical);
529 dc->DrawLine( (long)leftMarginLogical, (long)bottomMarginLogical,
530 (long)rightMarginLogical, (long)bottomMarginLogical);
531
532 WritePageHeader(this, dc, _T("A header"), logUnitsFactor);
533 }
534
535 // Writes a header on a page. Margin units are in millimetres.
536 bool WritePageHeader(wxPrintout *printout, wxDC *dc, wxChar *text, float mmToLogical)
537 {
538 /*
539 static wxFont *headerFont = (wxFont *) NULL;
540 if (!headerFont)
541 {
542 headerFont = wxTheFontList->FindOrCreateFont(16, wxSWISS, wxNORMAL, wxBOLD);
543 }
544 dc->SetFont(headerFont);
545 */
546
547 int pageWidthMM, pageHeightMM;
548
549 printout->GetPageSizeMM(&pageWidthMM, &pageHeightMM);
550
551 int leftMargin = 10;
552 int topMargin = 10;
553 int rightMargin = 10;
554
555 float leftMarginLogical = (float)(mmToLogical*leftMargin);
556 float topMarginLogical = (float)(mmToLogical*topMargin);
557 float rightMarginLogical = (float)(mmToLogical*(pageWidthMM - rightMargin));
558
559 long xExtent, yExtent;
560 dc->GetTextExtent(text, &xExtent, &yExtent);
561 float xPos = (float)(((((pageWidthMM - leftMargin - rightMargin)/2.0)+leftMargin)*mmToLogical) - (xExtent/2.0));
562 dc->DrawText(text, (long)xPos, (long)topMarginLogical);
563
564 dc->SetPen(* wxBLACK_PEN);
565 dc->DrawLine( (long)leftMarginLogical, (long)(topMarginLogical+yExtent),
566 (long)rightMarginLogical, (long)topMarginLogical+yExtent );
567
568 return true;
569 }