]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: printdlg.h | |
3 | // Purpose: wxPrintDialog, wxPageSetupDialog classes. | |
4 | // Use generic, PostScript version if no | |
5 | // platform-specific implementation. | |
6 | // Author: Stefan Csomor | |
7 | // Modified by: | |
8 | // Created: 1998-01-01 | |
9 | // RCS-ID: $Id$ | |
10 | // Copyright: (c) Stefan Csomor | |
11 | // Licence: wxWindows licence | |
12 | ///////////////////////////////////////////////////////////////////////////// | |
13 | ||
14 | #ifndef _WX_PRINTDLG_H_ | |
15 | #define _WX_PRINTDLG_H_ | |
16 | ||
17 | #include "wx/dialog.h" | |
18 | #include "wx/cmndata.h" | |
19 | ||
20 | /* | |
21 | * wxPrinterDialog | |
22 | * The common dialog for printing. | |
23 | */ | |
24 | ||
25 | class WXDLLEXPORT wxDC; | |
26 | class WXDLLEXPORT wxPrintDialog: public wxDialog | |
27 | { | |
28 | DECLARE_DYNAMIC_CLASS(wxPrintDialog) | |
29 | ||
30 | public: | |
31 | wxPrintDialog(); | |
32 | wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL); | |
33 | wxPrintDialog(wxWindow *parent, wxPrintData* data ); | |
34 | virtual ~wxPrintDialog(); | |
35 | ||
36 | bool Create(wxWindow *parent, wxPrintDialogData* data = NULL); | |
37 | virtual int ShowModal(); | |
38 | ||
39 | wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; } | |
40 | wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); } | |
41 | virtual wxDC *GetPrintDC(); | |
42 | ||
43 | private: | |
44 | wxPrintDialogData m_printDialogData; | |
45 | wxDC* m_printerDC; | |
46 | bool m_destroyDC; | |
47 | wxWindow* m_dialogParent; | |
48 | }; | |
49 | ||
50 | class WXDLLEXPORT wxPageSetupDialog: public wxDialog | |
51 | { | |
52 | DECLARE_DYNAMIC_CLASS(wxPageSetupDialog) | |
53 | ||
54 | public: | |
55 | wxPageSetupDialog(); | |
56 | wxPageSetupDialog(wxWindow *parent, wxPageSetupData *data = NULL); | |
57 | virtual ~wxPageSetupDialog(); | |
58 | ||
59 | bool Create(wxWindow *parent, wxPageSetupData *data = NULL); | |
60 | virtual int ShowModal(); | |
61 | ||
62 | virtual wxPageSetupData& GetPageSetupDialogData() { return m_pageSetupData; } | |
63 | private: | |
64 | wxPageSetupData m_pageSetupData; | |
65 | wxWindow* m_dialogParent; | |
66 | }; | |
67 | ||
68 | ||
69 | /* | |
70 | * wxMacPageMarginsDialog | |
71 | * A Mac dialog for setting the page margins separately from page setup since | |
72 | * (native) wxMacPageSetupDialog doesn't let you set margins. | |
73 | */ | |
74 | ||
75 | class WXDLLEXPORT wxMacPageMarginsDialog : public wxDialog | |
76 | { | |
77 | public: | |
78 | wxMacPageMarginsDialog(wxFrame* parent, wxPageSetupData* data); | |
79 | bool TransferToWindow(); | |
80 | bool TransferDataFromWindow(); | |
81 | virtual wxPageSetupData& GetPageSetupDialogData() { return *m_pageSetupDialogData; } | |
82 | ||
83 | private: | |
84 | wxPageSetupData* m_pageSetupDialogData; | |
85 | ||
86 | wxPoint m_MinMarginTopLeft; | |
87 | wxPoint m_MinMarginBottomRight; | |
88 | wxTextCtrl *m_LeftMargin; | |
89 | wxTextCtrl *m_TopMargin; | |
90 | wxTextCtrl *m_RightMargin; | |
91 | wxTextCtrl *m_BottomMargin; | |
92 | ||
93 | void GetMinMargins(); | |
94 | bool CheckValue(wxTextCtrl* textCtrl, int *value, int minValue, const wxString& name); | |
95 | ||
96 | private: | |
97 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacPageMarginsDialog) | |
98 | }; | |
99 | ||
100 | ||
101 | #endif // _WX_PRINTDLG_H_ |