1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Base classes for printing framework
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PRNTBASEH__
13 #define _WX_PRNTBASEH__
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "prntbase.h"
21 #if wxUSE_PRINTING_ARCHITECTURE
24 #include "wx/cmndata.h"
26 #include "wx/scrolwin.h"
27 #include "wx/dialog.h"
30 class WXDLLEXPORT wxDC
;
31 class WXDLLEXPORT wxButton
;
32 class WXDLLEXPORT wxChoice
;
33 class WXDLLEXPORT wxPrintout
;
34 class WXDLLEXPORT wxPrinterBase
;
35 class WXDLLEXPORT wxPrintDialog
;
36 class WXDLLEXPORT wxPrintPreviewBase
;
37 class WXDLLEXPORT wxPreviewCanvas
;
38 class WXDLLEXPORT wxPreviewControlBar
;
39 class WXDLLEXPORT wxPreviewFrame
;
44 wxPRINTER_NO_ERROR
= 0,
51 * Represents the printer: manages printing a wxPrintout object
54 class WXDLLEXPORT wxPrinterBase
: public wxObject
57 wxPrinterBase(wxPrintDialogData
*data
= (wxPrintDialogData
*) NULL
);
58 virtual ~wxPrinterBase();
60 virtual wxWindow
*CreateAbortWindow(wxWindow
*parent
, wxPrintout
*printout
);
61 virtual void ReportError(wxWindow
*parent
, wxPrintout
*printout
, const wxString
& message
);
63 wxPrintDialogData
& GetPrintDialogData() const
64 { return (wxPrintDialogData
&) m_printDialogData
; }
65 bool GetAbort() const { return sm_abortIt
; }
67 static wxPrinterError
GetLastError() { return sm_lastError
; }
69 ///////////////////////////////////////////////////////////////////////////
72 virtual bool Setup(wxWindow
*parent
) = 0;
73 virtual bool Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
= TRUE
) = 0;
74 virtual wxDC
* PrintDialog(wxWindow
*parent
) = 0;
77 wxPrintDialogData m_printDialogData
;
78 wxPrintout
* m_currentPrintout
;
80 static wxPrinterError sm_lastError
;
83 static wxWindow
* sm_abortWindow
;
84 static bool sm_abortIt
;
87 DECLARE_CLASS(wxPrinterBase
)
88 DECLARE_NO_COPY_CLASS(wxPrinterBase
)
93 * Represents an object via which a document may be printed.
94 * The programmer derives from this, overrides (at least) OnPrintPage,
95 * and passes it to a wxPrinter object for printing, or a wxPrintPreview
96 * object for previewing.
99 class WXDLLEXPORT wxPrintout
: public wxObject
102 wxPrintout(const wxString
& title
= wxT("Printout"));
103 virtual ~wxPrintout();
105 virtual bool OnBeginDocument(int startPage
, int endPage
);
106 virtual void OnEndDocument();
107 virtual void OnBeginPrinting();
108 virtual void OnEndPrinting();
110 // Guaranteed to be before any other functions are called
111 virtual void OnPreparePrinting() { }
113 virtual bool HasPage(int page
);
114 virtual bool OnPrintPage(int page
) = 0;
115 virtual void GetPageInfo(int *minPage
, int *maxPage
, int *pageFrom
, int *pageTo
);
117 virtual wxString
GetTitle() const { return m_printoutTitle
; }
119 wxDC
*GetDC() const { return m_printoutDC
; }
120 void SetDC(wxDC
*dc
) { m_printoutDC
= dc
; }
121 void SetPageSizePixels(int w
, int h
) { m_pageWidthPixels
= w
; m_pageHeightPixels
= h
; }
122 void GetPageSizePixels(int *w
, int *h
) const { *w
= m_pageWidthPixels
; *h
= m_pageHeightPixels
; }
123 void SetPageSizeMM(int w
, int h
) { m_pageWidthMM
= w
; m_pageHeightMM
= h
; }
124 void GetPageSizeMM(int *w
, int *h
) const { *w
= m_pageWidthMM
; *h
= m_pageHeightMM
; }
126 void SetPPIScreen(int x
, int y
) { m_PPIScreenX
= x
; m_PPIScreenY
= y
; }
127 void GetPPIScreen(int *x
, int *y
) const { *x
= m_PPIScreenX
; *y
= m_PPIScreenY
; }
128 void SetPPIPrinter(int x
, int y
) { m_PPIPrinterX
= x
; m_PPIPrinterY
= y
; }
129 void GetPPIPrinter(int *x
, int *y
) const { *x
= m_PPIPrinterX
; *y
= m_PPIPrinterY
; }
131 virtual bool IsPreview() const { return m_isPreview
; }
133 virtual void SetIsPreview(bool p
) { m_isPreview
= p
; }
136 wxString m_printoutTitle
;
139 int m_pageWidthPixels
;
140 int m_pageHeightPixels
;
153 DECLARE_ABSTRACT_CLASS(wxPrintout
)
154 DECLARE_NO_COPY_CLASS(wxPrintout
)
159 * Canvas upon which a preview is drawn.
162 class WXDLLEXPORT wxPreviewCanvas
: public wxScrolledWindow
165 wxPreviewCanvas(wxPrintPreviewBase
*preview
,
167 const wxPoint
& pos
= wxDefaultPosition
,
168 const wxSize
& size
= wxDefaultSize
,
170 const wxString
& name
= wxT("canvas"));
173 void OnPaint(wxPaintEvent
& event
);
175 // Responds to colour changes
176 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
179 wxPrintPreviewBase
* m_printPreview
;
181 DECLARE_CLASS(wxPreviewCanvas
)
182 DECLARE_EVENT_TABLE()
183 DECLARE_NO_COPY_CLASS(wxPreviewCanvas
)
188 * Default frame for showing preview.
191 class WXDLLEXPORT wxPreviewFrame
: public wxFrame
194 wxPreviewFrame(wxPrintPreviewBase
*preview
,
196 const wxString
& title
= wxT("Print Preview"),
197 const wxPoint
& pos
= wxDefaultPosition
,
198 const wxSize
& size
= wxDefaultSize
,
199 long style
= wxDEFAULT_FRAME_STYLE
,
200 const wxString
& name
= wxT("frame"));
203 void OnCloseWindow(wxCloseEvent
& event
);
204 virtual void Initialize();
205 virtual void CreateCanvas();
206 virtual void CreateControlBar();
208 wxWindow
* m_previewCanvas
;
209 wxPreviewControlBar
* m_controlBar
;
210 wxPrintPreviewBase
* m_printPreview
;
213 DECLARE_CLASS(wxPreviewFrame
)
214 DECLARE_EVENT_TABLE()
215 DECLARE_NO_COPY_CLASS(wxPreviewFrame
)
219 * wxPreviewControlBar
220 * A panel with buttons for controlling a print preview.
221 * The programmer may wish to use other means for controlling
225 #define wxPREVIEW_PRINT 1
226 #define wxPREVIEW_PREVIOUS 2
227 #define wxPREVIEW_NEXT 4
228 #define wxPREVIEW_ZOOM 8
229 #define wxPREVIEW_FIRST 16
230 #define wxPREVIEW_LAST 32
231 #define wxPREVIEW_GOTO 64
233 #define wxPREVIEW_DEFAULT wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM\
234 |wxPREVIEW_FIRST|wxPREVIEW_GOTO|wxPREVIEW_LAST
237 #define wxID_PREVIEW_CLOSE 1
238 #define wxID_PREVIEW_NEXT 2
239 #define wxID_PREVIEW_PREVIOUS 3
240 #define wxID_PREVIEW_PRINT 4
241 #define wxID_PREVIEW_ZOOM 5
242 #define wxID_PREVIEW_FIRST 6
243 #define wxID_PREVIEW_LAST 7
244 #define wxID_PREVIEW_GOTO 8
246 class WXDLLEXPORT wxPreviewControlBar
: public wxPanel
248 DECLARE_CLASS(wxPreviewControlBar
)
251 wxPreviewControlBar(wxPrintPreviewBase
*preview
,
254 const wxPoint
& pos
= wxDefaultPosition
,
255 const wxSize
& size
= wxDefaultSize
,
257 const wxString
& name
= wxT("panel"));
258 ~wxPreviewControlBar();
260 virtual void CreateButtons();
261 virtual void SetZoomControl(int zoom
);
262 virtual int GetZoomControl();
263 virtual wxPrintPreviewBase
*GetPrintPreview() const
264 { return m_printPreview
; }
266 void OnPrint(wxCommandEvent
& event
);
267 void OnWindowClose(wxCommandEvent
& event
);
273 void OnNextButton(wxCommandEvent
& WXUNUSED(event
)) { OnNext(); }
274 void OnPreviousButton(wxCommandEvent
& WXUNUSED(event
)) { OnPrevious(); }
275 void OnFirstButton(wxCommandEvent
& WXUNUSED(event
)) { OnFirst(); }
276 void OnLastButton(wxCommandEvent
& WXUNUSED(event
)) { OnLast(); }
277 void OnGotoButton(wxCommandEvent
& WXUNUSED(event
)) { OnGoto(); }
278 void OnChar(wxKeyEvent
&event
);
279 void OnZoom(wxCommandEvent
& event
);
280 void OnPaint(wxPaintEvent
& event
);
283 wxPrintPreviewBase
* m_printPreview
;
284 wxButton
* m_closeButton
;
285 wxButton
* m_nextPageButton
;
286 wxButton
* m_previousPageButton
;
287 wxButton
* m_printButton
;
288 wxChoice
* m_zoomControl
;
289 wxButton
* m_firstPageButton
;
290 wxButton
* m_lastPageButton
;
291 wxButton
* m_gotoPageButton
;
295 DECLARE_EVENT_TABLE()
296 DECLARE_NO_COPY_CLASS(wxPreviewControlBar
)
301 * Programmer creates an object of this class to preview a wxPrintout.
304 class WXDLLEXPORT wxPrintPreviewBase
: public wxObject
306 DECLARE_CLASS(wxPrintPreviewBase
)
309 wxPrintPreviewBase(wxPrintout
*printout
,
310 wxPrintout
*printoutForPrinting
= (wxPrintout
*) NULL
,
311 wxPrintDialogData
*data
= (wxPrintDialogData
*) NULL
);
312 wxPrintPreviewBase(wxPrintout
*printout
,
313 wxPrintout
*printoutForPrinting
,
315 virtual ~wxPrintPreviewBase();
317 virtual bool SetCurrentPage(int pageNum
);
318 int GetCurrentPage() const { return m_currentPage
; };
320 void SetPrintout(wxPrintout
*printout
) { m_previewPrintout
= printout
; };
321 wxPrintout
*GetPrintout() const { return m_previewPrintout
; };
322 wxPrintout
*GetPrintoutForPrinting() const { return m_printPrintout
; };
324 void SetFrame(wxFrame
*frame
) { m_previewFrame
= frame
; };
325 void SetCanvas(wxWindow
*canvas
) { m_previewCanvas
= canvas
; };
327 virtual wxFrame
*GetFrame() const { return m_previewFrame
; }
328 virtual wxWindow
*GetCanvas() const { return m_previewCanvas
; }
330 // The preview canvas should call this from OnPaint
331 virtual bool PaintPage(wxWindow
*canvas
, wxDC
& dc
);
333 // This draws a blank page onto the preview canvas
334 virtual bool DrawBlankPage(wxWindow
*canvas
, wxDC
& dc
);
336 // This is called by wxPrintPreview to render a page into a wxMemoryDC.
337 virtual bool RenderPage(int pageNum
);
339 wxPrintDialogData
& GetPrintDialogData() { return m_printDialogData
; }
341 virtual void SetZoom(int percent
);
342 int GetZoom() const { return m_currentZoom
; };
344 int GetMaxPage() const { return m_maxPage
; }
345 int GetMinPage() const { return m_minPage
; }
347 bool Ok() const { return m_isOk
; }
348 void SetOk(bool ok
) { m_isOk
= ok
; }
350 ///////////////////////////////////////////////////////////////////////////
353 // If we own a wxPrintout that can be used for printing, this
354 // will invoke the actual printing procedure. Called
355 // by the wxPreviewControlBar.
356 virtual bool Print(bool interactive
) = 0;
358 // Calculate scaling that needs to be done to get roughly
359 // the right scaling for the screen pretending to be
360 // the currently selected printer.
361 virtual void DetermineScaling() = 0;
364 wxPrintDialogData m_printDialogData
;
365 wxWindow
* m_previewCanvas
;
366 wxFrame
* m_previewFrame
;
367 wxBitmap
* m_previewBitmap
;
368 wxPrintout
* m_previewPrintout
;
369 wxPrintout
* m_printPrintout
;
372 float m_previewScale
;
381 bool m_printingPrepared
; // Called OnPreparePrinting?
384 void Init(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
);
386 DECLARE_NO_COPY_CLASS(wxPrintPreviewBase
)
393 class WXDLLEXPORT wxPrintAbortDialog
: public wxDialog
396 wxPrintAbortDialog(wxWindow
*parent
,
397 const wxString
& title
,
398 const wxPoint
& pos
= wxDefaultPosition
,
399 const wxSize
& size
= wxDefaultSize
,
401 const wxString
& name
= wxT("dialog"))
402 : wxDialog(parent
, -1, title
, pos
, size
, style
, name
)
406 void OnCancel(wxCommandEvent
& event
);
409 DECLARE_EVENT_TABLE()
410 DECLARE_NO_COPY_CLASS(wxPrintAbortDialog
)
413 #endif // wxUSE_PRINTING_ARCHITECTURE