X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ca8b470a416c2efdbcd554bc697b7126e0657af5..814028444d682b23af3809227cd485f4bebc1286:/samples/printing/printing.h diff --git a/samples/printing/printing.h b/samples/printing/printing.h index 264a49c3b4..a138d541b4 100644 --- a/samples/printing/printing.h +++ b/samples/printing/printing.h @@ -58,11 +58,14 @@ public: void OnPageMargins(wxCommandEvent& event); #endif + void OnPreviewFrameModalityKind(wxCommandEvent& event); + void OnExit(wxCommandEvent& event); void OnPrintAbout(wxCommandEvent& event); private: MyCanvas* m_canvas; + wxPreviewFrameModalityKind m_previewModality; DECLARE_EVENT_TABLE() }; @@ -104,16 +107,22 @@ private: // constants: +enum +{ + WXPRINT_PAGE_SETUP = 103, -#define WXPRINT_PAGE_SETUP 103 - -#define WXPRINT_PRINT_PS 105 -#define WXPRINT_PAGE_SETUP_PS 107 -#define WXPRINT_PREVIEW_PS 108 + WXPRINT_PRINT_PS, + WXPRINT_PAGE_SETUP_PS, + WXPRINT_PREVIEW_PS, -#define WXPRINT_ANGLEUP 110 -#define WXPRINT_ANGLEDOWN 111 + WXPRINT_ANGLEUP, + WXPRINT_ANGLEDOWN, #ifdef __WXMAC__ - #define WXPRINT_PAGE_MARGINS 112 + WXPRINT_PAGE_MARGINS, #endif + + WXPRINT_FRAME_MODAL_APP, + WXPRINT_FRAME_MODAL_WIN, + WXPRINT_FRAME_MODAL_NON +};