1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Printing demo for wxWidgets
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
27 #if !wxUSE_PRINTING_ARCHITECTURE
28 #error "You must set wxUSE_PRINTING_ARCHITECTURE to 1 in setup.h, and recompile the library."
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
36 #include "wx/metafile.h"
38 #include "wx/printdlg.h"
42 #if wxTEST_POSTSCRIPT_IN_MSW
43 #include "wx/generic/printps.h"
44 #include "wx/generic/prntdlgg.h"
50 #include "mondrian.xpm"
54 MyFrame
*frame
= (MyFrame
*) NULL
;
55 // int orientation = wxPORTRAIT;
57 // Global print data, to remember settings during the session
58 wxPrintData
*g_printData
= (wxPrintData
*) NULL
;
60 // Global page setup data
61 wxPageSetupData
* g_pageSetupData
= (wxPageSetupData
*) NULL
;
66 // Writes a header on a page. Margin units are in millimetres.
67 bool WritePageHeader(wxPrintout
*printout
, wxDC
*dc
, wxChar
*text
, float mmToLogical
);
69 // The `main program' equivalent, creating the windows and returning the
71 bool MyApp::OnInit(void)
73 m_testFont
.Create(10, wxSWISS
, wxNORMAL
, wxNORMAL
);
75 g_printData
= new wxPrintData
;
76 g_pageSetupData
= new wxPageSetupDialogData
;
78 // Create the main frame window
79 frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets Printing Demo"), wxPoint(0, 0), wxSize(400, 400));
82 // Give it a status line
83 frame
->CreateStatusBar(2);
84 #endif // wxUSE_STATUSBAR
86 // Load icon and bitmap
87 frame
->SetIcon( wxICON( mondrian
) );
90 wxMenu
*file_menu
= new wxMenu
;
92 file_menu
->Append(WXPRINT_PRINT
, _T("&Print..."), _T("Print"));
93 file_menu
->Append(WXPRINT_PRINT_SETUP
, _T("Print &Setup..."), _T("Setup printer properties"));
94 file_menu
->Append(WXPRINT_PAGE_SETUP
, _T("Page Set&up..."), _T("Page setup"));
95 file_menu
->Append(WXPRINT_PREVIEW
, _T("Print Pre&view"), _T("Preview"));
99 wxAcceleratorEntry entries
[1];
100 entries
[0].Set(wxACCEL_CTRL
, (int) 'V', WXPRINT_PREVIEW
);
101 wxAcceleratorTable
accel(1, entries
);
102 frame
->SetAcceleratorTable(accel
);
105 #if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
106 file_menu
->AppendSeparator();
107 file_menu
->Append(WXPRINT_PRINT_PS
, _T("Print PostScript..."), _T("Print (PostScript)"));
108 file_menu
->Append(WXPRINT_PRINT_SETUP_PS
, _T("Print Setup PostScript..."), _T("Setup printer properties (PostScript)"));
109 file_menu
->Append(WXPRINT_PAGE_SETUP_PS
, _T("Page Setup PostScript..."), _T("Page setup (PostScript)"));
110 file_menu
->Append(WXPRINT_PREVIEW_PS
, _T("Print Preview PostScript"), _T("Preview (PostScript)"));
112 file_menu
->AppendSeparator();
113 file_menu
->Append(WXPRINT_QUIT
, _T("E&xit"), _T("Exit program"));
115 wxMenu
*help_menu
= new wxMenu
;
116 help_menu
->Append(WXPRINT_ABOUT
, _T("&About"), _T("About this demo"));
118 wxMenuBar
*menu_bar
= new wxMenuBar
;
120 menu_bar
->Append(file_menu
, _T("&File"));
121 menu_bar
->Append(help_menu
, _T("&Help"));
123 // Associate the menu bar with the frame
124 frame
->SetMenuBar(menu_bar
);
126 MyCanvas
*canvas
= new MyCanvas(frame
, wxPoint(0, 0), wxSize(100, 100), wxRETAINED
|wxHSCROLL
|wxVSCROLL
);
128 // Give it scrollbars: the virtual canvas is 20 * 50 = 1000 pixels in each direction
129 canvas
->SetScrollbars(20, 20, 50, 50);
131 frame
->canvas
= canvas
;
133 frame
->Centre(wxBOTH
);
137 frame
->SetStatusText(_T("Printing demo"));
138 #endif // wxUSE_STATUSBAR
148 delete g_pageSetupData
;
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
)
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
)
174 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
176 Close(true /*force closing*/);
179 void MyFrame::OnPrint(wxCommandEvent
& WXUNUSED(event
))
181 wxPrintDialogData
printDialogData(* g_printData
);
183 wxPrinter
printer(& printDialogData
);
184 MyPrintout
printout(_T("My printout"));
185 if (!printer
.Print(this, &printout
, true /*prompt*/))
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
);
190 wxMessageBox(_T("You canceled printing"), _T("Printing"), wxOK
);
194 (*g_printData
) = printer
.GetPrintDialogData().GetPrintData();
198 void MyFrame::OnPrintPreview(wxCommandEvent
& WXUNUSED(event
))
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
);
206 wxMessageBox(_T("There was a problem previewing.\nPerhaps your current printer is not set correctly?"), _T("Previewing"), wxOK
);
210 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, this, _T("Demo Print Preview"), wxPoint(100, 100), wxSize(600, 650));
211 frame
->Centre(wxBOTH
);
216 void MyFrame::OnPrintSetup(wxCommandEvent
& WXUNUSED(event
))
218 wxPrintDialogData
printDialogData(* g_printData
);
219 wxPrintDialog
printerDialog(this, & printDialogData
);
221 printerDialog
.GetPrintDialogData().SetSetupDialog(true /*show print setup dialog*/);
222 printerDialog
.ShowModal();
224 (*g_printData
) = printerDialog
.GetPrintDialogData().GetPrintData();
227 void MyFrame::OnPageSetup(wxCommandEvent
& WXUNUSED(event
))
229 (*g_pageSetupData
) = * g_printData
;
231 wxPageSetupDialog
pageSetupDialog(this, g_pageSetupData
);
232 pageSetupDialog
.ShowModal();
234 (*g_printData
) = pageSetupDialog
.GetPageSetupData().GetPrintData();
235 (*g_pageSetupData
) = pageSetupDialog
.GetPageSetupData();
238 #if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
239 void MyFrame::OnPrintPS(wxCommandEvent
& WXUNUSED(event
))
241 wxPostScriptPrinter
printer(g_printData
);
242 MyPrintout
printout(_T("My printout"));
243 printer
.Print(this, &printout
, true/*prompt*/);
245 (*g_printData
) = printer
.GetPrintData();
248 void MyFrame::OnPrintPreviewPS(wxCommandEvent
& WXUNUSED(event
))
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
);
259 void MyFrame::OnPrintSetupPS(wxCommandEvent
& WXUNUSED(event
))
261 wxPrintDialogData
printDialogData(* g_printData
);
262 wxGenericPrintDialog
printerDialog(this, & printDialogData
);
264 printerDialog
.GetPrintDialogData().SetSetupDialog(true /*show print setup dialog*/);
265 printerDialog
.ShowModal();
267 (*g_printData
) = printerDialog
.GetPrintDialogData().GetPrintData();
270 void MyFrame::OnPageSetupPS(wxCommandEvent
& WXUNUSED(event
))
272 (*g_pageSetupData
) = * g_printData
;
274 wxGenericPageSetupDialog
pageSetupDialog(this, g_pageSetupData
);
275 pageSetupDialog
.ShowModal();
277 (*g_printData
) = pageSetupDialog
.GetPageSetupData().GetPrintData();
278 (*g_pageSetupData
) = pageSetupDialog
.GetPageSetupData();
283 void MyFrame::OnPrintAbout(wxCommandEvent
& WXUNUSED(event
))
285 (void)wxMessageBox(_T("wxWidgets printing demo\nAuthor: Julian Smart"),
286 _T("About wxWidgets printing demo"), wxOK
|wxCENTRE
);
289 void MyFrame::Draw(wxDC
& dc
)
291 dc
.SetBackground(*wxWHITE_BRUSH
);
293 dc
.SetFont(wxGetApp().m_testFont
);
295 dc
.SetBackgroundMode(wxTRANSPARENT
);
297 dc
.SetBrush(* wxCYAN_BRUSH
);
298 dc
.SetPen(* wxRED_PEN
);
300 dc
.DrawRectangle(0, 30, 200, 100);
302 dc
.DrawText( wxT("Rectangle 200 by 100"), 40, 40);
304 dc
.DrawEllipse(50, 140, 100, 50);
306 dc
.DrawText( wxT("Test message: this is in 10 point text"), 10, 180);
309 char *test
= "Hebrew שלום -- Japanese (日本語)";
310 wxString tmp
= wxConvUTF8
.cMB2WC( test
);
311 dc
.DrawText( tmp
, 10, 200 );
314 dc
.SetPen(* wxBLACK_PEN
);
315 dc
.DrawLine(0, 0, 200, 200);
316 dc
.DrawLine(200, 0, 0, 200);
318 wxIcon my_icon
= wxICON(mondrian
) ;
320 dc
.DrawIcon( my_icon
, 100, 100);
323 void MyFrame::OnSize(wxSizeEvent
& event
)
325 wxFrame::OnSize(event
);
328 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
329 EVT_MOUSE_EVENTS(MyCanvas::OnEvent
)
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
)
336 SetBackgroundColour(* wxWHITE
);
339 // Define the repainting behaviour
340 void MyCanvas::OnDraw(wxDC
& dc
)
345 void MyCanvas::OnEvent(wxMouseEvent
& WXUNUSED(event
))
349 bool MyPrintout::OnPrintPage(int page
)
359 dc
->SetDeviceOrigin(0, 0);
360 dc
->SetUserScale(1.0, 1.0);
363 wxSprintf(buf
, wxT("PAGE %d"), page
);
364 dc
->DrawText(buf
, 10, 10);
372 bool MyPrintout::OnBeginDocument(int startPage
, int endPage
)
374 if (!wxPrintout::OnBeginDocument(startPage
, endPage
))
380 void MyPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
)
388 bool MyPrintout::HasPage(int pageNum
)
390 return (pageNum
== 1 || pageNum
== 2);
393 void MyPrintout::DrawPageOne(wxDC
*dc
)
395 // You might use THIS code if you were scaling
396 // graphics of known size to fit on the page.
398 // We know the graphic is 200x200. If we didn't know this,
399 // we'd need to calculate it.
403 // Let's have at least 50 device units margin
407 // Add the margin to the graphic size
411 // Get the size of the DC in pixels
415 // Calculate a suitable scaling factor
416 float scaleX
=(float)(w
/maxX
);
417 float scaleY
=(float)(h
/maxY
);
419 // Use x or y scaling factor, whichever fits on the DC
420 float actualScale
= wxMin(scaleX
,scaleY
);
422 // Calculate the position on the DC for centring the graphic
423 float posX
= (float)((w
- (200*actualScale
))/2.0);
424 float posY
= (float)((h
- (200*actualScale
))/2.0);
426 // Set the scale and origin
427 dc
->SetUserScale(actualScale
, actualScale
);
428 dc
->SetDeviceOrigin( (long)posX
, (long)posY
);
433 void MyPrintout::DrawPageTwo(wxDC
*dc
)
435 // You might use THIS code to set the printer DC to ROUGHLY reflect
436 // the screen text size. This page also draws lines of actual length
439 // Get the logical pixels per inch of screen and printer
440 int ppiScreenX
, ppiScreenY
;
441 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
442 int ppiPrinterX
, ppiPrinterY
;
443 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
445 // This scales the DC so that the printout roughly represents the
446 // the screen scaling. The text point size _should_ be the right size
447 // but in fact is too small for some reason. This is a detail that will
448 // need to be addressed at some point but can be fudged for the
450 float scale
= (float)((float)ppiPrinterX
/(float)ppiScreenX
);
452 // Now we have to check in case our real page size is reduced
453 // (e.g. because we're drawing to a print preview memory DC)
454 int pageWidth
, pageHeight
;
457 GetPageSizePixels(&pageWidth
, &pageHeight
);
459 // If printer pageWidth == current DC width, then this doesn't
460 // change. But w might be the preview bitmap width, so scale down.
461 float overallScale
= scale
* (float)(w
/(float)pageWidth
);
462 dc
->SetUserScale(overallScale
, overallScale
);
464 // Calculate conversion factor for converting millimetres into
466 // There are approx. 25.1 mm to the inch. There are ppi
467 // device units to the inch. Therefore 1 mm corresponds to
468 // ppi/25.1 device units. We also divide by the
469 // screen-to-printer scaling factor, because we need to
470 // unscale to pass logical units to DrawLine.
472 // Draw 50 mm by 50 mm L shape
473 float logUnitsFactor
= (float)(ppiPrinterX
/(scale
*25.1));
474 float logUnits
= (float)(50*logUnitsFactor
);
475 dc
->SetPen(* wxBLACK_PEN
);
476 dc
->DrawLine(50, 250, (long)(50.0 + logUnits
), 250);
477 dc
->DrawLine(50, 250, 50, (long)(250.0 + logUnits
));
479 dc
->SetBackgroundMode(wxTRANSPARENT
);
482 { // GetTextExtent demo:
483 wxString words
[7] = {_T("This "), _T("is "), _T("GetTextExtent "), _T("testing "), _T("string. "), _T("Enjoy "), _T("it!")};
485 long x
= 200, y
= 250;
486 wxFont
fnt(15, wxSWISS
, wxNORMAL
, wxNORMAL
);
490 for (int i
= 0; i
< 7; i
++)
492 wxString word
= words
[i
];
493 word
.Remove( word
.Len()-1, 1 );
494 dc
->GetTextExtent(word
, &w
, &h
);
495 dc
->DrawRectangle(x
, y
, w
, h
);
496 dc
->GetTextExtent(words
[i
], &w
, &h
);
497 dc
->DrawText(words
[i
], x
, y
);
503 dc
->SetFont(wxGetApp().m_testFont
);
505 dc
->DrawText(_T("Some test text"), 200, 300 );
510 int rightMargin
= 20;
512 int bottomMargin
= 20;
514 int pageWidthMM
, pageHeightMM
;
515 GetPageSizeMM(&pageWidthMM
, &pageHeightMM
);
517 float leftMarginLogical
= (float)(logUnitsFactor
*leftMargin
);
518 float topMarginLogical
= (float)(logUnitsFactor
*topMargin
);
519 float bottomMarginLogical
= (float)(logUnitsFactor
*(pageHeightMM
- bottomMargin
));
520 float rightMarginLogical
= (float)(logUnitsFactor
*(pageWidthMM
- rightMargin
));
522 dc
->SetPen(* wxRED_PEN
);
523 dc
->DrawLine( (long)leftMarginLogical
, (long)topMarginLogical
,
524 (long)rightMarginLogical
, (long)topMarginLogical
);
525 dc
->DrawLine( (long)leftMarginLogical
, (long)bottomMarginLogical
,
526 (long)rightMarginLogical
, (long)bottomMarginLogical
);
528 WritePageHeader(this, dc
, _T("A header"), logUnitsFactor
);
531 // Writes a header on a page. Margin units are in millimetres.
532 bool WritePageHeader(wxPrintout
*printout
, wxDC
*dc
, wxChar
*text
, float mmToLogical
)
535 static wxFont *headerFont = (wxFont *) NULL;
538 headerFont = wxTheFontList->FindOrCreateFont(16, wxSWISS, wxNORMAL, wxBOLD);
540 dc->SetFont(headerFont);
543 int pageWidthMM
, pageHeightMM
;
545 printout
->GetPageSizeMM(&pageWidthMM
, &pageHeightMM
);
546 wxUnusedVar(pageHeightMM
);
550 int rightMargin
= 10;
552 float leftMarginLogical
= (float)(mmToLogical
*leftMargin
);
553 float topMarginLogical
= (float)(mmToLogical
*topMargin
);
554 float rightMarginLogical
= (float)(mmToLogical
*(pageWidthMM
- rightMargin
));
556 long xExtent
, yExtent
;
557 dc
->GetTextExtent(text
, &xExtent
, &yExtent
);
558 float xPos
= (float)(((((pageWidthMM
- leftMargin
- rightMargin
)/2.0)+leftMargin
)*mmToLogical
) - (xExtent
/2.0));
559 dc
->DrawText(text
, (long)xPos
, (long)topMarginLogical
);
561 dc
->SetPen(* wxBLACK_PEN
);
562 dc
->DrawLine( (long)leftMarginLogical
, (long)(topMarginLogical
+yExtent
),
563 (long)rightMarginLogical
, (long)topMarginLogical
+yExtent
);