]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/dcpsg.h
SGI compilation fixes
[wxWidgets.git] / include / wx / generic / dcpsg.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
bf38cbff 2// Name: dcps.h
c801d85f
KB
3// Purpose: wxPostScriptDC class
4// Author: Julian Smart and others
5// Modified by:
c801d85f 6// RCS-ID: $Id$
bf38cbff 7// Copyright: (c) Julian Smart, Robert Roebling and Markus Holzem
a6f6393c 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
bf38cbff
JS
11#ifndef _WX_DCPSG_H_
12#define _WX_DCPSG_H_
c801d85f
KB
13
14#ifdef __GNUG__
bf38cbff 15#pragma interface
c801d85f
KB
16#endif
17
18#include "wx/dc.h"
c801d85f 19
47d67540 20#if wxUSE_POSTSCRIPT
c801d85f 21
bf38cbff
JS
22#include "wx/dialog.h"
23#include "wx/module.h"
24#include <fstream.h>
fbc535ff 25
f04371f0 26
bf38cbff
JS
27//-----------------------------------------------------------------------------
28// classes
29//-----------------------------------------------------------------------------
f04371f0 30
bf38cbff 31class wxPostScriptDC;
f04371f0 32
bf38cbff
JS
33//-----------------------------------------------------------------------------
34// wxPostScriptDC
35//-----------------------------------------------------------------------------
f04371f0 36
c801d85f
KB
37class WXDLLEXPORT wxPostScriptDC: public wxDC
38{
39 DECLARE_DYNAMIC_CLASS(wxPostScriptDC)
40
bf38cbff
JS
41public:
42
a6f6393c 43 wxPostScriptDC();
c67daf87 44 wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
c801d85f 45
a6f6393c 46 ~wxPostScriptDC();
c801d85f 47
c67daf87 48 bool Create(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
c801d85f 49
bf38cbff
JS
50 virtual bool Ok() const;
51
c67daf87 52 virtual bool PrinterDialog(wxWindow *parent = (wxWindow *) NULL);
c801d85f 53
bf38cbff
JS
54 virtual void BeginDrawing() {}
55 virtual void EndDrawing() {}
c801d85f 56
463c1fa1 57 void FloodFill(long x1, long y1, const wxColour &col, int style=wxFLOOD_SURFACE) ;
c801d85f
KB
58 bool GetPixel(long x1, long y1, wxColour *col) const;
59
60 void DrawLine(long x1, long y1, long x2, long y2);
61 void CrossHair(long x, long y) ;
62 void DrawArc(long x1,long y1,long x2,long y2,long xc,long yc);
63 void DrawEllipticArc(long x,long y,long w,long h,double sa,double ea);
64 void DrawPoint(long x, long y);
65 // Avoid compiler warning
66 void DrawPoint(wxPoint& point) { wxDC::DrawPoint(point); }
67 void DrawLines(int n, wxPoint points[], long xoffset = 0, long yoffset = 0);
68 // Avoid compiler warning
69 void DrawLines(wxList *lines, long xoffset = 0, long yoffset = 0)
70 { wxDC::DrawLines(lines, xoffset, yoffset); }
71 void DrawPolygon(int n, wxPoint points[], long xoffset = 0, long yoffset = 0, int fillStyle=wxODDEVEN_RULE);
72 // Avoid compiler warning
73 void DrawPolygon(wxList *lines, long xoffset = 0, long yoffset = 0, int fillStyle=wxODDEVEN_RULE)
74 { wxDC::DrawPolygon(lines, xoffset, yoffset, fillStyle); }
75 void DrawRectangle(long x, long y, long width, long height);
76 void DrawRoundedRectangle(long x, long y, long width, long height, double radius = 20);
77 void DrawEllipse(long x, long y, long width, long height);
78
c801d85f 79 void DrawSpline(wxList *points);
c801d85f 80
bf38cbff
JS
81 bool Blit(long xdest, long ydest, long width, long height,
82 wxDC *source, long xsrc, long ysrc, int rop = wxCOPY, bool useMask = FALSE);
83 inline bool CanDrawBitmap(void) const { return TRUE; }
84
463c1fa1
RR
85 void DrawIcon( const wxIcon& icon, long x, long y );
86 void DrawBitmap( const wxBitmap& bitmap, long x, long y, bool useMask=FALSE );
bf38cbff 87
c801d85f
KB
88 void DrawText(const wxString& text, long x, long y, bool use16 = FALSE);
89
a6f6393c 90 void Clear();
bf38cbff
JS
91 void SetFont( const wxFont& font );
92 void SetPen( const wxPen& pen );
93 void SetBrush( const wxBrush& brush );
94 void SetLogicalFunction( int function );
95 void SetBackground( const wxBrush& brush );
96
c801d85f 97 void SetClippingRegion(long x, long y, long width, long height);
463c1fa1 98 void SetClippingRegion( const wxRegion &region );
a6f6393c 99 void DestroyClippingRegion();
c801d85f
KB
100
101 bool StartDoc(const wxString& message);
a6f6393c
VZ
102 void EndDoc();
103 void StartPage();
104 void EndPage();
c801d85f 105
a6f6393c
VZ
106 long GetCharHeight();
107 long GetCharWidth();
bf38cbff 108 inline bool CanGetTextExtent(void) const { return FALSE; }
c801d85f 109 void GetTextExtent(const wxString& string, long *x, long *y,
a6f6393c
VZ
110 long *descent = (long *) NULL,
111 long *externalLeading = (long *) NULL,
c67daf87 112 wxFont *theFont = (wxFont *) NULL, bool use16 = FALSE);
c801d85f
KB
113
114 void GetSize(int* width, int* height) const;
115 void GetSizeMM(long *width, long *height) const;
116
bf38cbff
JS
117 void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
118 void SetDeviceOrigin( long x, long y );
119
120 inline void SetBackgroundMode(int WXUNUSED(mode)) {}
c801d85f 121 inline void SetPalette(const wxPalette& WXUNUSED(palette)) {}
c801d85f 122
bf38cbff 123 inline ofstream *GetStream(void) const { return m_pstream; }
c801d85f
KB
124
125protected:
bf38cbff 126
c801d85f
KB
127 ofstream * m_pstream; // PostScript output stream
128 wxString m_title;
129 unsigned char m_currentRed;
130 unsigned char m_currentGreen;
131 unsigned char m_currentBlue;
bf38cbff
JS
132 int m_pageNumber;
133 bool m_clipping;
134 double m_underlinePosition;
135 double m_underlineThickness;
136};
137
bf38cbff
JS
138// TODO Needed? Should perhaps use wxGenericPrintDialog instead.
139#if 1
c801d85f
KB
140#define wxID_PRINTER_COMMAND 1
141#define wxID_PRINTER_OPTIONS 2
142#define wxID_PRINTER_ORIENTATION 3
143#define wxID_PRINTER_MODES 4
144#define wxID_PRINTER_X_SCALE 5
145#define wxID_PRINTER_Y_SCALE 6
146#define wxID_PRINTER_X_TRANS 7
147#define wxID_PRINTER_Y_TRANS 8
148
149class WXDLLEXPORT wxPostScriptPrintDialog: public wxDialog
150{
151DECLARE_CLASS(wxPostScriptPrintDialog)
152public:
153 wxPostScriptPrintDialog (wxWindow *parent, const wxString& title,
a6f6393c
VZ
154 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
155 long style = wxDEFAULT_DIALOG_STYLE);
c801d85f
KB
156
157 virtual int ShowModal(void) ;
158};
bf38cbff 159#endif
c801d85f
KB
160
161// Print Orientation (Should also add Left, Right)
162enum {
163 PS_PORTRAIT = 1,
164 PS_LANDSCAPE = 2
165};// ps_orientation = PS_PORTRAIT;
166
167// Print Actions
168enum {
169 PS_PRINTER,
170 PS_FILE,
171 PS_PREVIEW
172};// ps_action = PS_PREVIEW;
173
174// PostScript printer settings
184b5d99
JS
175WXDLLEXPORT void wxSetPrinterCommand(const char *cmd);
176WXDLLEXPORT void wxSetPrintPreviewCommand(const char *cmd);
177WXDLLEXPORT void wxSetPrinterOptions(const char *flags);
178WXDLLEXPORT void wxSetPrinterOrientation(int orientation);
179WXDLLEXPORT void wxSetPrinterScaling(double x, double y);
180WXDLLEXPORT void wxSetPrinterTranslation(long x, long y);
181WXDLLEXPORT void wxSetPrinterMode(int mode);
182WXDLLEXPORT void wxSetPrinterFile(const char *f);
183WXDLLEXPORT void wxSetAFMPath(const char *f);
c801d85f
KB
184
185// Get current values
a6f6393c
VZ
186WXDLLEXPORT char* wxGetPrinterCommand();
187WXDLLEXPORT char* wxGetPrintPreviewCommand();
188WXDLLEXPORT char* wxGetPrinterOptions();
189WXDLLEXPORT int wxGetPrinterOrientation();
184b5d99
JS
190WXDLLEXPORT void wxGetPrinterScaling(double* x, double* y);
191WXDLLEXPORT void wxGetPrinterTranslation(long *x, long *y);
a6f6393c
VZ
192WXDLLEXPORT int wxGetPrinterMode();
193WXDLLEXPORT char* wxGetPrinterFile();
194WXDLLEXPORT char* wxGetAFMPath();
c801d85f
KB
195
196/*
197 * PostScript print setup information
198 */
199
200class WXDLLEXPORT wxPrintSetupData: public wxObject
201{
a6f6393c
VZ
202public:
203 char *printerCommand;
204 char *previewCommand;
205 char *printerFlags;
206 char *printerFile;
207 int printerOrient;
208 double printerScaleX;
209 double printerScaleY;
210 long printerTranslateX;
211 long printerTranslateY;
212 // 1 = Preview, 2 = print to file, 3 = send to printer
213 int printerMode;
214 char *afmPath;
215 // A name in the paper database (see wx_print.h: the printing framework)
216 char *paperName;
217 bool printColour;
c801d85f 218
a6f6393c
VZ
219public:
220 wxPrintSetupData();
221 ~wxPrintSetupData();
222
223 void SetPrinterCommand(const char *cmd);
224 void SetPaperName(const char *paper);
225 void SetPrintPreviewCommand(const char *cmd);
226 void SetPrinterOptions(const char *flags);
227 void SetPrinterFile(const char *f);
228 void SetPrinterOrientation(int orient);
229 void SetPrinterScaling(double x, double y);
230 void SetPrinterTranslation(long x, long y);
231 // 1 = Preview, 2 = print to file, 3 = send to printer
232 void SetPrinterMode(int mode);
233 void SetAFMPath(const char *f);
234 void SetColour(bool col);
235
236 // Get current values
237 char *GetPrinterCommand();
238 char *GetPrintPreviewCommand();
239 char *GetPrinterOptions();
240 char *GetPrinterFile();
241 char *GetPaperName();
242 int GetPrinterOrientation();
243 void GetPrinterScaling(double* x, double* y);
244 void GetPrinterTranslation(long *x, long *y);
245 int GetPrinterMode();
246 char *GetAFMPath();
247 bool GetColour();
248
249 void operator=(wxPrintSetupData& data);
250
251private:
252 DECLARE_DYNAMIC_CLASS(wxPrintSetupData)
c801d85f
KB
253};
254
184b5d99
JS
255WXDLLEXPORT_DATA(extern wxPrintSetupData*) wxThePrintSetupData;
256WXDLLEXPORT extern void wxInitializePrintSetupData(bool init = TRUE);
c801d85f 257
bf38cbff
JS
258#endif
259 // wxUSE_POSTSCRIPT
ed880dd4 260
c801d85f 261#endif
bf38cbff 262 // _WX_DCPSG_H_