]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
389076f1 | 2 | // Name: wx/generic/dcps.h |
c801d85f KB |
3 | // Purpose: wxPostScriptDC class |
4 | // Author: Julian Smart and others | |
5 | // Modified by: | |
c801d85f | 6 | // RCS-ID: $Id$ |
371a5b4e | 7 | // Copyright: (c) Julian Smart and Robert Roebling |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
bf38cbff JS |
11 | #ifndef _WX_DCPSG_H_ |
12 | #define _WX_DCPSG_H_ | |
c801d85f | 13 | |
e7445ff8 | 14 | #include "wx/defs.h" |
c801d85f | 15 | |
eb7637b5 | 16 | #if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT |
c801d85f | 17 | |
e7445ff8 | 18 | #include "wx/dc.h" |
4f37154e | 19 | #include "wx/dcprint.h" |
bf38cbff JS |
20 | #include "wx/dialog.h" |
21 | #include "wx/module.h" | |
7bcb11d3 | 22 | #include "wx/cmndata.h" |
c9f78968 | 23 | #include "wx/strvararg.h" |
fbc535ff | 24 | |
bf38cbff JS |
25 | //----------------------------------------------------------------------------- |
26 | // wxPostScriptDC | |
27 | //----------------------------------------------------------------------------- | |
f04371f0 | 28 | |
4f37154e | 29 | |
4f37154e RR |
30 | class WXDLLEXPORT wxPostScriptDC : public wxDC |
31 | { | |
32 | public: | |
33 | wxPostScriptDC(); | |
34 | ||
35 | // Recommended constructor | |
36 | wxPostScriptDC(const wxPrintData& printData); | |
b1f0e54a | 37 | |
4f37154e RR |
38 | private: |
39 | DECLARE_DYNAMIC_CLASS(wxPostScriptDC) | |
40 | }; | |
41 | ||
888dde65 | 42 | class WXDLLEXPORT wxPostScriptDCImpl : public wxDCImpl |
c801d85f | 43 | { |
bf38cbff | 44 | public: |
888dde65 RR |
45 | wxPostScriptDCImpl( wxPrinterDC *owner ); |
46 | wxPostScriptDCImpl( wxPrinterDC *owner, const wxPrintData& data ); | |
47 | wxPostScriptDCImpl( wxPostScriptDC *owner ); | |
48 | wxPostScriptDCImpl( wxPostScriptDC *owner, const wxPrintData& data ); | |
7bcb11d3 | 49 | |
4f37154e RR |
50 | void Init(); |
51 | ||
888dde65 | 52 | virtual ~wxPostScriptDCImpl(); |
c801d85f | 53 | |
04ab8b6d RR |
54 | virtual bool Ok() const { return IsOk(); } |
55 | virtual bool IsOk() const; | |
bf38cbff | 56 | |
04ab8b6d | 57 | bool CanDrawBitmap() const { return true; } |
bf38cbff | 58 | |
04ab8b6d RR |
59 | void Clear(); |
60 | void SetFont( const wxFont& font ); | |
61 | void SetPen( const wxPen& pen ); | |
62 | void SetBrush( const wxBrush& brush ); | |
63 | void SetLogicalFunction( int function ); | |
64 | void SetBackground( const wxBrush& brush ); | |
bf38cbff | 65 | |
04ab8b6d | 66 | void DestroyClippingRegion(); |
af0bb3b1 | 67 | |
04ab8b6d RR |
68 | bool StartDoc(const wxString& message); |
69 | void EndDoc(); | |
70 | void StartPage(); | |
71 | void EndPage(); | |
c801d85f | 72 | |
04ab8b6d RR |
73 | wxCoord GetCharHeight() const; |
74 | wxCoord GetCharWidth() const; | |
75 | bool CanGetTextExtent() const { return true; } | |
7bcb11d3 | 76 | |
04ab8b6d RR |
77 | // Resolution in pixels per logical inch |
78 | wxSize GetPPI() const; | |
c801d85f | 79 | |
c0845ad3 | 80 | virtual void ComputeScaleAndOrigin(); |
bf38cbff | 81 | |
04ab8b6d RR |
82 | void SetBackgroundMode(int WXUNUSED(mode)) { } |
83 | void SetPalette(const wxPalette& WXUNUSED(palette)) { } | |
c801d85f | 84 | |
04ab8b6d RR |
85 | void SetPrintData(const wxPrintData& data); |
86 | wxPrintData& GetPrintData() { return m_printData; } | |
af0bb3b1 | 87 | |
04ab8b6d | 88 | virtual int GetDepth() const { return 24; } |
ca65c044 | 89 | |
04ab8b6d | 90 | void PsPrint( const wxString& psdata ); |
b1f0e54a | 91 | |
4f37154e | 92 | // Overrridden for wxPrinterDC Impl |
b1f0e54a | 93 | |
4f37154e RR |
94 | virtual int GetResolution(); |
95 | virtual wxRect GetPaperRect(); | |
7bcb11d3 | 96 | |
c801d85f | 97 | protected: |
6f02a879 VZ |
98 | bool DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style = wxFLOOD_SURFACE); |
99 | bool DoGetPixel(wxCoord x1, wxCoord y1, wxColour *col) const; | |
100 | void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2); | |
101 | void DoCrossHair(wxCoord x, wxCoord y) ; | |
102 | void DoDrawArc(wxCoord x1,wxCoord y1,wxCoord x2,wxCoord y2,wxCoord xc,wxCoord yc); | |
103 | void DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea); | |
104 | void DoDrawPoint(wxCoord x, wxCoord y); | |
105 | void DoDrawLines(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0); | |
106 | void DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle = wxODDEVEN_RULE); | |
107 | void DoDrawPolyPolygon(int n, int count[], wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle = wxODDEVEN_RULE); | |
108 | void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
109 | void DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 20); | |
110 | void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
111 | #if wxUSE_SPLINES | |
b0d7707b | 112 | void DoDrawSpline(const wxPointList *points); |
4f37154e | 113 | #endif |
6f02a879 VZ |
114 | bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, |
115 | wxDC *source, wxCoord xsrc, wxCoord ysrc, int rop = wxCOPY, bool useMask = false, | |
116 | wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord); | |
117 | void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y); | |
118 | void DoDrawBitmap(const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask = false); | |
119 | void DoDrawText(const wxString& text, wxCoord x, wxCoord y); | |
120 | void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle); | |
121 | void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
122 | void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip)) { } | |
123 | void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y, | |
124 | wxCoord *descent = NULL, | |
125 | wxCoord *externalLeading = NULL, | |
c94f845b | 126 | const wxFont *theFont = NULL) const; |
6f02a879 VZ |
127 | void DoGetSize(int* width, int* height) const; |
128 | void DoGetSizeMM(int *width, int *height) const; | |
3a97d2db | 129 | |
eba33006 RR |
130 | FILE* m_pstream; // PostScript output stream |
131 | wxString m_title; | |
132 | unsigned char m_currentRed; | |
133 | unsigned char m_currentGreen; | |
134 | unsigned char m_currentBlue; | |
135 | int m_pageNumber; | |
136 | bool m_clipping; | |
137 | double m_underlinePosition; | |
138 | double m_underlineThickness; | |
139 | wxPrintData m_printData; | |
eb7637b5 | 140 | double m_pageHeight; |
ca65c044 | 141 | |
eba33006 | 142 | private: |
888dde65 | 143 | DECLARE_DYNAMIC_CLASS(wxPostScriptDCImpl) |
c801d85f KB |
144 | }; |
145 | ||
bf38cbff | 146 | #endif |
eb7637b5 | 147 | // wxUSE_POSTSCRIPT && wxUSE_PRINTING_ARCHITECTURE |
ed880dd4 | 148 | |
c801d85f | 149 | #endif |
bf38cbff | 150 | // _WX_DCPSG_H_ |