]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printdlg.h | |
3 | // Purpose: wxPrintDialog, wxPageSetupDialog classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_PRINTDLG_H_ |
13 | #define _WX_PRINTDLG_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
2bda0e17 KB |
16 | #pragma interface "printdlg.h" |
17 | #endif | |
18 | ||
d427503c VZ |
19 | #if wxUSE_PRINTING_ARCHITECTURE |
20 | ||
2bda0e17 KB |
21 | #include "wx/dialog.h" |
22 | #include "wx/cmndata.h" | |
8850cbd3 | 23 | #include "wx/prntbase.h" |
c061373d | 24 | #include "wx/printdlg.h" |
2bda0e17 | 25 | |
2bda0e17 | 26 | class WXDLLEXPORT wxDC; |
103aec29 | 27 | |
8850cbd3 RR |
28 | //---------------------------------------------------------------------------- |
29 | // wxWindowsPrintNativeData | |
30 | //---------------------------------------------------------------------------- | |
31 | ||
32 | class WXDLLEXPORT wxWindowsPrintNativeData: public wxPrintNativeDataBase | |
33 | { | |
34 | public: | |
35 | wxWindowsPrintNativeData(); | |
36 | virtual ~wxWindowsPrintNativeData(); | |
37 | ||
fd64de59 RR |
38 | virtual bool TransferTo( wxPrintData &data ); |
39 | virtual bool TransferFrom( const wxPrintData &data ); | |
8850cbd3 RR |
40 | |
41 | virtual bool Ok() const; | |
42 | ||
fd64de59 RR |
43 | void* GetDevMode() const { return m_devMode; } |
44 | void SetDevMode(void* data) { m_devMode = data; } | |
45 | void* GetDevNames() const { return m_devNames; } | |
46 | void SetDevNames(void* data) { m_devNames = data; } | |
8850cbd3 RR |
47 | |
48 | private: | |
fd64de59 RR |
49 | void* m_devMode; |
50 | void* m_devNames; | |
8850cbd3 RR |
51 | |
52 | private: | |
53 | DECLARE_DYNAMIC_CLASS(wxWindowsPrintNativeData) | |
54 | }; | |
55 | ||
103aec29 VZ |
56 | // --------------------------------------------------------------------------- |
57 | // wxPrinterDialog: the common dialog for printing. | |
58 | // --------------------------------------------------------------------------- | |
59 | ||
c061373d | 60 | class WXDLLEXPORT wxWindowsPrintDialog : public wxPrintDialogBase |
2bda0e17 | 61 | { |
7bcb11d3 | 62 | public: |
c061373d RR |
63 | wxWindowsPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL); |
64 | wxWindowsPrintDialog(wxWindow *parent, wxPrintData* data); | |
65 | virtual ~wxWindowsPrintDialog(); | |
2bda0e17 | 66 | |
103aec29 VZ |
67 | bool Create(wxWindow *parent, wxPrintDialogData* data = NULL); |
68 | virtual int ShowModal(); | |
2bda0e17 | 69 | |
103aec29 VZ |
70 | wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; } |
71 | wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); } | |
72 | virtual wxDC *GetPrintDC(); | |
7bcb11d3 | 73 | |
103aec29 VZ |
74 | wxPrintDialogData m_printDialogData; |
75 | wxDC* m_printerDC; | |
76 | bool m_destroyDC; | |
77 | wxWindow* m_dialogParent; | |
22f3361e | 78 | |
c061373d RR |
79 | private: |
80 | DECLARE_NO_COPY_CLASS(wxWindowsPrintDialog) | |
81 | DECLARE_CLASS(wxWindowsPrintDialog) | |
2bda0e17 KB |
82 | }; |
83 | ||
84 | class WXDLLEXPORT wxPageSetupDialog: public wxDialog | |
85 | { | |
103aec29 | 86 | DECLARE_DYNAMIC_CLASS(wxPageSetupDialog) |
2bda0e17 | 87 | |
103aec29 VZ |
88 | public: |
89 | wxPageSetupDialog(); | |
90 | wxPageSetupDialog(wxWindow *parent, wxPageSetupData *data = NULL); | |
91 | virtual ~wxPageSetupDialog(); | |
92 | ||
93 | bool Create(wxWindow *parent, wxPageSetupData *data = NULL); | |
94 | virtual int ShowModal(); | |
2bda0e17 | 95 | |
103aec29 | 96 | wxPageSetupData& GetPageSetupData() { return m_pageSetupData; } |
2bda0e17 | 97 | |
103aec29 VZ |
98 | private: |
99 | wxPageSetupData m_pageSetupData; | |
100 | wxWindow* m_dialogParent; | |
22f3361e VZ |
101 | |
102 | DECLARE_NO_COPY_CLASS(wxPageSetupDialog) | |
2bda0e17 KB |
103 | }; |
104 | ||
d427503c VZ |
105 | #endif // wxUSE_PRINTING_ARCHITECTURE |
106 | ||
2bda0e17 | 107 | #endif |
bbcdf8bc | 108 | // _WX_PRINTDLG_H_ |