1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: prntbase.h
|
|
|
|
// Purpose: Base classes for printing framework
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_PRNTBASEH__
|
|
|
|
#define _WX_PRNTBASEH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1998-07-03 16:36:10 +00:00
|
|
|
#pragma interface "prntbase.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/event.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
#include "wx/panel.h"
|
|
|
|
#include "wx/scrolwin.h"
|
|
|
|
#include "wx/dialog.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#include "wx/frame.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxDC;
|
|
|
|
class WXDLLEXPORT wxButton;
|
|
|
|
class WXDLLEXPORT wxChoice;
|
|
|
|
class WXDLLEXPORT wxPrintout;
|
|
|
|
class WXDLLEXPORT wxPrinterBase;
|
|
|
|
class WXDLLEXPORT wxPrintDialog;
|
|
|
|
class WXDLLEXPORT wxPrintPreviewBase;
|
|
|
|
class WXDLLEXPORT wxPreviewCanvas;
|
|
|
|
class WXDLLEXPORT wxPreviewControlBar;
|
|
|
|
class WXDLLEXPORT wxPreviewFrame;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents the printer: manages printing a wxPrintout object
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrinterBase: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPrinterBase)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
1998-08-23 03:22:56 +00:00
|
|
|
wxPrinterBase(wxPrintData *data = (wxPrintData *) NULL);
|
1998-08-28 11:00:50 +00:00
|
|
|
~wxPrinterBase();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual wxWindow *CreateAbortWindow(wxWindow *parent, wxPrintout *printout);
|
|
|
|
virtual void ReportError(wxWindow *parent, wxPrintout *printout, char *message);
|
1998-08-28 11:00:50 +00:00
|
|
|
inline wxPrintData& GetPrintData() { return m_printData; };
|
|
|
|
inline bool GetAbort() { return sm_abortIt; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// OVERRIDES
|
|
|
|
|
|
|
|
virtual bool Setup(wxWindow *parent) = 0;
|
|
|
|
virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE) = 0;
|
|
|
|
virtual bool PrintDialog(wxWindow *parent) = 0;
|
1998-08-28 11:00:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxPrintData m_printData;
|
|
|
|
wxPrintout* m_currentPrintout;
|
|
|
|
public:
|
|
|
|
static wxWindow* sm_abortWindow;
|
|
|
|
static bool sm_abortIt;
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPrintout
|
|
|
|
* Represents an object via which a document may be printed.
|
|
|
|
* The programmer derives from this, overrides (at least) OnPrintPage,
|
|
|
|
* and passes it to a wxPrinter object for printing, or a wxPrintPreview
|
|
|
|
* object for previewing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintout: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxPrintout)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
|
|
|
wxPrintout(const wxString& title = "Printout");
|
|
|
|
~wxPrintout();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual bool OnBeginDocument(int startPage, int endPage);
|
1998-08-28 11:00:50 +00:00
|
|
|
virtual void OnEndDocument();
|
|
|
|
virtual void OnBeginPrinting();
|
|
|
|
virtual void OnEndPrinting();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Guaranteed to be before any other functions are called
|
1998-08-28 11:00:50 +00:00
|
|
|
inline virtual void OnPreparePrinting() { }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual bool HasPage(int page);
|
|
|
|
virtual bool OnPrintPage(int page) = 0;
|
|
|
|
virtual void GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo);
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline virtual wxString GetTitle() { return m_printoutTitle; }
|
|
|
|
|
|
|
|
inline wxDC *GetDC() { return m_printoutDC; }
|
|
|
|
inline void SetDC(wxDC *dc) { m_printoutDC = dc; }
|
|
|
|
inline void SetPageSizePixels(int w, int h) { m_pageWidthPixels = w; m_pageHeightPixels = h; }
|
|
|
|
inline void GetPageSizePixels(int *w, int *h) { *w = m_pageWidthPixels; *h = m_pageHeightPixels; }
|
|
|
|
inline void SetPageSizeMM(int w, int h) { m_pageWidthMM = w; m_pageHeightMM = h; }
|
|
|
|
inline void GetPageSizeMM(int *w, int *h) { *w = m_pageWidthMM; *h = m_pageHeightMM; }
|
|
|
|
|
|
|
|
inline void SetPPIScreen(int x, int y) { m_PPIScreenX = x; m_PPIScreenY = y; }
|
|
|
|
inline void GetPPIScreen(int *x, int *y) { *x = m_PPIScreenX; *y = m_PPIScreenY; }
|
|
|
|
inline void SetPPIPrinter(int x, int y) { m_PPIPrinterX = x; m_PPIPrinterY = y; }
|
|
|
|
inline void GetPPIPrinter(int *x, int *y) { *x = m_PPIPrinterX; *y = m_PPIPrinterY; }
|
|
|
|
|
|
|
|
inline virtual bool IsPreview() { return m_isPreview; }
|
|
|
|
|
|
|
|
inline virtual void SetIsPreview(bool p) { m_isPreview = p; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_printoutTitle;
|
|
|
|
wxDC* m_printoutDC;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
int m_pageWidthPixels;
|
|
|
|
int m_pageHeightPixels;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
int m_pageWidthMM;
|
|
|
|
int m_pageHeightMM;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
int m_PPIScreenX;
|
|
|
|
int m_PPIScreenY;
|
|
|
|
int m_PPIPrinterX;
|
|
|
|
int m_PPIPrinterY;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
bool m_isPreview;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPreviewCanvas
|
|
|
|
* Canvas upon which a preview is drawn.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPreviewCanvas: public wxScrolledWindow
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPreviewCanvas)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
wxPreviewCanvas(wxPrintPreviewBase *preview, wxWindow *parent,
|
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0, const wxString& name = "canvas");
|
1998-08-28 11:00:50 +00:00
|
|
|
~wxPreviewCanvas();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
void OnPaint(wxPaintEvent& event);
|
|
|
|
|
|
|
|
// Responds to colour changes
|
|
|
|
void OnSysColourChanged(wxSysColourChangedEvent& event);
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
private:
|
|
|
|
wxPrintPreviewBase* m_printPreview;
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPreviewFrame
|
|
|
|
* Default frame for showing preview.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPreviewFrame: public wxFrame
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPreviewFrame)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
wxPreviewFrame(wxPrintPreviewBase *preview, wxFrame *parent, const wxString& title = "Print Preview",
|
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME, const wxString& name = "frame");
|
1998-08-28 11:00:50 +00:00
|
|
|
~wxPreviewFrame();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
bool OnClose();
|
|
|
|
virtual void Initialize();
|
|
|
|
virtual void CreateCanvas();
|
|
|
|
virtual void CreateControlBar();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxWindow* m_previewCanvas;
|
|
|
|
wxPreviewControlBar* m_controlBar;
|
|
|
|
wxPrintPreviewBase* m_printPreview;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPreviewControlBar
|
|
|
|
* A panel with buttons for controlling a print preview.
|
|
|
|
* The programmer may wish to use other means for controlling
|
|
|
|
* the print preview.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define wxPREVIEW_PRINT 1
|
|
|
|
#define wxPREVIEW_PREVIOUS 2
|
|
|
|
#define wxPREVIEW_NEXT 4
|
|
|
|
#define wxPREVIEW_ZOOM 8
|
|
|
|
|
|
|
|
#define wxPREVIEW_DEFAULT wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM
|
|
|
|
|
|
|
|
// Ids for controls
|
|
|
|
#define wxID_PREVIEW_CLOSE 1
|
|
|
|
#define wxID_PREVIEW_NEXT 2
|
|
|
|
#define wxID_PREVIEW_PREVIOUS 3
|
|
|
|
#define wxID_PREVIEW_PRINT 4
|
|
|
|
#define wxID_PREVIEW_ZOOM 5
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPreviewControlBar: public wxPanel
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPreviewControlBar)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
wxPreviewControlBar(wxPrintPreviewBase *preview, long buttons,
|
|
|
|
wxWindow *parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0, const wxString& name = "panel");
|
1998-08-28 11:00:50 +00:00
|
|
|
~wxPreviewControlBar();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
virtual void CreateButtons();
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual void SetZoomControl(int zoom);
|
1998-08-28 11:00:50 +00:00
|
|
|
virtual int GetZoomControl();
|
|
|
|
inline virtual wxPrintPreviewBase *GetPrintPreview() const { return m_printPreview; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
void OnPrint(wxCommandEvent& event);
|
|
|
|
void OnClose(wxCommandEvent& event);
|
|
|
|
void OnNext(wxCommandEvent& event);
|
|
|
|
void OnPrevious(wxCommandEvent& event);
|
|
|
|
void OnZoom(wxCommandEvent& event);
|
|
|
|
void OnPaint(wxPaintEvent& event);
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
protected:
|
|
|
|
wxPrintPreviewBase* m_printPreview;
|
|
|
|
wxButton* m_closeButton;
|
|
|
|
wxButton* m_nextPageButton;
|
|
|
|
wxButton* m_previousPageButton;
|
|
|
|
wxButton* m_printButton;
|
|
|
|
wxChoice* m_zoomControl;
|
|
|
|
long m_buttonFlags;
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPrintPreview
|
|
|
|
* Programmer creates an object of this class to preview a wxPrintout.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintPreviewBase: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPrintPreviewBase)
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
public:
|
1998-08-23 03:22:56 +00:00
|
|
|
wxPrintPreviewBase(wxPrintout *printout, wxPrintout *printoutForPrinting = (wxPrintout *) NULL, wxPrintData *data = (wxPrintData *) NULL);
|
1998-08-28 11:00:50 +00:00
|
|
|
~wxPrintPreviewBase();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual bool SetCurrentPage(int pageNum);
|
1998-08-28 11:00:50 +00:00
|
|
|
inline int GetCurrentPage() const { return m_currentPage; };
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline void SetPrintout(wxPrintout *printout) { m_previewPrintout = printout; };
|
|
|
|
inline wxPrintout *GetPrintout() const { return m_previewPrintout; };
|
|
|
|
inline wxPrintout *GetPrintoutForPrinting() const { return m_printPrintout; };
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline void SetFrame(wxFrame *frame) { m_previewFrame = frame; };
|
|
|
|
inline void SetCanvas(wxWindow *canvas) { m_previewCanvas = canvas; };
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline virtual wxFrame *GetFrame() const { return m_previewFrame; }
|
|
|
|
inline virtual wxWindow *GetCanvas() const { return m_previewCanvas; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// The preview canvas should call this from OnPaint
|
|
|
|
virtual bool PaintPage(wxWindow *canvas, wxDC& dc);
|
|
|
|
|
|
|
|
// This draws a blank page onto the preview canvas
|
|
|
|
virtual bool DrawBlankPage(wxWindow *canvas, wxDC& dc);
|
|
|
|
|
|
|
|
// This is called by wxPrintPreview to render a page into
|
|
|
|
// a wxMemoryDC.
|
|
|
|
virtual bool RenderPage(int pageNum);
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline wxPrintData& GetPrintData() { return m_printData; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual void SetZoom(int percent);
|
1998-08-28 11:00:50 +00:00
|
|
|
inline int GetZoom() const { return m_currentZoom; };
|
|
|
|
|
|
|
|
inline int GetMaxPage() const { return m_maxPage; }
|
|
|
|
inline int GetMinPage() const { return m_minPage; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
inline bool Ok() const { return m_isOk; }
|
|
|
|
inline void SetOk(bool ok) { m_isOk = ok; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// OVERRIDES
|
|
|
|
|
|
|
|
// If we own a wxPrintout that can be used for printing, this
|
|
|
|
// will invoke the actual printing procedure. Called
|
|
|
|
// by the wxPreviewControlBar.
|
|
|
|
virtual bool Print(bool interactive) = 0;
|
|
|
|
|
|
|
|
// Calculate scaling that needs to be done to get roughly
|
|
|
|
// the right scaling for the screen pretending to be
|
|
|
|
// the currently selected printer.
|
1998-08-28 11:00:50 +00:00
|
|
|
virtual void DetermineScaling() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxPrintData m_printData;
|
|
|
|
wxWindow* m_previewCanvas;
|
|
|
|
wxFrame* m_previewFrame;
|
|
|
|
wxBitmap* m_previewBitmap;
|
|
|
|
wxPrintout* m_previewPrintout;
|
|
|
|
wxPrintout* m_printPrintout;
|
|
|
|
int m_currentPage;
|
|
|
|
int m_currentZoom;
|
|
|
|
float m_previewScale;
|
|
|
|
int m_topMargin;
|
|
|
|
int m_leftMargin;
|
|
|
|
int m_pageWidth;
|
|
|
|
int m_pageHeight;
|
|
|
|
int m_minPage;
|
|
|
|
int m_maxPage;
|
|
|
|
protected:
|
|
|
|
bool m_isOk;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Abort dialog
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintAbortDialog: public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPrintAbortDialog(wxWindow *parent,
|
|
|
|
const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0, const wxString& name = "dialog"):
|
|
|
|
wxDialog(parent, -1, title, pos, size, style, name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
void OnCancel(wxCommandEvent& event);
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_PRNTBASEH__
|