1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-01-22 11:06:20 +00:00
|
|
|
// Name: dcps.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose: wxPostScriptDC class
|
|
|
|
// Author: Julian Smart and others
|
|
|
|
// Modified by:
|
|
|
|
// RCS-ID: $Id$
|
1999-01-22 11:06:20 +00:00
|
|
|
// Copyright: (c) Julian Smart, Robert Roebling and Markus Holzem
|
1998-11-29 22:21:32 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#ifndef _WX_DCPSG_H_
|
|
|
|
#define _WX_DCPSG_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-01-22 11:06:20 +00:00
|
|
|
#pragma interface
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dc.h"
|
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_POSTSCRIPT
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/module.h"
|
1999-03-25 23:06:01 +00:00
|
|
|
#include "wx/cmndata.h"
|
1998-10-12 07:46:15 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
1998-12-05 21:53:51 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
class wxPostScriptDC;
|
1998-12-05 21:53:51 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxPostScriptDC
|
|
|
|
//-----------------------------------------------------------------------------
|
1998-12-05 21:53:51 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
class WXDLLEXPORT wxPostScriptDC: public wxDC
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPostScriptDC)
|
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
public:
|
|
|
|
|
1998-11-29 22:21:32 +00:00
|
|
|
wxPostScriptDC();
|
1999-03-25 23:06:01 +00:00
|
|
|
|
|
|
|
// Deprecated constructor
|
1998-08-23 03:22:56 +00:00
|
|
|
wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
// Recommended constructor
|
|
|
|
wxPostScriptDC(const wxPrintData& printData);
|
|
|
|
|
1998-11-29 22:21:32 +00:00
|
|
|
~wxPostScriptDC();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
// Deprecated
|
1998-08-23 03:22:56 +00:00
|
|
|
bool Create(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
virtual bool Ok() const;
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
// Deprecated: use wxGenericPrintDialog instead
|
1998-08-23 03:22:56 +00:00
|
|
|
virtual bool PrinterDialog(wxWindow *parent = (wxWindow *) NULL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
virtual void BeginDrawing() {}
|
|
|
|
virtual void EndDrawing() {}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-14 20:27:41 +00:00
|
|
|
void DoFloodFill(long x1, long y1, const wxColour &col, int style=wxFLOOD_SURFACE );
|
|
|
|
bool DoGetPixel(long x1, long y1, wxColour *col) const;
|
|
|
|
|
|
|
|
void DoDrawLine(long x1, long y1, long x2, long y2);
|
|
|
|
void DoCrossHair(long x, long y) ;
|
|
|
|
void DoDrawArc(long x1,long y1,long x2,long y2,long xc,long yc);
|
|
|
|
void DoDrawEllipticArc(long x,long y,long w,long h,double sa,double ea);
|
|
|
|
void DoDrawPoint(long x, long y);
|
|
|
|
void DoDrawLines(int n, wxPoint points[], long xoffset = 0, long yoffset = 0);
|
|
|
|
void DoDrawPolygon(int n, wxPoint points[], long xoffset = 0, long yoffset = 0, int fillStyle=wxODDEVEN_RULE);
|
|
|
|
void DoDrawRectangle(long x, long y, long width, long height);
|
|
|
|
void DoDrawRoundedRectangle(long x, long y, long width, long height, double radius = 20);
|
|
|
|
void DoDrawEllipse(long x, long y, long width, long height);
|
|
|
|
|
|
|
|
void DoDrawSpline(wxList *points);
|
|
|
|
|
|
|
|
bool DoBlit(long xdest, long ydest, long width, long height,
|
1999-01-22 11:06:20 +00:00
|
|
|
wxDC *source, long xsrc, long ysrc, int rop = wxCOPY, bool useMask = FALSE);
|
|
|
|
inline bool CanDrawBitmap(void) const { return TRUE; }
|
|
|
|
|
1999-05-14 20:27:41 +00:00
|
|
|
void DoDrawIcon( const wxIcon& icon, long x, long y );
|
|
|
|
void DoDrawBitmap( const wxBitmap& bitmap, long x, long y, bool useMask=FALSE );
|
1999-01-22 11:06:20 +00:00
|
|
|
|
1999-05-14 20:27:41 +00:00
|
|
|
void DoDrawText(const wxString& text, long x, long y );
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-11-29 22:21:32 +00:00
|
|
|
void Clear();
|
1999-01-22 11:06:20 +00:00
|
|
|
void SetFont( const wxFont& font );
|
|
|
|
void SetPen( const wxPen& pen );
|
|
|
|
void SetBrush( const wxBrush& brush );
|
|
|
|
void SetLogicalFunction( int function );
|
|
|
|
void SetBackground( const wxBrush& brush );
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
void SetClippingRegion(long x, long y, long width, long height);
|
1998-12-03 15:14:45 +00:00
|
|
|
void SetClippingRegion( const wxRegion ®ion );
|
1998-11-29 22:21:32 +00:00
|
|
|
void DestroyClippingRegion();
|
1999-06-08 19:10:37 +00:00
|
|
|
|
1999-05-14 20:27:41 +00:00
|
|
|
void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip) ) {}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
bool StartDoc(const wxString& message);
|
1998-11-29 22:21:32 +00:00
|
|
|
void EndDoc();
|
|
|
|
void StartPage();
|
|
|
|
void EndPage();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-14 20:27:41 +00:00
|
|
|
long GetCharHeight() const;
|
|
|
|
long GetCharWidth() const;
|
1999-01-22 11:06:20 +00:00
|
|
|
inline bool CanGetTextExtent(void) const { return FALSE; }
|
1998-05-20 14:01:55 +00:00
|
|
|
void GetTextExtent(const wxString& string, long *x, long *y,
|
1998-11-29 22:21:32 +00:00
|
|
|
long *descent = (long *) NULL,
|
|
|
|
long *externalLeading = (long *) NULL,
|
1999-05-14 20:27:41 +00:00
|
|
|
wxFont *theFont = (wxFont *) NULL ) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-15 23:40:42 +00:00
|
|
|
void DoGetSize(int* width, int* height) const;
|
|
|
|
void DoGetSizeMM(int *width, int *height) const;
|
1999-03-25 23:06:01 +00:00
|
|
|
|
|
|
|
// Resolution in pixels per logical inch
|
|
|
|
wxSize GetPPI(void) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
|
|
|
|
void SetDeviceOrigin( long x, long y );
|
|
|
|
|
|
|
|
inline void SetBackgroundMode(int WXUNUSED(mode)) {}
|
1998-05-20 14:01:55 +00:00
|
|
|
inline void SetPalette(const wxPalette& WXUNUSED(palette)) {}
|
|
|
|
|
1999-06-08 19:10:37 +00:00
|
|
|
wxPrintData& GetPrintData() { return m_printData; }
|
|
|
|
void SetPrintData(const wxPrintData& data) { m_printData = data; }
|
|
|
|
|
|
|
|
virtual int GetDepth() const { return 24; }
|
1999-03-25 23:06:01 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
protected:
|
1999-01-22 11:06:20 +00:00
|
|
|
|
1999-06-21 11:27:53 +00:00
|
|
|
FILE* m_pstream; // PostScript output stream
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString m_title;
|
|
|
|
unsigned char m_currentRed;
|
|
|
|
unsigned char m_currentGreen;
|
|
|
|
unsigned char m_currentBlue;
|
1999-01-22 11:06:20 +00:00
|
|
|
int m_pageNumber;
|
|
|
|
bool m_clipping;
|
|
|
|
double m_underlinePosition;
|
|
|
|
double m_underlineThickness;
|
1999-03-25 23:06:01 +00:00
|
|
|
wxPrintData m_printData;
|
1999-01-22 11:06:20 +00:00
|
|
|
};
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
// Deprecated: should use wxGenericPrintDialog instead.
|
1999-01-22 11:06:20 +00:00
|
|
|
#if 1
|
1998-05-20 14:01:55 +00:00
|
|
|
#define wxID_PRINTER_COMMAND 1
|
|
|
|
#define wxID_PRINTER_OPTIONS 2
|
|
|
|
#define wxID_PRINTER_ORIENTATION 3
|
|
|
|
#define wxID_PRINTER_MODES 4
|
|
|
|
#define wxID_PRINTER_X_SCALE 5
|
|
|
|
#define wxID_PRINTER_Y_SCALE 6
|
|
|
|
#define wxID_PRINTER_X_TRANS 7
|
|
|
|
#define wxID_PRINTER_Y_TRANS 8
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPostScriptPrintDialog: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxPostScriptPrintDialog)
|
|
|
|
public:
|
|
|
|
wxPostScriptPrintDialog (wxWindow *parent, const wxString& title,
|
1998-11-29 22:21:32 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
virtual int ShowModal(void) ;
|
|
|
|
};
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Print Orientation (Should also add Left, Right)
|
1999-06-08 19:10:37 +00:00
|
|
|
enum
|
|
|
|
{
|
1998-05-20 14:01:55 +00:00
|
|
|
PS_PORTRAIT = 1,
|
|
|
|
PS_LANDSCAPE = 2
|
|
|
|
};// ps_orientation = PS_PORTRAIT;
|
|
|
|
|
|
|
|
// Print Actions
|
1999-06-08 19:10:37 +00:00
|
|
|
enum
|
|
|
|
{
|
1999-03-25 23:06:01 +00:00
|
|
|
PS_NONE,
|
|
|
|
PS_PREVIEW,
|
1998-05-20 14:01:55 +00:00
|
|
|
PS_FILE,
|
1999-03-25 23:06:01 +00:00
|
|
|
PS_PRINTER
|
1998-05-20 14:01:55 +00:00
|
|
|
};// ps_action = PS_PREVIEW;
|
|
|
|
|
|
|
|
// PostScript printer settings
|
1999-03-25 23:06:01 +00:00
|
|
|
WXDLLEXPORT void wxSetPrinterCommand(const wxString& cmd);
|
|
|
|
WXDLLEXPORT void wxSetPrintPreviewCommand(const wxString& cmd);
|
|
|
|
WXDLLEXPORT void wxSetPrinterOptions(const wxString& flags);
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT void wxSetPrinterOrientation(int orientation);
|
|
|
|
WXDLLEXPORT void wxSetPrinterScaling(double x, double y);
|
|
|
|
WXDLLEXPORT void wxSetPrinterTranslation(long x, long y);
|
|
|
|
WXDLLEXPORT void wxSetPrinterMode(int mode);
|
1999-03-25 23:06:01 +00:00
|
|
|
WXDLLEXPORT void wxSetPrinterFile(const wxString& f);
|
|
|
|
WXDLLEXPORT void wxSetAFMPath(const wxString& f);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get current values
|
1999-03-25 23:06:01 +00:00
|
|
|
WXDLLEXPORT wxString wxGetPrinterCommand();
|
|
|
|
WXDLLEXPORT wxString wxGetPrintPreviewCommand();
|
|
|
|
WXDLLEXPORT wxString wxGetPrinterOptions();
|
1998-11-29 22:21:32 +00:00
|
|
|
WXDLLEXPORT int wxGetPrinterOrientation();
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT void wxGetPrinterScaling(double* x, double* y);
|
|
|
|
WXDLLEXPORT void wxGetPrinterTranslation(long *x, long *y);
|
1998-11-29 22:21:32 +00:00
|
|
|
WXDLLEXPORT int wxGetPrinterMode();
|
1999-03-25 23:06:01 +00:00
|
|
|
WXDLLEXPORT wxString wxGetPrinterFile();
|
|
|
|
WXDLLEXPORT wxString wxGetAFMPath();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
/*
|
1999-03-25 23:06:01 +00:00
|
|
|
* PostScript print setup information.
|
|
|
|
* This is now obsolete, but retained for a while for compatibility
|
1998-05-20 14:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintSetupData: public wxObject
|
|
|
|
{
|
1998-11-29 22:21:32 +00:00
|
|
|
public:
|
|
|
|
wxPrintSetupData();
|
|
|
|
~wxPrintSetupData();
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
void SetPrinterCommand(const wxString& cmd) { m_printerCommand = cmd; };
|
|
|
|
void SetPaperName(const wxString& paper) { m_paperName = paper; };
|
|
|
|
void SetPrintPreviewCommand(const wxString& cmd) { m_previewCommand = cmd; };
|
|
|
|
void SetPrinterOptions(const wxString& flags) { m_printerFlags = flags; };
|
|
|
|
void SetPrinterFile(const wxString& f) { m_printerFile = f; };
|
|
|
|
void SetPrinterOrientation(int orient) { m_printerOrient = orient; };
|
|
|
|
void SetPrinterScaling(double x, double y) { m_printerScaleX = x; m_printerScaleY = y; };
|
|
|
|
void SetPrinterTranslation(long x, long y) { m_printerTranslateX = x; m_printerTranslateY = y; };
|
1998-11-29 22:21:32 +00:00
|
|
|
// 1 = Preview, 2 = print to file, 3 = send to printer
|
1999-03-25 23:06:01 +00:00
|
|
|
void SetPrinterMode(int mode) { m_printerMode = mode; };
|
|
|
|
void SetAFMPath(const wxString& f) { m_afmPath = f; };
|
|
|
|
void SetColour(bool col) { m_printColour = col; };
|
1998-11-29 22:21:32 +00:00
|
|
|
|
|
|
|
// Get current values
|
1999-03-25 23:06:01 +00:00
|
|
|
wxString GetPrinterCommand() const { return m_printerCommand; } ;
|
|
|
|
wxString GetPrintPreviewCommand() const { return m_previewCommand; } ;
|
|
|
|
wxString GetPrinterOptions() const { return m_printerFlags; };
|
|
|
|
wxString GetPrinterFile() const { return m_printerFile; };
|
|
|
|
wxString GetPaperName() const { return m_paperName; }
|
|
|
|
int GetPrinterOrientation() const { return m_printerOrient; };
|
|
|
|
void GetPrinterScaling(double* x, double* y) const { *x = m_printerScaleX; *y = m_printerScaleY; };
|
|
|
|
void GetPrinterTranslation(long *x, long *y) const { *x = m_printerTranslateX; *y = m_printerTranslateY; };
|
|
|
|
int GetPrinterMode() const { return m_printerMode; };
|
|
|
|
wxString GetAFMPath() const { return m_afmPath; };
|
|
|
|
bool GetColour() const { return m_printColour; };
|
1998-11-29 22:21:32 +00:00
|
|
|
|
|
|
|
void operator=(wxPrintSetupData& data);
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
// Initialize from a wxPrintData object (wxPrintData should now be used instead of wxPrintSetupData).
|
|
|
|
// There is also an operator for initializing a wxPrintData from a wxPrintSetupData.
|
|
|
|
void operator=(const wxPrintData& data);
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxString m_printerCommand;
|
|
|
|
wxString m_previewCommand;
|
|
|
|
wxString m_printerFlags;
|
|
|
|
wxString m_printerFile;
|
|
|
|
int m_printerOrient;
|
|
|
|
double m_printerScaleX;
|
|
|
|
double m_printerScaleY;
|
|
|
|
long m_printerTranslateX;
|
|
|
|
long m_printerTranslateY;
|
|
|
|
// 1 = Preview, 2 = print to file, 3 = send to printer
|
|
|
|
int m_printerMode;
|
|
|
|
wxString m_afmPath;
|
|
|
|
// A name in the paper database (see paper.h)
|
|
|
|
wxString m_paperName;
|
|
|
|
bool m_printColour;
|
|
|
|
|
1998-11-29 22:21:32 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxPrintSetupData)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT_DATA(extern wxPrintSetupData*) wxThePrintSetupData;
|
|
|
|
WXDLLEXPORT extern void wxInitializePrintSetupData(bool init = TRUE);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_POSTSCRIPT
|
1999-06-15 20:21:59 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// wxUSE_PRINTING_ARCHITECTURE
|
1998-12-05 21:02:04 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1999-01-22 11:06:20 +00:00
|
|
|
// _WX_DCPSG_H_
|