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