1999-11-08 14:53:39 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-27 13:07:40 +00:00
|
|
|
// Name: samples/printing.h
|
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// Purpose: Printing demo for wxWidgets
|
1999-11-08 14:53:39 +00:00
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1995
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Define a new application
|
|
|
|
class MyApp: public wxApp
|
|
|
|
{
|
|
|
|
public:
|
2004-10-06 20:54:57 +00:00
|
|
|
MyApp(){};
|
1999-02-05 23:55:04 +00:00
|
|
|
bool OnInit();
|
|
|
|
int OnExit();
|
1998-08-28 11:00:50 +00:00
|
|
|
|
2004-05-11 19:44:06 +00:00
|
|
|
wxFont m_testFont;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1998-08-28 11:00:50 +00:00
|
|
|
DECLARE_APP(MyApp)
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
class MyCanvas;
|
|
|
|
|
|
|
|
// Define a new canvas and frame
|
|
|
|
class MyFrame: public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyCanvas *canvas;
|
2004-11-27 12:50:01 +00:00
|
|
|
wxBitmap m_bitmap;
|
|
|
|
int m_angle;
|
1998-05-20 14:01:55 +00:00
|
|
|
MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
|
|
|
|
void Draw(wxDC& dc);
|
2004-11-27 12:50:01 +00:00
|
|
|
void OnAngleUp(wxCommandEvent& event);
|
|
|
|
void OnAngleDown(wxCommandEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnPrint(wxCommandEvent& event);
|
|
|
|
void OnPrintPreview(wxCommandEvent& event);
|
|
|
|
void OnPageSetup(wxCommandEvent& event);
|
1998-10-02 12:50:01 +00:00
|
|
|
#if defined(__WXMSW__) && wxTEST_POSTSCRIPT_IN_MSW
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnPrintPS(wxCommandEvent& event);
|
|
|
|
void OnPrintPreviewPS(wxCommandEvent& event);
|
|
|
|
void OnPageSetupPS(wxCommandEvent& event);
|
1998-10-02 12:50:01 +00:00
|
|
|
#endif
|
2006-10-27 13:07:40 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
void OnPageMargins(wxCommandEvent& event);
|
|
|
|
#endif
|
1998-10-02 12:50:01 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnExit(wxCommandEvent& event);
|
|
|
|
void OnPrintAbout(wxCommandEvent& event);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new canvas which can receive some events
|
|
|
|
class MyCanvas: public wxScrolledWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyCanvas(wxFrame *frame, const wxPoint& pos, const wxSize& size, long style = wxRETAINED);
|
2004-10-06 20:54:57 +00:00
|
|
|
~MyCanvas(void){};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual void OnDraw(wxDC& dc);
|
|
|
|
void OnEvent(wxMouseEvent& event);
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
class MyPrintout: public wxPrintout
|
|
|
|
{
|
|
|
|
public:
|
2005-09-24 21:43:15 +00:00
|
|
|
MyPrintout(const wxChar *title = _T("My printout")):wxPrintout(title) {}
|
1998-05-20 14:01:55 +00:00
|
|
|
bool OnPrintPage(int page);
|
|
|
|
bool HasPage(int page);
|
|
|
|
bool OnBeginDocument(int startPage, int endPage);
|
|
|
|
void GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo);
|
|
|
|
|
2006-10-27 13:07:40 +00:00
|
|
|
void DrawPageOne();
|
|
|
|
|
|
|
|
void DrawPageTwo();
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define WXPRINT_QUIT 100
|
|
|
|
#define WXPRINT_PRINT 101
|
|
|
|
#define WXPRINT_PAGE_SETUP 103
|
|
|
|
#define WXPRINT_PREVIEW 104
|
|
|
|
|
|
|
|
#define WXPRINT_PRINT_PS 105
|
|
|
|
#define WXPRINT_PAGE_SETUP_PS 107
|
|
|
|
#define WXPRINT_PREVIEW_PS 108
|
|
|
|
|
|
|
|
#define WXPRINT_ABOUT 109
|
|
|
|
|
2004-11-27 12:50:01 +00:00
|
|
|
#define WXPRINT_ANGLEUP 110
|
|
|
|
#define WXPRINT_ANGLEDOWN 111
|
2006-10-27 13:07:40 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
#define WXPRINT_PAGE_MARGINS 112
|
|
|
|
#endif
|