/////////////////////////////////////////////////////////////////////////////
-// Name: printing.h
+// Name: samples/printing.h
+
// Purpose: Printing demo for wxWidgets
// Author: Julian Smart
// Modified by:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma interface
-#endif
-
// Define a new application
class MyApp: public wxApp
{
void OnPrintPreviewPS(wxCommandEvent& event);
void OnPageSetupPS(wxCommandEvent& event);
#endif
+#ifdef __WXMAC__
+ void OnPageMargins(wxCommandEvent& event);
+#endif
void OnExit(wxCommandEvent& event);
void OnPrintAbout(wxCommandEvent& event);
class MyPrintout: public wxPrintout
{
public:
- MyPrintout(wxChar *title = _T("My printout")):wxPrintout(title) {}
+ MyPrintout(const wxChar *title = _T("My printout")):wxPrintout(title) {}
bool OnPrintPage(int page);
bool HasPage(int page);
bool OnBeginDocument(int startPage, int endPage);
void GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo);
- void DrawPageOne(wxDC *dc);
- void DrawPageTwo(wxDC *dc);
+ void DrawPageOne();
+
+ void DrawPageTwo();
+
};
#define WXPRINT_QUIT 100
#define WXPRINT_ANGLEUP 110
#define WXPRINT_ANGLEDOWN 111
+
+#ifdef __WXMAC__
+ #define WXPRINT_PAGE_MARGINS 112
+#endif