]>
git.saurik.com Git - wxWidgets.git/blob - samples/printing/printing.h
b30050c231efed17db573c957eb9a9dcb595760a
3 * Purpose: Printing demo for wxWindows class library
7 * Copyright: (c) 1995, AIAI, University of Edinburgh
10 /* sccsid[] = "%W% %G%" */
16 // Define a new application
17 class MyApp
: public wxApp
30 // Define a new canvas and frame
31 class MyFrame
: public wxFrame
35 MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
41 void OnSize(wxSizeEvent
& event
);
42 void OnPrint(wxCommandEvent
& event
);
43 void OnPrintPreview(wxCommandEvent
& event
);
44 void OnPrintSetup(wxCommandEvent
& event
);
45 void OnPageSetup(wxCommandEvent
& event
);
46 void OnPrintPS(wxCommandEvent
& event
);
47 void OnPrintPreviewPS(wxCommandEvent
& event
);
48 void OnPrintSetupPS(wxCommandEvent
& event
);
49 void OnPageSetupPS(wxCommandEvent
& event
);
50 void OnExit(wxCommandEvent
& event
);
51 void OnPrintAbout(wxCommandEvent
& event
);
55 // Define a new canvas which can receive some events
56 class MyCanvas
: public wxScrolledWindow
59 MyCanvas(wxFrame
*frame
, const wxPoint
& pos
, const wxSize
& size
, long style
= wxRETAINED
);
62 virtual void OnDraw(wxDC
& dc
);
63 void OnEvent(wxMouseEvent
& event
);
68 class MyPrintout
: public wxPrintout
71 MyPrintout(char *title
= "My printout"):wxPrintout(title
) {}
72 bool OnPrintPage(int page
);
73 bool HasPage(int page
);
74 bool OnBeginDocument(int startPage
, int endPage
);
75 void GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
);
77 void DrawPageOne(wxDC
*dc
);
78 void DrawPageTwo(wxDC
*dc
);
81 #define WXPRINT_QUIT 100
82 #define WXPRINT_PRINT 101
83 #define WXPRINT_PRINT_SETUP 102
84 #define WXPRINT_PAGE_SETUP 103
85 #define WXPRINT_PREVIEW 104
87 #define WXPRINT_PRINT_PS 105
88 #define WXPRINT_PRINT_SETUP_PS 106
89 #define WXPRINT_PAGE_SETUP_PS 107
90 #define WXPRINT_PREVIEW_PS 108
92 #define WXPRINT_ABOUT 109