]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/gnome/gprint.h
set eol-style
[wxWidgets.git] / include / wx / gtk / gnome / gprint.h
CommitLineData
ff910433 1/////////////////////////////////////////////////////////////////////////////
389076f1 2// Name: wx/gtk/gnome/gprint.h
ff910433
RR
3// Author: Robert Roebling
4// Purpose: GNOME printing support
5// Created: 09/20/04
389076f1 6// RCS-ID: $Id$
ff910433 7// Copyright: Robert Roebling
7c72311f 8// Licence: wxWindows Licence
ff910433
RR
9/////////////////////////////////////////////////////////////////////////////
10
3498362e
PC
11#ifndef _WX_GTK_GPRINT_H_
12#define _WX_GTK_GPRINT_H_
ff910433 13
20ceebaa 14#include "wx/defs.h"
ff910433 15
7c72311f
RR
16#if wxUSE_LIBGNOMEPRINT
17
ff910433 18#include "wx/print.h"
ff910433 19#include "wx/printdlg.h"
20ceebaa 20#include "wx/dc.h"
ff910433
RR
21
22typedef struct _GnomePrintJob GnomePrintJob;
23typedef struct _GnomePrintContext GnomePrintContext;
24typedef struct _GnomePrintConfig GnomePrintConfig;
25
26//----------------------------------------------------------------------------
27// wxGnomePrintNativeData
28//----------------------------------------------------------------------------
29
30class wxGnomePrintNativeData: public wxPrintNativeDataBase
31{
32public:
33 wxGnomePrintNativeData();
34 virtual ~wxGnomePrintNativeData();
389076f1 35
ff910433
RR
36 virtual bool TransferTo( wxPrintData &data );
37 virtual bool TransferFrom( const wxPrintData &data );
389076f1 38
b7cacb43
VZ
39 virtual bool Ok() const { return IsOk(); }
40 virtual bool IsOk() const { return true; }
389076f1 41
ff910433 42 GnomePrintConfig* GetPrintConfig() { return m_config; }
cffcf831 43 void SetPrintJob( GnomePrintJob *job ) { m_job = job; }
ff910433 44 GnomePrintJob* GetPrintJob() { return m_job; }
389076f1
WS
45
46
ff910433
RR
47private:
48 GnomePrintConfig *m_config;
49 GnomePrintJob *m_job;
389076f1 50
ff910433
RR
51 DECLARE_DYNAMIC_CLASS(wxGnomePrintNativeData)
52};
389076f1 53
ff910433
RR
54//----------------------------------------------------------------------------
55// wxGnomePrintFactory
56//----------------------------------------------------------------------------
57
58class wxGnomePrintFactory: public wxPrintFactory
59{
60public:
61 virtual wxPrinterBase *CreatePrinter( wxPrintDialogData *data );
389076f1
WS
62
63 virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
64 wxPrintout *printout = NULL,
ff910433 65 wxPrintDialogData *data = NULL );
389076f1 66 virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
ff910433
RR
67 wxPrintout *printout,
68 wxPrintData *data );
389076f1
WS
69
70 virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
ff910433 71 wxPrintDialogData *data = NULL );
389076f1 72 virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
ff910433 73 wxPrintData *data );
08680429
RR
74
75 virtual wxPageSetupDialogBase *CreatePageSetupDialog( wxWindow *parent,
76 wxPageSetupDialogData * data = NULL );
389076f1 77
147bf263
JS
78 virtual wxDC* CreatePrinterDC( const wxPrintData& data );
79
ff910433
RR
80 virtual bool HasPrintSetupDialog();
81 virtual wxDialog *CreatePrintSetupDialog( wxWindow *parent, wxPrintData *data );
82 virtual bool HasOwnPrintToFile();
83 virtual bool HasPrinterLine();
84 virtual wxString CreatePrinterLine();
85 virtual bool HasStatusLine();
86 virtual wxString CreateStatusLine();
389076f1 87
ff910433
RR
88 virtual wxPrintNativeDataBase *CreatePrintNativeData();
89};
90
91//----------------------------------------------------------------------------
2934005d 92// wxGnomePrintDialog
ff910433
RR
93//----------------------------------------------------------------------------
94
2934005d 95class wxGnomePrintDialog: public wxPrintDialogBase
ff910433
RR
96{
97public:
2934005d 98 wxGnomePrintDialog( wxWindow *parent,
08680429 99 wxPrintDialogData* data = NULL );
2934005d 100 wxGnomePrintDialog( wxWindow *parent, wxPrintData* data);
d3c7fc99 101 virtual ~wxGnomePrintDialog();
2934005d
RR
102
103 wxPrintData& GetPrintData()
104 { return m_printDialogData.GetPrintData(); }
105 wxPrintDialogData& GetPrintDialogData()
106 { return m_printDialogData; }
389076f1 107
2934005d 108 wxDC *GetPrintDC();
ff910433
RR
109
110 virtual int ShowModal();
111
112 virtual bool Validate();
113 virtual bool TransferDataToWindow();
114 virtual bool TransferDataFromWindow();
115
3498362e 116protected:
ff910433
RR
117 // Implement some base class methods to do nothing to avoid asserts and
118 // GTK warnings, since this is not a real wxDialog.
119 virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
120 int WXUNUSED(width), int WXUNUSED(height),
121 int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
122 virtual void DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y),
123 int WXUNUSED(width), int WXUNUSED(height)) {}
389076f1 124
3498362e 125private:
2934005d
RR
126 void Init();
127 wxPrintDialogData m_printDialogData;
389076f1 128
2934005d 129 DECLARE_DYNAMIC_CLASS(wxGnomePrintDialog)
ff910433
RR
130};
131
132//----------------------------------------------------------------------------
08680429
RR
133// wxGnomePageSetupDialog
134//----------------------------------------------------------------------------
135
136class wxGnomePageSetupDialog: public wxPageSetupDialogBase
137{
138public:
139 wxGnomePageSetupDialog( wxWindow *parent,
140 wxPageSetupDialogData* data = NULL );
d3c7fc99 141 virtual ~wxGnomePageSetupDialog();
08680429
RR
142
143 virtual wxPageSetupDialogData& GetPageSetupDialogData();
144
145 virtual int ShowModal();
146
147 virtual bool Validate();
148 virtual bool TransferDataToWindow();
149 virtual bool TransferDataFromWindow();
150
3498362e 151protected:
08680429
RR
152 // Implement some base class methods to do nothing to avoid asserts and
153 // GTK warnings, since this is not a real wxDialog.
154 virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
155 int WXUNUSED(width), int WXUNUSED(height),
156 int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
157 virtual void DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y),
158 int WXUNUSED(width), int WXUNUSED(height)) {}
389076f1 159
3498362e 160private:
08680429 161 wxPageSetupDialogData m_pageDialogData;
389076f1 162
08680429
RR
163 DECLARE_DYNAMIC_CLASS(wxGnomePageSetupDialog)
164};
165
166//----------------------------------------------------------------------------
ff910433
RR
167// wxGnomePrinter
168//----------------------------------------------------------------------------
169
170class wxGnomePrinter: public wxPrinterBase
171{
172public:
173 wxGnomePrinter(wxPrintDialogData *data = NULL);
174 virtual ~wxGnomePrinter();
175
176 virtual bool Print(wxWindow *parent,
177 wxPrintout *printout,
178 bool prompt = true);
179 virtual wxDC* PrintDialog(wxWindow *parent);
180 virtual bool Setup(wxWindow *parent);
389076f1 181
ff910433 182private:
0be7709e 183 bool m_native_preview;
ff910433
RR
184
185private:
186 DECLARE_DYNAMIC_CLASS(wxGnomePrinter)
187 DECLARE_NO_COPY_CLASS(wxGnomePrinter)
188};
189
190//-----------------------------------------------------------------------------
191// wxGnomePrintDC
192//-----------------------------------------------------------------------------
193
194class wxGnomePrintDC: public wxDC
195{
196public:
147bf263 197 wxGnomePrintDC( const wxPrintData& data );
d3c7fc99 198 virtual ~wxGnomePrintDC();
389076f1 199
b7cacb43
VZ
200 bool Ok() const { return IsOk(); }
201 bool IsOk() const;
389076f1 202
3498362e
PC
203 bool CanDrawBitmap() const { return true; }
204 void Clear();
205 void SetFont( const wxFont& font );
206 void SetPen( const wxPen& pen );
207 void SetBrush( const wxBrush& brush );
208 void SetLogicalFunction( int function );
209 void SetBackground( const wxBrush& brush );
210 void DestroyClippingRegion();
211 bool StartDoc(const wxString& message);
212 void EndDoc();
213 void StartPage();
214 void EndPage();
215 wxCoord GetCharHeight() const;
216 wxCoord GetCharWidth() const;
217 bool CanGetTextExtent() const { return true; }
218 wxSize GetPPI() const;
219 void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
220 void SetLogicalOrigin( wxCoord x, wxCoord y );
221 void SetDeviceOrigin( wxCoord x, wxCoord y );
222 virtual int GetDepth() const { return 24; }
223 void SetBackgroundMode(int WXUNUSED(mode)) { }
224 void SetPalette(const wxPalette& WXUNUSED(palette)) { }
225 static void SetResolution(int ppi);
226 static int GetResolution();
227
228protected:
ff910433
RR
229 bool DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style=wxFLOOD_SURFACE );
230 bool DoGetPixel(wxCoord x1, wxCoord y1, wxColour *col) const;
231 void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
232 void DoCrossHair(wxCoord x, wxCoord y);
233 void DoDrawArc(wxCoord x1,wxCoord y1,wxCoord x2,wxCoord y2,wxCoord xc,wxCoord yc);
234 void DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea);
235 void DoDrawPoint(wxCoord x, wxCoord y);
236 void DoDrawLines(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0);
237 void DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle=wxODDEVEN_RULE);
238 void DoDrawPolyPolygon(int n, int count[], wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0, int fillStyle=wxODDEVEN_RULE);
239 void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
240 void DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 20.0);
241 void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
389076f1 242#if wxUSE_SPLINES
ff910433 243 void DoDrawSpline(wxList *points);
389076f1 244#endif // wxUSE_SPLINES
ff910433
RR
245 bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
246 wxDC *source, wxCoord xsrc, wxCoord ysrc, int rop = wxCOPY, bool useMask = false,
247 wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord);
248 void DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y );
249 void DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask = false );
ff910433
RR
250 void DoDrawText(const wxString& text, wxCoord x, wxCoord y );
251 void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
ff910433 252 void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
ff910433 253 void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip) ) { }
ff910433
RR
254 void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
255 wxCoord *descent = (wxCoord *) NULL,
256 wxCoord *externalLeading = (wxCoord *) NULL,
c94f845b 257 const wxFont *theFont = (wxFont *) NULL ) const;
ff910433
RR
258 void DoGetSize(int* width, int* height) const;
259 void DoGetSizeMM(int *width, int *height) const;
389076f1 260
3b7ab6bd 261 void SetPrintData(const wxPrintData& data);
ff910433 262 wxPrintData& GetPrintData() { return m_printData; }
389076f1 263
ff910433
RR
264private:
265 static float ms_PSScaleFactor;
389076f1 266
ff910433 267private:
147bf263 268 wxPrintData m_printData;
ff910433
RR
269 PangoContext *m_context;
270 PangoLayout *m_layout;
271 PangoFontDescription *m_fontdesc;
389076f1 272
ff910433
RR
273 unsigned char m_currentRed;
274 unsigned char m_currentGreen;
275 unsigned char m_currentBlue;
c94f845b 276
649707a5 277 int m_deviceOffsetY;
389076f1 278
ff910433 279 GnomePrintContext *m_gpc;
3b7ab6bd 280 GnomePrintJob* m_job;
ff910433 281
74ab0bfb 282 void makeEllipticalPath(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
c94f845b 283
ff910433
RR
284private:
285 wxCoord XDEV2LOG(wxCoord x) const
286 {
2ac9bfa9 287 return wxRound((double)(x - m_deviceOriginX) / m_scaleX) * m_signX + m_logicalOriginX;
ff910433
RR
288 }
289 wxCoord XDEV2LOGREL(wxCoord x) const
290 {
2ac9bfa9 291 return wxRound((double)(x) / m_scaleX);
ff910433
RR
292 }
293 wxCoord YDEV2LOG(wxCoord y) const
294 {
649707a5 295 return wxRound((double)(y + m_deviceOriginY - m_deviceOffsetY) / m_scaleY) * m_signY + m_logicalOriginY;
ff910433
RR
296 }
297 wxCoord YDEV2LOGREL(wxCoord y) const
298 {
2ac9bfa9 299 return wxRound((double)(y) / m_scaleY);
ff910433
RR
300 }
301 wxCoord XLOG2DEV(wxCoord x) const
302 {
2ac9bfa9 303 return wxRound((double)(x - m_logicalOriginX) * m_scaleX) * m_signX + m_deviceOriginX;
ff910433
RR
304 }
305 wxCoord XLOG2DEVREL(wxCoord x) const
306 {
2ac9bfa9 307 return wxRound((double)(x) * m_scaleX);
ff910433
RR
308 }
309 wxCoord YLOG2DEV(wxCoord y) const
310 {
649707a5 311 return wxRound((double)(y - m_logicalOriginY) * m_scaleY) * m_signY - m_deviceOriginY + m_deviceOffsetY;
ff910433
RR
312 }
313 wxCoord YLOG2DEVREL(wxCoord y) const
314 {
2ac9bfa9 315 return wxRound((double)(y) * m_scaleY);
ff910433
RR
316 }
317private:
318 DECLARE_DYNAMIC_CLASS(wxGnomePrintDC)
319 DECLARE_NO_COPY_CLASS(wxGnomePrintDC)
320};
321
147bf263
JS
322// ----------------------------------------------------------------------------
323// wxGnomePrintPreview: programmer creates an object of this class to preview a
324// wxPrintout.
325// ----------------------------------------------------------------------------
326
459dbfc0 327class wxGnomePrintPreview : public wxPrintPreviewBase
147bf263
JS
328{
329public:
330 wxGnomePrintPreview(wxPrintout *printout,
331 wxPrintout *printoutForPrinting = (wxPrintout *) NULL,
332 wxPrintDialogData *data = (wxPrintDialogData *) NULL);
333 wxGnomePrintPreview(wxPrintout *printout,
334 wxPrintout *printoutForPrinting,
335 wxPrintData *data);
336
337 virtual ~wxGnomePrintPreview();
338
339 virtual bool Print(bool interactive);
340 virtual void DetermineScaling();
341
342private:
343 void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);
344
345private:
346 DECLARE_CLASS(wxGnomePrintPreview)
347};
348
349
7c72311f
RR
350#endif
351 // wxUSE_LIBGNOMEPRINT
352
ff910433 353#endif