]>
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 | |
c801d85f | 14 | #include "wx/dc.h" |
c801d85f | 15 | |
ce4169a4 RR |
16 | #if wxUSE_PRINTING_ARCHITECTURE |
17 | ||
47d67540 | 18 | #if wxUSE_POSTSCRIPT |
c801d85f | 19 | |
bf38cbff JS |
20 | #include "wx/dialog.h" |
21 | #include "wx/module.h" | |
7bcb11d3 | 22 | #include "wx/cmndata.h" |
fbc535ff | 23 | |
bf38cbff JS |
24 | //----------------------------------------------------------------------------- |
25 | // classes | |
26 | //----------------------------------------------------------------------------- | |
f04371f0 | 27 | |
bf38cbff | 28 | class wxPostScriptDC; |
f04371f0 | 29 | |
bf38cbff JS |
30 | //----------------------------------------------------------------------------- |
31 | // wxPostScriptDC | |
32 | //----------------------------------------------------------------------------- | |
f04371f0 | 33 | |
c801d85f KB |
34 | class WXDLLEXPORT wxPostScriptDC: public wxDC |
35 | { | |
bf38cbff | 36 | public: |
3a97d2db | 37 | wxPostScriptDC(); |
7bcb11d3 | 38 | |
3a97d2db RR |
39 | // Recommended constructor |
40 | wxPostScriptDC(const wxPrintData& printData); | |
ca65c044 | 41 | |
3a97d2db RR |
42 | // Recommended destructor :-) |
43 | ~wxPostScriptDC(); | |
c801d85f | 44 | |
bf38cbff JS |
45 | virtual bool Ok() const; |
46 | ||
387ebd3e | 47 | bool DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style=wxFLOOD_SURFACE ); |
72cdf4c9 VZ |
48 | bool DoGetPixel(wxCoord x1, wxCoord y1, wxColour *col) const; |
49 | ||
50 | void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2); | |
51 | void DoCrossHair(wxCoord x, wxCoord y) ; | |
52 | void DoDrawArc(wxCoord x1,wxCoord y1,wxCoord x2,wxCoord y2,wxCoord xc,wxCoord yc); | |
53 | void DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea); | |
54 | void DoDrawPoint(wxCoord x, wxCoord y); | |
55 | void DoDrawLines(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0); | |
56 | void DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle=wxODDEVEN_RULE); | |
793db755 | 57 | void DoDrawPolyPolygon(int n, int count[], wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle=wxODDEVEN_RULE); |
72cdf4c9 VZ |
58 | void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height); |
59 | void DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 20); | |
60 | void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
64698f9a | 61 | |
389076f1 | 62 | #if wxUSE_SPLINES |
64698f9a | 63 | void DoDrawSpline(wxList *points); |
389076f1 | 64 | #endif // wxUSE_SPLINES |
72cdf4c9 | 65 | bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, |
ca65c044 | 66 | wxDC *source, wxCoord xsrc, wxCoord ysrc, int rop = wxCOPY, bool useMask = false, |
422d0ff0 | 67 | wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord); |
ca65c044 | 68 | bool CanDrawBitmap() const { return true; } |
bf38cbff | 69 | |
72cdf4c9 | 70 | void DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y ); |
ca65c044 | 71 | void DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask = false ); |
bf38cbff | 72 | |
72cdf4c9 | 73 | void DoDrawText(const wxString& text, wxCoord x, wxCoord y ); |
95724b1a | 74 | void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle); |
c801d85f | 75 | |
a6f6393c | 76 | void Clear(); |
bf38cbff JS |
77 | void SetFont( const wxFont& font ); |
78 | void SetPen( const wxPen& pen ); | |
79 | void SetBrush( const wxBrush& brush ); | |
80 | void SetLogicalFunction( int function ); | |
81 | void SetBackground( const wxBrush& brush ); | |
82 | ||
72cdf4c9 | 83 | void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height); |
a6f6393c | 84 | void DestroyClippingRegion(); |
af0bb3b1 | 85 | |
72cdf4c9 | 86 | void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip) ) { } |
c801d85f KB |
87 | |
88 | bool StartDoc(const wxString& message); | |
a6f6393c VZ |
89 | void EndDoc(); |
90 | void StartPage(); | |
91 | void EndPage(); | |
c801d85f | 92 | |
72cdf4c9 VZ |
93 | wxCoord GetCharHeight() const; |
94 | wxCoord GetCharWidth() const; | |
ca65c044 | 95 | bool CanGetTextExtent() const { return true; } |
72cdf4c9 VZ |
96 | void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y, |
97 | wxCoord *descent = (wxCoord *) NULL, | |
98 | wxCoord *externalLeading = (wxCoord *) NULL, | |
64698f9a | 99 | wxFont *theFont = (wxFont *) NULL ) const; |
c801d85f | 100 | |
4e4ea166 RR |
101 | void DoGetSize(int* width, int* height) const; |
102 | void DoGetSizeMM(int *width, int *height) const; | |
7bcb11d3 JS |
103 | |
104 | // Resolution in pixels per logical inch | |
72cdf4c9 | 105 | wxSize GetPPI() const; |
c801d85f | 106 | |
bf38cbff | 107 | void SetAxisOrientation( bool xLeftRight, bool yBottomUp ); |
72cdf4c9 | 108 | void SetDeviceOrigin( wxCoord x, wxCoord y ); |
bf38cbff | 109 | |
72cdf4c9 VZ |
110 | void SetBackgroundMode(int WXUNUSED(mode)) { } |
111 | void SetPalette(const wxPalette& WXUNUSED(palette)) { } | |
c801d85f | 112 | |
af0bb3b1 VZ |
113 | wxPrintData& GetPrintData() { return m_printData; } |
114 | void SetPrintData(const wxPrintData& data) { m_printData = data; } | |
115 | ||
116 | virtual int GetDepth() const { return 24; } | |
ca65c044 | 117 | |
b64de916 VS |
118 | static void SetResolution(int ppi); |
119 | static int GetResolution(); | |
244e5e34 VZ |
120 | |
121 | void PsPrintf( const wxChar* fmt, ... ); | |
122 | void PsPrint( const char* psdata ); | |
123 | void PsPrint( int ch ); | |
124 | ||
125 | #if wxUSE_UNICODE | |
126 | void PsPrint( const wxChar* psdata ) { PsPrint( wxConvUTF8.cWX2MB( psdata ) ); } | |
127 | #endif | |
128 | ||
ca65c044 | 129 | private: |
eba33006 | 130 | static float ms_PSScaleFactor; |
7bcb11d3 | 131 | |
c801d85f | 132 | protected: |
3a97d2db | 133 | |
eba33006 RR |
134 | FILE* m_pstream; // PostScript output stream |
135 | wxString m_title; | |
136 | unsigned char m_currentRed; | |
137 | unsigned char m_currentGreen; | |
138 | unsigned char m_currentBlue; | |
139 | int m_pageNumber; | |
140 | bool m_clipping; | |
141 | double m_underlinePosition; | |
142 | double m_underlineThickness; | |
143 | wxPrintData m_printData; | |
ca65c044 | 144 | |
eba33006 RR |
145 | private: |
146 | DECLARE_DYNAMIC_CLASS(wxPostScriptDC) | |
c801d85f KB |
147 | }; |
148 | ||
bf38cbff JS |
149 | #endif |
150 | // wxUSE_POSTSCRIPT | |
72cdf4c9 | 151 | |
ce4169a4 RR |
152 | #endif |
153 | // wxUSE_PRINTING_ARCHITECTURE | |
ed880dd4 | 154 | |
c801d85f | 155 | #endif |
bf38cbff | 156 | // _WX_DCPSG_H_ |