1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/print.h
3 // Author: Anthony Bretaudeau
4 // Purpose: GTK printing support
6 // RCS-ID: $Id: print.h,v 1 2007-08-25 05:44:44 PC Exp $
7 // Copyright: (c) Anthony Bretaudeau
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GTK_PRINT_H_
12 #define _WX_GTK_PRINT_H_
19 #include "wx/printdlg.h"
20 #include "wx/prntbase.h"
25 typedef struct _GtkPrintOperation GtkPrintOperation
;
26 typedef struct _GtkPrintContext GtkPrintContext
;
27 typedef struct _GtkPrintSettings GtkPrintSettings
;
28 typedef struct _GtkPageSetup GtkPageSetup
;
30 typedef struct _cairo cairo_t
;
32 //----------------------------------------------------------------------------
34 //----------------------------------------------------------------------------
36 class wxGtkPrintFactory
: public wxPrintFactory
39 virtual wxPrinterBase
*CreatePrinter( wxPrintDialogData
*data
);
41 virtual wxPrintPreviewBase
*CreatePrintPreview( wxPrintout
*preview
,
42 wxPrintout
*printout
= NULL
,
43 wxPrintDialogData
*data
= NULL
);
44 virtual wxPrintPreviewBase
*CreatePrintPreview( wxPrintout
*preview
,
48 virtual wxPrintDialogBase
*CreatePrintDialog( wxWindow
*parent
,
49 wxPrintDialogData
*data
= NULL
);
50 virtual wxPrintDialogBase
*CreatePrintDialog( wxWindow
*parent
,
53 virtual wxPageSetupDialogBase
*CreatePageSetupDialog( wxWindow
*parent
,
54 wxPageSetupDialogData
* data
= NULL
);
56 virtual wxDC
* CreatePrinterDC( const wxPrintData
& data
);
58 virtual bool HasPrintSetupDialog();
59 virtual wxDialog
*CreatePrintSetupDialog( wxWindow
*parent
, wxPrintData
*data
);
60 virtual bool HasOwnPrintToFile();
61 virtual bool HasPrinterLine();
62 virtual wxString
CreatePrinterLine();
63 virtual bool HasStatusLine();
64 virtual wxString
CreateStatusLine();
66 virtual wxPrintNativeDataBase
*CreatePrintNativeData();
69 //----------------------------------------------------------------------------
71 //----------------------------------------------------------------------------
73 class WXDLLIMPEXP_CORE wxGtkPrintDialog
: public wxPrintDialogBase
76 wxGtkPrintDialog( wxWindow
*parent
,
77 wxPrintDialogData
* data
= NULL
);
78 wxGtkPrintDialog( wxWindow
*parent
, wxPrintData
* data
);
79 virtual ~wxGtkPrintDialog();
81 wxPrintData
& GetPrintData()
82 { return m_printDialogData
.GetPrintData(); }
83 wxPrintDialogData
& GetPrintDialogData()
84 { return m_printDialogData
; }
86 wxDC
*GetPrintDC() { return m_dc
; }
87 void SetPrintDC(wxDC
* printDC
) { m_dc
= printDC
; }
89 virtual int ShowModal();
91 virtual bool Validate() { return true; }
92 virtual bool TransferDataToWindow() { return true; }
93 virtual bool TransferDataFromWindow() { return true; }
95 void SetShowDialog(bool show
) { m_showDialog
= show
; }
96 bool GetShowDialog() { return m_showDialog
; }
99 // Implement some base class methods to do nothing to avoid asserts and
100 // GTK warnings, since this is not a real wxDialog.
101 virtual void DoSetSize(int WXUNUSED(x
), int WXUNUSED(y
),
102 int WXUNUSED(width
), int WXUNUSED(height
),
103 int WXUNUSED(sizeFlags
) = wxSIZE_AUTO
) {}
104 virtual void DoMoveWindow(int WXUNUSED(x
), int WXUNUSED(y
),
105 int WXUNUSED(width
), int WXUNUSED(height
)) {}
108 wxPrintDialogData m_printDialogData
;
113 DECLARE_DYNAMIC_CLASS(wxGtkPrintDialog
)
116 //----------------------------------------------------------------------------
117 // wxGtkPageSetupDialog
118 //----------------------------------------------------------------------------
120 class WXDLLIMPEXP_CORE wxGtkPageSetupDialog
: public wxPageSetupDialogBase
123 wxGtkPageSetupDialog( wxWindow
*parent
,
124 wxPageSetupDialogData
* data
= NULL
);
125 virtual ~wxGtkPageSetupDialog();
127 virtual wxPageSetupDialogData
& GetPageSetupDialogData() { return m_pageDialogData
; }
129 virtual int ShowModal();
131 virtual bool Validate() { return true; }
132 virtual bool TransferDataToWindow() { return true; }
133 virtual bool TransferDataFromWindow() { return true; }
136 // Implement some base class methods to do nothing to avoid asserts and
137 // GTK warnings, since this is not a real wxDialog.
138 virtual void DoSetSize(int WXUNUSED(x
), int WXUNUSED(y
),
139 int WXUNUSED(width
), int WXUNUSED(height
),
140 int WXUNUSED(sizeFlags
) = wxSIZE_AUTO
) {}
141 virtual void DoMoveWindow(int WXUNUSED(x
), int WXUNUSED(y
),
142 int WXUNUSED(width
), int WXUNUSED(height
)) {}
145 wxPageSetupDialogData m_pageDialogData
;
148 DECLARE_DYNAMIC_CLASS(wxGtkPageSetupDialog
)
151 //----------------------------------------------------------------------------
153 //----------------------------------------------------------------------------
155 class WXDLLIMPEXP_CORE wxGtkPrinter
: public wxPrinterBase
158 wxGtkPrinter(wxPrintDialogData
*data
= NULL
);
159 virtual ~wxGtkPrinter();
161 virtual bool Print(wxWindow
*parent
,
162 wxPrintout
*printout
,
164 virtual wxDC
* PrintDialog(wxWindow
*parent
);
165 virtual bool Setup(wxWindow
*parent
);
167 GtkPrintContext
*GetPrintContext() { return m_gpc
; }
168 void SetPrintContext(GtkPrintContext
*context
) {m_gpc
= context
;}
169 void BeginPrint(wxPrintout
*printout
, GtkPrintOperation
*operation
, GtkPrintContext
*context
);
170 void DrawPage(wxPrintout
*printout
, GtkPrintOperation
*operation
, GtkPrintContext
*context
, int page_nr
);
173 GtkPrintContext
*m_gpc
;
176 DECLARE_DYNAMIC_CLASS(wxGtkPrinter
)
177 DECLARE_NO_COPY_CLASS(wxGtkPrinter
)
180 //----------------------------------------------------------------------------
181 // wxGtkPrintNativeData
182 //----------------------------------------------------------------------------
184 class WXDLLIMPEXP_CORE wxGtkPrintNativeData
: public wxPrintNativeDataBase
187 wxGtkPrintNativeData();
188 virtual ~wxGtkPrintNativeData();
190 virtual bool TransferTo( wxPrintData
&data
);
191 virtual bool TransferFrom( const wxPrintData
&data
);
193 virtual bool Ok() const { return IsOk(); }
194 virtual bool IsOk() const { return true; }
196 GtkPrintSettings
* GetPrintConfig() { return m_config
; }
197 void SetPrintConfig( GtkPrintSettings
* config
);
199 void SetPrintJob( GtkPrintOperation
*job
) { m_job
= job
; }
200 GtkPrintOperation
* GetPrintJob() { return m_job
; }
202 GtkPrintContext
*GetPrintContext() { return m_context
; }
203 void SetPrintContext(GtkPrintContext
*context
) {m_context
= context
; }
206 GtkPageSetup
* GetPageSetupFromSettings(GtkPrintSettings
* settings
);
207 void SetPageSetupToSettings(GtkPrintSettings
* settings
, GtkPageSetup
* page_setup
);
210 GtkPrintSettings
*m_config
;
211 GtkPrintOperation
*m_job
;
212 GtkPrintContext
*m_context
;
214 DECLARE_DYNAMIC_CLASS(wxGtkPrintNativeData
)
217 //-----------------------------------------------------------------------------
219 //-----------------------------------------------------------------------------
221 class WXDLLIMPEXP_CORE wxGtkPrintDC
: public wxDC
224 wxGtkPrintDC( const wxPrintData
& data
);
225 virtual ~wxGtkPrintDC();
227 bool Ok() const { return IsOk(); }
230 bool CanDrawBitmap() const { return true; }
232 void SetFont( const wxFont
& font
);
233 void SetPen( const wxPen
& pen
);
234 void SetBrush( const wxBrush
& brush
);
235 void SetLogicalFunction( int function
);
236 void SetBackground( const wxBrush
& brush
);
237 void DestroyClippingRegion();
238 bool StartDoc(const wxString
& message
);
242 wxCoord
GetCharHeight() const;
243 wxCoord
GetCharWidth() const;
244 bool CanGetTextExtent() const { return true; }
245 wxSize
GetPPI() const;
246 virtual int GetDepth() const { return 24; }
247 void SetBackgroundMode(int mode
);
248 void SetPalette(const wxPalette
& WXUNUSED(palette
)) { }
249 void SetResolution(int ppi
);
253 bool DoFloodFill(wxCoord x1
, wxCoord y1
, const wxColour
&col
, int style
=wxFLOOD_SURFACE
);
254 void DoGradientFillConcentric(const wxRect
& rect
, const wxColour
& initialColour
, const wxColour
& destColour
, const wxPoint
& circleCenter
);
255 void DoGradientFillLinear(const wxRect
& rect
, const wxColour
& initialColour
, const wxColour
& destColour
, wxDirection nDirection
= wxEAST
);
256 bool DoGetPixel(wxCoord x1
, wxCoord y1
, wxColour
*col
) const;
257 void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
);
258 void DoCrossHair(wxCoord x
, wxCoord y
);
259 void DoDrawArc(wxCoord x1
,wxCoord y1
,wxCoord x2
,wxCoord y2
,wxCoord xc
,wxCoord yc
);
260 void DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
);
261 void DoDrawPoint(wxCoord x
, wxCoord y
);
262 void DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
= 0, wxCoord yoffset
= 0);
263 void DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
= 0, wxCoord yoffset
= 0, int fillStyle
=wxODDEVEN_RULE
);
264 void DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[], wxCoord xoffset
= 0, wxCoord yoffset
= 0, int fillStyle
=wxODDEVEN_RULE
);
265 void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
266 void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
= 20.0);
267 void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
269 void DoDrawSpline(const wxPointList
*points
);
270 #endif // wxUSE_SPLINES
271 bool DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
272 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, int rop
= wxCOPY
, bool useMask
= false,
273 wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
);
274 void DoDrawIcon( const wxIcon
& icon
, wxCoord x
, wxCoord y
);
275 void DoDrawBitmap( const wxBitmap
& bitmap
, wxCoord x
, wxCoord y
, bool useMask
= false );
276 void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
);
277 void DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
);
278 void DoSetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
279 void DoSetClippingRegionAsRegion( const wxRegion
&WXUNUSED(clip
) ) { }
280 void DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
281 wxCoord
*descent
= (wxCoord
*) NULL
,
282 wxCoord
*externalLeading
= (wxCoord
*) NULL
,
283 const wxFont
*theFont
= (wxFont
*) NULL
) const;
284 void DoGetSize(int* width
, int* height
) const;
285 void DoGetSizeMM(int *width
, int *height
) const;
287 wxPrintData
& GetPrintData() { return m_printData
; }
288 void SetPrintData(const wxPrintData
& data
);
291 wxPrintData m_printData
;
292 PangoContext
*m_context
;
293 PangoLayout
*m_layout
;
294 PangoFontDescription
*m_fontdesc
;
297 unsigned char m_currentRed
;
298 unsigned char m_currentGreen
;
299 unsigned char m_currentBlue
;
300 unsigned char m_currentAlpha
;
302 GtkPrintContext
*m_gpc
;
307 DECLARE_DYNAMIC_CLASS(wxGtkPrintDC
)
308 DECLARE_NO_COPY_CLASS(wxGtkPrintDC
)
311 // ----------------------------------------------------------------------------
312 // wxGtkPrintPreview: programmer creates an object of this class to preview a
314 // ----------------------------------------------------------------------------
316 class WXDLLIMPEXP_CORE wxGtkPrintPreview
: public wxPrintPreviewBase
319 wxGtkPrintPreview(wxPrintout
*printout
,
320 wxPrintout
*printoutForPrinting
= (wxPrintout
*) NULL
,
321 wxPrintDialogData
*data
= (wxPrintDialogData
*) NULL
);
322 wxGtkPrintPreview(wxPrintout
*printout
,
323 wxPrintout
*printoutForPrinting
,
326 virtual ~wxGtkPrintPreview();
328 virtual bool Print(bool interactive
);
329 virtual void DetermineScaling();
332 void Init(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
);
334 DECLARE_CLASS(wxGtkPrintPreview
)