X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..a8cb1d29e7fe349142d8d6be9fc9afe986340611:/samples/printing/printing.h diff --git a/samples/printing/printing.h b/samples/printing/printing.h index 5c948a731f..d9df02dfbb 100644 --- a/samples/printing/printing.h +++ b/samples/printing/printing.h @@ -17,10 +17,15 @@ class MyApp: public wxApp { public: - MyApp(void) ; - bool OnInit(void); + MyApp() ; + bool OnInit(); + int OnExit(); + + wxFont* m_testFont; }; +DECLARE_APP(MyApp) + class MyCanvas; // Define a new canvas and frame @@ -30,8 +35,6 @@ class MyFrame: public wxFrame MyCanvas *canvas; MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size); - bool OnClose(void); - void Draw(wxDC& dc); void OnSize(wxSizeEvent& event); @@ -39,10 +42,13 @@ class MyFrame: public wxFrame void OnPrintPreview(wxCommandEvent& event); void OnPrintSetup(wxCommandEvent& event); void OnPageSetup(wxCommandEvent& event); +#if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW void OnPrintPS(wxCommandEvent& event); void OnPrintPreviewPS(wxCommandEvent& event); void OnPrintSetupPS(wxCommandEvent& event); void OnPageSetupPS(wxCommandEvent& event); +#endif + void OnExit(wxCommandEvent& event); void OnPrintAbout(wxCommandEvent& event); DECLARE_EVENT_TABLE()