12#include "wx/metafile.h"
14#include "wx/printdlg.h"
22 MyPrintout(
const wxChar *title = _T(
"My printout")):wxPrintout(title) {}
23 bool OnPrintPage(
int page);
24 bool HasPage(
int page);
25 bool OnBeginDocument(
int startPage,
int endPage);
26 void GetPageInfo(
int *minPage,
int *maxPage,
int *selPageFrom,
int *selPageTo);
34#define WXPRINT_QUIT 100
35#define WXPRINT_PRINT 101
36#define WXPRINT_PAGE_SETUP 103
37#define WXPRINT_PREVIEW 104
39#define WXPRINT_PRINT_PS 105
40#define WXPRINT_PAGE_SETUP_PS 107
41#define WXPRINT_PREVIEW_PS 108
43#define WXPRINT_ABOUT 109
45#define WXPRINT_ANGLEUP 110
46#define WXPRINT_ANGLEDOWN 111
49 #define WXPRINT_PAGE_MARGINS 112
Definition: printing.h:20