1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/print.cpp
3 // Author: Anthony Bretaudeau
4 // Purpose: GTK printing support
7 // Copyright: (c) 2007 wxWidgets development team
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx/wx.h".
12 #include "wx/wxprec.h"
20 #include "wx/gtk/print.h"
24 #include "wx/dcmemory.h"
25 #include "wx/dcprint.h"
29 #include "wx/module.h"
33 #include "wx/fontutil.h"
34 #include "wx/dynlib.h"
36 #include "wx/scopeguard.h"
40 #if GTK_CHECK_VERSION(2,14,0)
41 #include <gtk/gtkunixprint.h>
43 #include <gtk/gtkpagesetupunixdialog.h>
47 #if wxUSE_GRAPHICS_CONTEXT
48 #include "wx/graphics.h"
52 wxFORCE_LINK_THIS_MODULE(gtk_print
)
54 #if wxUSE_LIBGNOMEPRINT
55 #include "wx/gtk/gnome/gprint.h"
58 #include "wx/gtk/private/object.h"
60 // Useful to convert angles from/to Rad to/from Deg.
61 static const double RAD2DEG
= 180.0 / M_PI
;
62 static const double DEG2RAD
= M_PI
/ 180.0;
64 //----------------------------------------------------------------------------
66 // Initialized when starting the app : if it successfully load the gtk-print framework,
67 // it uses it. If not, it falls back to gnome print (see /gtk/gnome/gprint.cpp) then
68 // to postscript if gnomeprint is not available.
69 //----------------------------------------------------------------------------
71 class wxGtkPrintModule
: public wxModule
76 #if wxUSE_LIBGNOMEPRINT
77 // This module must be initialized AFTER gnomeprint's one
78 AddDependency(wxCLASSINFO(wxGnomePrintModule
));
85 DECLARE_DYNAMIC_CLASS(wxGtkPrintModule
)
88 bool wxGtkPrintModule::OnInit()
91 if (gtk_check_version(2,10,0) == NULL
)
94 wxPrintFactory::SetPrintFactory( new wxGtkPrintFactory
);
99 IMPLEMENT_DYNAMIC_CLASS(wxGtkPrintModule
, wxModule
)
101 //----------------------------------------------------------------------------
103 //----------------------------------------------------------------------------
105 wxPrinterBase
* wxGtkPrintFactory::CreatePrinter( wxPrintDialogData
*data
)
107 return new wxGtkPrinter( data
);
110 wxPrintPreviewBase
*wxGtkPrintFactory::CreatePrintPreview( wxPrintout
*preview
,
111 wxPrintout
*printout
,
112 wxPrintDialogData
*data
)
114 return new wxGtkPrintPreview( preview
, printout
, data
);
117 wxPrintPreviewBase
*wxGtkPrintFactory::CreatePrintPreview( wxPrintout
*preview
,
118 wxPrintout
*printout
,
121 return new wxGtkPrintPreview( preview
, printout
, data
);
124 wxPrintDialogBase
*wxGtkPrintFactory::CreatePrintDialog( wxWindow
*parent
,
125 wxPrintDialogData
*data
)
127 return new wxGtkPrintDialog( parent
, data
);
130 wxPrintDialogBase
*wxGtkPrintFactory::CreatePrintDialog( wxWindow
*parent
,
133 return new wxGtkPrintDialog( parent
, data
);
136 wxPageSetupDialogBase
*wxGtkPrintFactory::CreatePageSetupDialog( wxWindow
*parent
,
137 wxPageSetupDialogData
* data
)
139 return new wxGtkPageSetupDialog( parent
, data
);
142 bool wxGtkPrintFactory::HasPrintSetupDialog()
148 wxGtkPrintFactory::CreatePrintSetupDialog(wxWindow
* WXUNUSED(parent
),
149 wxPrintData
* WXUNUSED(data
))
154 wxDCImpl
* wxGtkPrintFactory::CreatePrinterDCImpl( wxPrinterDC
*owner
, const wxPrintData
& data
)
156 return new wxGtkPrinterDCImpl( owner
, data
);
159 bool wxGtkPrintFactory::HasOwnPrintToFile()
164 bool wxGtkPrintFactory::HasPrinterLine()
169 wxString
wxGtkPrintFactory::CreatePrinterLine()
172 return wxEmptyString
;
175 bool wxGtkPrintFactory::HasStatusLine()
181 wxString
wxGtkPrintFactory::CreateStatusLine()
184 return wxEmptyString
;
187 wxPrintNativeDataBase
*wxGtkPrintFactory::CreatePrintNativeData()
189 return new wxGtkPrintNativeData
;
192 //----------------------------------------------------------------------------
193 // Callback functions for Gtk Printings.
194 //----------------------------------------------------------------------------
196 // We use it to pass useful objects to GTK printing callback functions.
197 struct wxPrinterToGtkData
199 wxGtkPrinter
* printer
;
200 wxPrintout
* printout
;
205 static void gtk_begin_print_callback (GtkPrintOperation
*operation
, GtkPrintContext
*context
, gpointer user_data
)
207 wxPrinterToGtkData
*data
= (wxPrinterToGtkData
*) user_data
;
209 data
->printer
->BeginPrint(data
->printout
, operation
, context
);
212 static void gtk_draw_page_print_callback (GtkPrintOperation
*operation
, GtkPrintContext
*context
, gint page_nr
, gpointer user_data
)
214 wxPrinterToGtkData
*data
= (wxPrinterToGtkData
*) user_data
;
216 data
->printer
->DrawPage(data
->printout
, operation
, context
, page_nr
);
219 static void gtk_end_print_callback(GtkPrintOperation
* WXUNUSED(operation
),
220 GtkPrintContext
* WXUNUSED(context
),
223 wxPrintout
*printout
= (wxPrintout
*) user_data
;
225 printout
->OnEndPrinting();
229 //----------------------------------------------------------------------------
230 // wxGtkPrintNativeData
231 //----------------------------------------------------------------------------
233 IMPLEMENT_CLASS(wxGtkPrintNativeData
, wxPrintNativeDataBase
)
235 wxGtkPrintNativeData::wxGtkPrintNativeData()
237 m_config
= gtk_print_settings_new();
242 wxGtkPrintNativeData::~wxGtkPrintNativeData()
244 g_object_unref(m_config
);
247 // Convert datas stored in m_config to a wxPrintData.
248 // Called by wxPrintData::ConvertFromNative().
249 bool wxGtkPrintNativeData::TransferTo( wxPrintData
&data
)
254 int resolution
= gtk_print_settings_get_resolution(m_config
);
255 if ( resolution
> 0 )
257 // if resolution is explicitly set, use it
258 data
.SetQuality(resolution
);
260 else // use more vague "quality"
262 GtkPrintQuality quality
= gtk_print_settings_get_quality(m_config
);
263 if (quality
== GTK_PRINT_QUALITY_HIGH
)
264 data
.SetQuality(wxPRINT_QUALITY_HIGH
);
265 else if (quality
== GTK_PRINT_QUALITY_LOW
)
266 data
.SetQuality(wxPRINT_QUALITY_LOW
);
267 else if (quality
== GTK_PRINT_QUALITY_DRAFT
)
268 data
.SetQuality(wxPRINT_QUALITY_DRAFT
);
270 data
.SetQuality(wxPRINT_QUALITY_MEDIUM
);
273 data
.SetNoCopies(gtk_print_settings_get_n_copies(m_config
));
275 data
.SetColour(gtk_print_settings_get_use_color(m_config
));
277 switch (gtk_print_settings_get_duplex(m_config
))
279 case GTK_PRINT_DUPLEX_SIMPLEX
: data
.SetDuplex (wxDUPLEX_SIMPLEX
);
282 case GTK_PRINT_DUPLEX_HORIZONTAL
: data
.SetDuplex (wxDUPLEX_HORIZONTAL
);
286 case GTK_PRINT_DUPLEX_VERTICAL
: data
.SetDuplex (wxDUPLEX_VERTICAL
);
290 GtkPageOrientation orientation
= gtk_print_settings_get_orientation (m_config
);
291 if (orientation
== GTK_PAGE_ORIENTATION_PORTRAIT
)
293 data
.SetOrientation(wxPORTRAIT
);
294 data
.SetOrientationReversed(false);
296 else if (orientation
== GTK_PAGE_ORIENTATION_LANDSCAPE
)
298 data
.SetOrientation(wxLANDSCAPE
);
299 data
.SetOrientationReversed(false);
301 else if (orientation
== GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT
)
303 data
.SetOrientation(wxPORTRAIT
);
304 data
.SetOrientationReversed(true);
306 else if (orientation
== GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE
)
308 data
.SetOrientation(wxLANDSCAPE
);
309 data
.SetOrientationReversed(true);
312 data
.SetCollate(gtk_print_settings_get_collate (m_config
));
314 // Paper formats : these are the most common paper formats.
315 GtkPaperSize
*paper_size
= gtk_print_settings_get_paper_size (m_config
);
317 data
.SetPaperId(wxPAPER_NONE
);
318 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_A3
)))
319 data
.SetPaperId(wxPAPER_A3
);
320 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_A4
)))
321 data
.SetPaperId(wxPAPER_A4
);
322 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_A5
)))
323 data
.SetPaperId(wxPAPER_A5
);
324 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_B5
)))
325 data
.SetPaperId(wxPAPER_B5
);
326 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_LETTER
)))
327 data
.SetPaperId(wxPAPER_LETTER
);
328 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_LEGAL
)))
329 data
.SetPaperId(wxPAPER_LEGAL
);
330 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new (GTK_PAPER_NAME_EXECUTIVE
)))
331 data
.SetPaperId(wxPAPER_EXECUTIVE
);
332 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"na_number-10")))
333 data
.SetPaperId(wxPAPER_ENV_10
);
334 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-c5")))
335 data
.SetPaperId(wxPAPER_ENV_C5
);
336 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-c6")))
337 data
.SetPaperId(wxPAPER_ENV_C6
);
338 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"jis-b5")))
339 data
.SetPaperId(wxPAPER_B5_TRANSVERSE
);
340 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-b5")))
341 data
.SetPaperId(wxPAPER_ENV_B5
);
342 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"na_monarch")))
343 data
.SetPaperId(wxPAPER_ENV_MONARCH
);
344 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"engineering-c")))
345 data
.SetPaperId( wxPAPER_CSHEET
);
346 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"engineering-d")))
347 data
.SetPaperId( wxPAPER_DSHEET
);
348 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"engineering-e")))
349 data
.SetPaperId( wxPAPER_ESHEET
);
350 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"letter")))
351 data
.SetPaperId( wxPAPER_LETTERSMALL
);
352 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"engineering-b")))
353 data
.SetPaperId( wxPAPER_TABLOID
);
354 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"ledger")))
355 data
.SetPaperId( wxPAPER_LEDGER
);
356 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"statement")))
357 data
.SetPaperId( wxPAPER_STATEMENT
);
358 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( GTK_PAPER_NAME_A4
)))
359 data
.SetPaperId( wxPAPER_A4SMALL
);
360 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-b4")))
361 data
.SetPaperId( wxPAPER_B4
);
362 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"folio")))
363 data
.SetPaperId( wxPAPER_FOLIO
);
364 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"quarto")))
365 data
.SetPaperId( wxPAPER_QUARTO
);
366 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"10x14")))
367 data
.SetPaperId( wxPAPER_10X14
);
368 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"ledger")))
369 data
.SetPaperId( wxPAPER_11X17
);
370 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"letter")))
371 data
.SetPaperId( wxPAPER_NOTE
);
372 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"na-number-9-envelope")))
373 data
.SetPaperId( wxPAPER_ENV_9
);
374 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"number-11")))
375 data
.SetPaperId( wxPAPER_ENV_11
);
376 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"number-12")))
377 data
.SetPaperId( wxPAPER_ENV_12
);
378 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"number-14")))
379 data
.SetPaperId( wxPAPER_ENV_14
);
380 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-designated")))
381 data
.SetPaperId( wxPAPER_ENV_DL
);
382 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-c3")))
383 data
.SetPaperId( wxPAPER_ENV_C3
);
384 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-c4")))
385 data
.SetPaperId( wxPAPER_ENV_C4
);
386 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"c6/c5")))
387 data
.SetPaperId( wxPAPER_ENV_C65
);
388 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-b4")))
389 data
.SetPaperId( wxPAPER_ENV_B4
);
390 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"iso-b6")))
391 data
.SetPaperId( wxPAPER_ENV_B6
);
392 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"Italian")))
393 data
.SetPaperId( wxPAPER_ENV_ITALY
);
394 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"personal")))
395 data
.SetPaperId( wxPAPER_ENV_PERSONAL
);
396 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"fanfold-us")))
397 data
.SetPaperId( wxPAPER_FANFOLD_US
);
398 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"fanfold-European")))
399 data
.SetPaperId( wxPAPER_FANFOLD_STD_GERMAN
);
400 else if (gtk_paper_size_is_equal(paper_size
,gtk_paper_size_new ( (const gchar
*)"foolscap")))
401 data
.SetPaperId( wxPAPER_FANFOLD_LGL_GERMAN
);
403 data
.SetPaperId(wxPAPER_NONE
);
405 data
.SetPrinterName(gtk_print_settings_get_printer(m_config
));
410 // Put datas given by the wxPrintData into m_config.
411 // Called by wxPrintData::ConvertToNative().
412 bool wxGtkPrintNativeData::TransferFrom( const wxPrintData
&data
)
417 wxPrintQuality quality
= data
.GetQuality();
418 if (quality
== wxPRINT_QUALITY_HIGH
)
419 gtk_print_settings_set_quality (m_config
, GTK_PRINT_QUALITY_HIGH
);
420 else if (quality
== wxPRINT_QUALITY_MEDIUM
)
421 gtk_print_settings_set_quality (m_config
, GTK_PRINT_QUALITY_NORMAL
);
422 else if (quality
== wxPRINT_QUALITY_LOW
)
423 gtk_print_settings_set_quality (m_config
, GTK_PRINT_QUALITY_LOW
);
424 else if (quality
== wxPRINT_QUALITY_DRAFT
)
425 gtk_print_settings_set_quality (m_config
, GTK_PRINT_QUALITY_DRAFT
);
426 else if (quality
> 1)
427 gtk_print_settings_set_resolution (m_config
, quality
);
429 gtk_print_settings_set_quality (m_config
, GTK_PRINT_QUALITY_NORMAL
);
431 gtk_print_settings_set_n_copies(m_config
, data
.GetNoCopies());
433 gtk_print_settings_set_use_color(m_config
, data
.GetColour());
435 switch (data
.GetDuplex())
437 case wxDUPLEX_SIMPLEX
: gtk_print_settings_set_duplex (m_config
, GTK_PRINT_DUPLEX_SIMPLEX
);
440 case wxDUPLEX_HORIZONTAL
: gtk_print_settings_set_duplex (m_config
, GTK_PRINT_DUPLEX_HORIZONTAL
);
444 case wxDUPLEX_VERTICAL
: gtk_print_settings_set_duplex (m_config
, GTK_PRINT_DUPLEX_VERTICAL
);
448 if (!data
.IsOrientationReversed())
450 if (data
.GetOrientation() == wxLANDSCAPE
)
451 gtk_print_settings_set_orientation (m_config
, GTK_PAGE_ORIENTATION_LANDSCAPE
);
453 gtk_print_settings_set_orientation (m_config
, GTK_PAGE_ORIENTATION_PORTRAIT
);
456 if (data
.GetOrientation() == wxLANDSCAPE
)
457 gtk_print_settings_set_orientation (m_config
, GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE
);
459 gtk_print_settings_set_orientation (m_config
, GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT
);
462 gtk_print_settings_set_collate (m_config
, data
.GetCollate());
464 // Paper formats: these are the most common paper formats.
465 switch (data
.GetPaperId())
467 case wxPAPER_A3
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_A3
));
469 case wxPAPER_A4
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_A4
));
471 case wxPAPER_A5
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_A5
));
473 case wxPAPER_B5_TRANSVERSE
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "jis-b5"));
475 case wxPAPER_B5
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_B5
));
477 case wxPAPER_LETTER
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_LETTER
));
479 case wxPAPER_LEGAL
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_LEGAL
));
481 case wxPAPER_EXECUTIVE
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_EXECUTIVE
));
483 case wxPAPER_ENV_10
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "na_number-10"));
485 case wxPAPER_ENV_C5
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-c5"));
487 case wxPAPER_ENV_C6
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-c6"));
489 case wxPAPER_ENV_B5
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-c5b5"));
491 case wxPAPER_ENV_MONARCH
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "na_monarch"));
493 case wxPAPER_CSHEET
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "engineering-c"));
495 case wxPAPER_DSHEET
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "engineering-d"));
497 case wxPAPER_ESHEET
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "engineering-e"));
499 case wxPAPER_LETTERSMALL
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "letter"));
501 case wxPAPER_TABLOID
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "engineering-b"));
503 case wxPAPER_LEDGER
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "ledger"));
505 case wxPAPER_STATEMENT
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "statement"));
507 case wxPAPER_A4SMALL
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new (GTK_PAPER_NAME_A4
));
509 case wxPAPER_B4
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-b4"));
511 case wxPAPER_FOLIO
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "folio"));
513 case wxPAPER_QUARTO
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "quarto"));
515 case wxPAPER_10X14
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "10x14"));
517 case wxPAPER_11X17
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "ledger"));
519 case wxPAPER_NOTE
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "letter"));
521 case wxPAPER_ENV_9
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "na-number-9-envelope"));
523 case wxPAPER_ENV_11
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "number-11"));
525 case wxPAPER_ENV_12
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "number-12"));
527 case wxPAPER_ENV_14
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "number-14"));
529 case wxPAPER_ENV_DL
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-designated"));
531 case wxPAPER_ENV_C3
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-c3"));
533 case wxPAPER_ENV_C4
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-c4"));
535 case wxPAPER_ENV_C65
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "c6/c5"));
537 case wxPAPER_ENV_B4
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-b4"));
539 case wxPAPER_ENV_B6
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "iso-b6"));
541 case wxPAPER_ENV_ITALY
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "Italian"));
543 case wxPAPER_ENV_PERSONAL
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "personal"));
545 case wxPAPER_FANFOLD_US
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "fanfold-us"));
547 case wxPAPER_FANFOLD_STD_GERMAN
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "fanfold-European"));
549 case wxPAPER_FANFOLD_LGL_GERMAN
: gtk_print_settings_set_paper_size(m_config
, gtk_paper_size_new ((const gchar
*) "foolscap"));
555 gtk_print_settings_set_printer(m_config
, data
.GetPrinterName().utf8_str());
560 void wxGtkPrintNativeData::SetPrintConfig( GtkPrintSettings
* config
)
563 m_config
= gtk_print_settings_copy(config
);
566 // Extract page setup from settings.
567 GtkPageSetup
* wxGtkPrintNativeData::GetPageSetupFromSettings(GtkPrintSettings
* settings
)
569 GtkPageSetup
* page_setup
= gtk_page_setup_new();
570 gtk_page_setup_set_orientation (page_setup
, gtk_print_settings_get_orientation (settings
));
572 GtkPaperSize
*paper_size
= gtk_print_settings_get_paper_size (settings
);
573 if (paper_size
!= NULL
)
574 gtk_page_setup_set_paper_size_and_default_margins (page_setup
, paper_size
);
579 // Insert page setup into a given GtkPrintSettings.
580 void wxGtkPrintNativeData::SetPageSetupToSettings(GtkPrintSettings
* settings
, GtkPageSetup
* page_setup
)
582 gtk_print_settings_set_orientation ( settings
, gtk_page_setup_get_orientation (page_setup
));
583 gtk_print_settings_set_paper_size ( settings
, gtk_page_setup_get_paper_size (page_setup
));
586 //----------------------------------------------------------------------------
588 //----------------------------------------------------------------------------
590 IMPLEMENT_CLASS(wxGtkPrintDialog
, wxPrintDialogBase
)
592 wxGtkPrintDialog::wxGtkPrintDialog( wxWindow
*parent
, wxPrintDialogData
*data
)
593 : wxPrintDialogBase(parent
, wxID_ANY
, _("Print"),
594 wxPoint(0, 0), wxSize(600, 600),
595 wxDEFAULT_DIALOG_STYLE
|
599 m_printDialogData
= *data
;
605 wxGtkPrintDialog::wxGtkPrintDialog( wxWindow
*parent
, wxPrintData
*data
)
606 : wxPrintDialogBase(parent
, wxID_ANY
, _("Print"),
607 wxPoint(0, 0), wxSize(600, 600),
608 wxDEFAULT_DIALOG_STYLE
|
612 m_printDialogData
= *data
;
619 wxGtkPrintDialog::~wxGtkPrintDialog()
623 // This is called even if we actually don't want the dialog to appear.
624 int wxGtkPrintDialog::ShowModal()
626 // We need to restore the settings given in the constructor.
627 wxPrintData data
= m_printDialogData
.GetPrintData();
628 wxGtkPrintNativeData
*native
=
629 (wxGtkPrintNativeData
*) data
.GetNativeData();
630 data
.ConvertToNative();
632 GtkPrintSettings
* settings
= native
->GetPrintConfig();
634 // We have to restore pages to print here because they're stored in a wxPrintDialogData and ConvertToNative only works for wxPrintData.
635 int fromPage
= m_printDialogData
.GetFromPage();
636 int toPage
= m_printDialogData
.GetToPage();
637 if (m_printDialogData
.GetSelection())
638 gtk_print_settings_set_print_pages(settings
, GTK_PRINT_PAGES_CURRENT
);
639 else if (m_printDialogData
.GetAllPages())
640 gtk_print_settings_set_print_pages(settings
, GTK_PRINT_PAGES_ALL
);
642 gtk_print_settings_set_print_pages(settings
, GTK_PRINT_PAGES_RANGES
);
644 range
= g_new (GtkPageRange
, 1);
645 range
[0].start
= fromPage
-1;
646 range
[0].end
= (toPage
>= fromPage
) ? toPage
-1 : fromPage
-1;
647 gtk_print_settings_set_page_ranges (settings
, range
, 1);
650 GtkPrintOperation
* const printOp
= native
->GetPrintJob();
652 // If the settings are OK, we restore it.
653 if (settings
!= NULL
)
654 gtk_print_operation_set_print_settings (printOp
, settings
);
655 gtk_print_operation_set_default_page_setup (printOp
, native
->GetPageSetupFromSettings(settings
));
657 // Show the dialog if needed.
658 GError
* gError
= NULL
;
659 GtkPrintOperationResult response
= gtk_print_operation_run
663 ? GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG
664 : GTK_PRINT_OPERATION_ACTION_PRINT
,
666 ? GTK_WINDOW(gtk_widget_get_toplevel(m_parent
->m_widget
))
671 // Does everything went well?
672 if (response
== GTK_PRINT_OPERATION_RESULT_CANCEL
)
676 else if (response
== GTK_PRINT_OPERATION_RESULT_ERROR
)
678 wxLogError(_("Error while printing: ") + wxString(gError
? gError
->message
: "???"));
679 g_error_free (gError
);
680 return wxID_NO
; // We use wxID_NO because there is no wxID_ERROR available
683 // Now get the settings and save it.
684 GtkPrintSettings
* newSettings
= gtk_print_operation_get_print_settings(printOp
);
685 native
->SetPrintConfig(newSettings
);
686 data
.ConvertFromNative();
688 // Set PrintDialogData variables
689 m_printDialogData
.SetPrintData(data
);
690 m_printDialogData
.SetCollate(data
.GetCollate());
691 m_printDialogData
.SetNoCopies(data
.GetNoCopies());
692 m_printDialogData
.SetPrintToFile(data
.GetPrinterName() == "Print to File");
694 // Same problem as a few lines before.
695 switch (gtk_print_settings_get_print_pages(newSettings
))
697 case GTK_PRINT_PAGES_CURRENT
:
698 m_printDialogData
.SetSelection( true );
700 case GTK_PRINT_PAGES_RANGES
:
701 {// wxWidgets doesn't support multiple ranges, so we can only save the first one even if the user wants to print others.
702 // For example, the user enters "1-3;5-7" in the dialog: pages 1-3 and 5-7 will be correctly printed when the user
703 // will hit "OK" button. However we can only save 1-3 in the print data.
706 range
= gtk_print_settings_get_page_ranges (newSettings
, &num_ranges
);
709 m_printDialogData
.SetFromPage( range
[0].start
);
710 m_printDialogData
.SetToPage( range
[0].end
);
713 m_printDialogData
.SetAllPages( true );
714 m_printDialogData
.SetFromPage( 0 );
715 m_printDialogData
.SetToPage( 9999 );
718 case GTK_PRINT_PAGES_ALL
:
720 m_printDialogData
.SetAllPages( true );
721 m_printDialogData
.SetFromPage( 0 );
722 m_printDialogData
.SetToPage( 9999 );
729 //----------------------------------------------------------------------------
730 // wxGtkPageSetupDialog
731 //----------------------------------------------------------------------------
733 IMPLEMENT_CLASS(wxGtkPageSetupDialog
, wxPageSetupDialogBase
)
735 wxGtkPageSetupDialog::wxGtkPageSetupDialog( wxWindow
*parent
,
736 wxPageSetupDialogData
* data
)
739 m_pageDialogData
= *data
;
744 wxGtkPageSetupDialog::~wxGtkPageSetupDialog()
748 int wxGtkPageSetupDialog::ShowModal()
751 m_pageDialogData
.GetPrintData().ConvertToNative();
752 wxGtkPrintNativeData
*native
= (wxGtkPrintNativeData
*) m_pageDialogData
.GetPrintData().GetNativeData();
753 GtkPrintSettings
* nativeData
= native
->GetPrintConfig();
755 // We only need the pagesetup data which are part of the settings.
756 GtkPageSetup
* oldPageSetup
= native
->GetPageSetupFromSettings(nativeData
);
758 // If the user used a custom paper format the last time he printed, we have to restore it too.
759 if (m_pageDialogData
.GetPrintData().GetPaperId() == wxPAPER_NONE
)
761 wxSize customPaperSize
= m_pageDialogData
.GetPaperSize();
762 if (customPaperSize
.GetWidth() > 0 && customPaperSize
.GetHeight() > 0)
764 wxString title
= _("Custom size");
765 GtkPaperSize
* customSize
= gtk_paper_size_new_custom ("custom", title
.mb_str(), (gdouble
) customPaperSize
.GetWidth(), (gdouble
) customPaperSize
.GetHeight(), GTK_UNIT_MM
);
766 gtk_page_setup_set_paper_size_and_default_margins (oldPageSetup
, customSize
);
767 g_object_unref(customSize
);
772 // Set selected printer
773 gtk_print_settings_set(nativeData
, "format-for-printer",
774 gtk_print_settings_get_printer(nativeData
));
776 // Create custom dialog
777 wxString
title(GetTitle());
779 title
= _("Page Setup");
781 dlg
= gtk_page_setup_unix_dialog_new(title
.utf8_str(),
783 ? GTK_WINDOW(m_parent
->m_widget
)
786 gtk_page_setup_unix_dialog_set_print_settings(
787 GTK_PAGE_SETUP_UNIX_DIALOG(dlg
), nativeData
);
788 gtk_page_setup_unix_dialog_set_page_setup(
789 GTK_PAGE_SETUP_UNIX_DIALOG(dlg
), oldPageSetup
);
791 int result
= gtk_dialog_run(GTK_DIALOG(dlg
));
792 gtk_widget_hide(dlg
);
796 case GTK_RESPONSE_OK
:
797 case GTK_RESPONSE_APPLY
:
799 // Store Selected Printer Name
800 gtk_print_settings_set_printer
803 gtk_print_settings_get(nativeData
, "format-for-printer")
806 wxGtkObject
<GtkPageSetup
>
807 newPageSetup(gtk_page_setup_unix_dialog_get_page_setup(
808 GTK_PAGE_SETUP_UNIX_DIALOG(dlg
)));
809 native
->SetPageSetupToSettings(nativeData
, newPageSetup
);
811 m_pageDialogData
.GetPrintData().ConvertFromNative();
813 // Store custom paper format if any.
814 if ( m_pageDialogData
.GetPrintData().GetPaperId() == wxPAPER_NONE
)
816 gdouble ml
,mr
,mt
,mb
,pw
,ph
;
817 ml
= gtk_page_setup_get_left_margin (newPageSetup
, GTK_UNIT_MM
);
818 mr
= gtk_page_setup_get_right_margin (newPageSetup
, GTK_UNIT_MM
);
819 mt
= gtk_page_setup_get_top_margin (newPageSetup
, GTK_UNIT_MM
);
820 mb
= gtk_page_setup_get_bottom_margin (newPageSetup
, GTK_UNIT_MM
);
822 pw
= gtk_page_setup_get_paper_width (newPageSetup
, GTK_UNIT_MM
);
823 ph
= gtk_page_setup_get_paper_height (newPageSetup
, GTK_UNIT_MM
);
825 m_pageDialogData
.SetMarginTopLeft(wxPoint((int)(ml
+0.5),
827 m_pageDialogData
.SetMarginBottomRight(wxPoint((int)(mr
+0.5),
830 m_pageDialogData
.SetPaperSize(wxSize((int)(pw
+0.5),
839 case GTK_RESPONSE_CANCEL
:
840 result
= wxID_CANCEL
;
844 gtk_widget_destroy(dlg
);
849 //----------------------------------------------------------------------------
851 //----------------------------------------------------------------------------
853 IMPLEMENT_CLASS(wxGtkPrinter
, wxPrinterBase
)
855 wxGtkPrinter::wxGtkPrinter( wxPrintDialogData
*data
) :
856 wxPrinterBase( data
)
861 m_printDialogData
= *data
;
864 wxGtkPrinter::~wxGtkPrinter()
868 bool wxGtkPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
872 sm_lastError
= wxPRINTER_ERROR
;
876 // Let's correct the PageInfo just in case the app gives wrong values.
877 int fromPage
, toPage
;
878 int minPage
, maxPage
;
879 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
880 m_printDialogData
.SetAllPages(true);
882 if (minPage
< 1) minPage
= 1;
883 if (maxPage
< 1) maxPage
= 9999;
884 if (maxPage
< minPage
) maxPage
= minPage
;
886 m_printDialogData
.SetMinPage(minPage
);
887 m_printDialogData
.SetMaxPage(maxPage
);
890 if (fromPage
< minPage
) fromPage
= minPage
;
891 else if (fromPage
> maxPage
) fromPage
= maxPage
;
892 m_printDialogData
.SetFromPage(fromPage
);
896 m_printDialogData
.SetToPage(toPage
);
897 if (toPage
> maxPage
) toPage
= maxPage
;
898 else if (toPage
< minPage
) toPage
= minPage
;
901 if (((minPage
!= fromPage
) && fromPage
!= 0) || ((maxPage
!= toPage
) && toPage
!= 0)) m_printDialogData
.SetAllPages(false);
904 wxPrintData printdata
= GetPrintDialogData().GetPrintData();
905 wxGtkPrintNativeData
*native
= (wxGtkPrintNativeData
*) printdata
.GetNativeData();
907 wxGtkObject
<GtkPrintOperation
> printOp(gtk_print_operation_new());
908 native
->SetPrintJob(printOp
);
909 wxON_BLOCK_EXIT_OBJ1(*native
, wxGtkPrintNativeData::SetPrintJob
,
910 static_cast<GtkPrintOperation
*>(NULL
));
912 wxPrinterToGtkData dataToSend
;
913 dataToSend
.printer
= this;
914 dataToSend
.printout
= printout
;
916 // These Gtk signals are caught here.
917 g_signal_connect (printOp
, "begin-print", G_CALLBACK (gtk_begin_print_callback
), &dataToSend
);
918 g_signal_connect (printOp
, "draw-page", G_CALLBACK (gtk_draw_page_print_callback
), &dataToSend
);
919 g_signal_connect (printOp
, "end-print", G_CALLBACK (gtk_end_print_callback
), printout
);
921 // This is used to setup the DC and
922 // show the dialog if desired
923 wxGtkPrintDialog
dialog( parent
, &m_printDialogData
);
924 dialog
.SetPrintDC(m_dc
);
925 dialog
.SetShowDialog(prompt
);
927 // doesn't necessarily show
928 int ret
= dialog
.ShowModal();
929 if (ret
== wxID_CANCEL
)
931 sm_lastError
= wxPRINTER_CANCELLED
;
935 sm_lastError
= wxPRINTER_ERROR
;
936 wxFAIL_MSG(_("The print dialog returned an error."));
939 return (sm_lastError
== wxPRINTER_NO_ERROR
);
942 void wxGtkPrinter::BeginPrint(wxPrintout
*printout
, GtkPrintOperation
*operation
, GtkPrintContext
*context
)
944 wxPrintData printdata
= GetPrintDialogData().GetPrintData();
945 wxGtkPrintNativeData
*native
= (wxGtkPrintNativeData
*) printdata
.GetNativeData();
947 // We need to update printdata with the new data from the dialog and we
948 // have to do this here because this method needs this new data and we
949 // cannot update it earlier
950 native
->SetPrintConfig(gtk_print_operation_get_print_settings(operation
));
951 printdata
.ConvertFromNative();
953 SetPrintContext(context
);
954 native
->SetPrintContext( context
);
956 wxPrinterDC
*printDC
= new wxPrinterDC( printdata
);
961 if (sm_lastError
!= wxPRINTER_CANCELLED
)
963 sm_lastError
= wxPRINTER_ERROR
;
964 wxFAIL_MSG(_("The wxGtkPrinterDC cannot be used."));
969 printout
->SetPPIScreen(wxGetDisplayPPI());
970 printout
->SetPPIPrinter( printDC
->GetResolution(),
971 printDC
->GetResolution() );
973 printout
->SetDC(m_dc
);
976 m_dc
->GetSize(&w
, &h
);
977 printout
->SetPageSizePixels((int)w
, (int)h
);
978 printout
->SetPaperRectPixels(wxRect(0, 0, w
, h
));
980 m_dc
->GetSizeMM(&mw
, &mh
);
981 printout
->SetPageSizeMM((int)mw
, (int)mh
);
982 printout
->OnPreparePrinting();
984 // Get some parameters from the printout, if defined.
985 int fromPage
, toPage
;
986 int minPage
, maxPage
;
987 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
991 sm_lastError
= wxPRINTER_ERROR
;
992 wxFAIL_MSG(_("wxPrintout::GetPageInfo gives a null maxPage."));
996 printout
->OnBeginPrinting();
1000 // If we're not previewing we need to calculate the number of pages to print.
1001 // If we're previewing, Gtk Print will render every pages without wondering about the page ranges the user may
1002 // have defined in the dialog. So the number of pages is the maximum available.
1003 if (!printout
->IsPreview())
1005 GtkPrintSettings
* settings
= gtk_print_operation_get_print_settings (operation
);
1006 switch (gtk_print_settings_get_print_pages(settings
))
1008 case GTK_PRINT_PAGES_CURRENT
:
1011 case GTK_PRINT_PAGES_RANGES
:
1012 {gint num_ranges
= 0;
1013 GtkPageRange
* range
;
1015 range
= gtk_print_settings_get_page_ranges (settings
, &num_ranges
);
1016 for (i
=0; i
<num_ranges
; i
++)
1018 if (range
[i
].end
< range
[i
].start
) range
[i
].end
= range
[i
].start
;
1019 if (range
[i
].start
< minPage
-1) range
[i
].start
= minPage
-1;
1020 if (range
[i
].end
> maxPage
-1) range
[i
].end
= maxPage
-1;
1021 if (range
[i
].start
> maxPage
-1) range
[i
].start
= maxPage
-1;
1022 numPages
+= range
[i
].end
- range
[i
].start
+ 1;
1024 gtk_print_settings_set_page_ranges (settings
, range
, 1);
1026 case GTK_PRINT_PAGES_ALL
:
1028 numPages
= maxPage
- minPage
+ 1;
1032 else numPages
= maxPage
- minPage
+ 1;
1034 gtk_print_operation_set_n_pages(operation
, numPages
);
1037 void wxGtkPrinter::DrawPage(wxPrintout
*printout
,
1038 GtkPrintOperation
*operation
,
1039 GtkPrintContext
* WXUNUSED(context
),
1042 int fromPage
, toPage
, minPage
, maxPage
, startPage
, endPage
;
1043 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
1045 int numPageToDraw
= page_nr
+ minPage
;
1046 if (numPageToDraw
< minPage
) numPageToDraw
= minPage
;
1047 if (numPageToDraw
> maxPage
) numPageToDraw
= maxPage
;
1049 GtkPrintSettings
* settings
= gtk_print_operation_get_print_settings (operation
);
1050 switch (gtk_print_settings_get_print_pages(settings
))
1052 case GTK_PRINT_PAGES_CURRENT
:
1053 g_object_get_property((GObject
*) operation
, (const gchar
*) "current-page", (GValue
*) &startPage
);
1054 g_object_get_property((GObject
*) operation
, (const gchar
*) "current-page", (GValue
*) &endPage
);
1056 case GTK_PRINT_PAGES_RANGES
:
1057 {gint num_ranges
= 0;
1058 GtkPageRange
* range
;
1059 range
= gtk_print_settings_get_page_ranges (settings
, &num_ranges
);
1060 // We don't need to verify these values as it has already been done in wxGtkPrinter::BeginPrint.
1061 if (num_ranges
>= 1)
1063 startPage
= range
[0].start
+ 1;
1064 endPage
= range
[0].end
+ 1;
1067 startPage
= minPage
;
1071 case GTK_PRINT_PAGES_ALL
:
1073 startPage
= minPage
;
1078 if(numPageToDraw
== startPage
)
1080 if (!printout
->OnBeginDocument(startPage
, endPage
))
1082 wxLogError(_("Could not start printing."));
1083 sm_lastError
= wxPRINTER_ERROR
;
1087 // The app can render the page numPageToDraw.
1088 if (printout
->HasPage(numPageToDraw
))
1091 printout
->OnPrintPage(numPageToDraw
);
1096 if(numPageToDraw
== endPage
)
1098 printout
->OnEndDocument();
1102 wxDC
* wxGtkPrinter::PrintDialog( wxWindow
*parent
)
1104 wxGtkPrintDialog
dialog( parent
, &m_printDialogData
);
1106 dialog
.SetPrintDC(m_dc
);
1107 dialog
.SetShowDialog(true);
1109 int ret
= dialog
.ShowModal();
1111 if (ret
== wxID_CANCEL
)
1113 sm_lastError
= wxPRINTER_CANCELLED
;
1118 sm_lastError
= wxPRINTER_ERROR
;
1119 wxFAIL_MSG(_("The print dialog returned an error."));
1123 m_printDialogData
= dialog
.GetPrintDialogData();
1125 return new wxPrinterDC( m_printDialogData
.GetPrintData() );
1128 bool wxGtkPrinter::Setup( wxWindow
* WXUNUSED(parent
) )
1130 // Obsolete, for backward compatibility.
1134 //-----------------------------------------------------------------------------
1136 //-----------------------------------------------------------------------------
1138 #define wxCAIRO_SCALE 1
1142 #define XLOG2DEV(x) LogicalToDeviceX(x)
1143 #define XLOG2DEVREL(x) LogicalToDeviceXRel(x)
1144 #define YLOG2DEV(x) LogicalToDeviceY(x)
1145 #define YLOG2DEVREL(x) LogicalToDeviceYRel(x)
1149 #define XLOG2DEV(x) ((double)(LogicalToDeviceX(x)) * m_DEV2PS)
1150 #define XLOG2DEVREL(x) ((double)(LogicalToDeviceXRel(x)) * m_DEV2PS)
1151 #define YLOG2DEV(x) ((double)(LogicalToDeviceY(x)) * m_DEV2PS)
1152 #define YLOG2DEVREL(x) ((double)(LogicalToDeviceYRel(x)) * m_DEV2PS)
1156 IMPLEMENT_ABSTRACT_CLASS(wxGtkPrinterDCImpl
, wxDCImpl
)
1158 wxGtkPrinterDCImpl::wxGtkPrinterDCImpl(wxPrinterDC
*owner
, const wxPrintData
& data
)
1163 wxGtkPrintNativeData
*native
=
1164 (wxGtkPrintNativeData
*) m_printData
.GetNativeData();
1166 m_gpc
= native
->GetPrintContext();
1168 // Match print quality to resolution (high = 1200dpi)
1169 m_resolution
= m_printData
.GetQuality(); // (int) gtk_print_context_get_dpi_x( m_gpc );
1170 if (m_resolution
< 0)
1171 m_resolution
= (1 << (m_resolution
+4)) *150;
1173 m_context
= gtk_print_context_create_pango_context( m_gpc
);
1174 m_layout
= gtk_print_context_create_pango_layout ( m_gpc
);
1175 m_fontdesc
= pango_font_description_from_string( "Sans 12" );
1177 m_cairo
= gtk_print_context_get_cairo_context ( m_gpc
);
1183 m_PS2DEV
= (double)m_resolution
/ 72.0;
1184 m_DEV2PS
= 72.0 / (double)m_resolution
;
1191 m_signX
= 1; // default x-axis left to right.
1192 m_signY
= 1; // default y-axis bottom up -> top down.
1195 wxGtkPrinterDCImpl::~wxGtkPrinterDCImpl()
1197 g_object_unref(m_context
);
1198 g_object_unref(m_layout
);
1201 bool wxGtkPrinterDCImpl::IsOk() const
1203 return m_gpc
!= NULL
;
1206 void* wxGtkPrinterDCImpl::GetCairoContext() const
1208 return (void*) cairo_reference( m_cairo
);
1211 void* wxGtkPrinterDCImpl::GetHandle() const
1213 return GetCairoContext();
1216 bool wxGtkPrinterDCImpl::DoFloodFill(wxCoord
WXUNUSED(x1
),
1217 wxCoord
WXUNUSED(y1
),
1218 const wxColour
& WXUNUSED(col
),
1219 wxFloodFillStyle
WXUNUSED(style
))
1221 // We can't access the given coord as a Cairo context is scalable, ie a
1222 // coord doesn't mean anything in this context.
1223 wxFAIL_MSG(_("not implemented"));
1227 void wxGtkPrinterDCImpl::DoGradientFillConcentric(const wxRect
& rect
, const wxColour
& initialColour
, const wxColour
& destColour
, const wxPoint
& circleCenter
)
1229 wxCoord xC
= circleCenter
.x
;
1230 wxCoord yC
= circleCenter
.y
;
1231 wxCoord xR
= rect
.x
;
1232 wxCoord yR
= rect
.y
;
1233 wxCoord w
= rect
.width
;
1234 wxCoord h
= rect
.height
;
1236 const double r2
= (w
/2)*(w
/2)+(h
/2)*(h
/2);
1237 double radius
= sqrt(r2
);
1239 unsigned char redI
= initialColour
.Red();
1240 unsigned char blueI
= initialColour
.Blue();
1241 unsigned char greenI
= initialColour
.Green();
1242 unsigned char alphaI
= initialColour
.Alpha();
1243 unsigned char redD
= destColour
.Red();
1244 unsigned char blueD
= destColour
.Blue();
1245 unsigned char greenD
= destColour
.Green();
1246 unsigned char alphaD
= destColour
.Alpha();
1248 double redIPS
= (double)(redI
) / 255.0;
1249 double blueIPS
= (double)(blueI
) / 255.0;
1250 double greenIPS
= (double)(greenI
) / 255.0;
1251 double alphaIPS
= (double)(alphaI
) / 255.0;
1252 double redDPS
= (double)(redD
) / 255.0;
1253 double blueDPS
= (double)(blueD
) / 255.0;
1254 double greenDPS
= (double)(greenD
) / 255.0;
1255 double alphaDPS
= (double)(alphaD
) / 255.0;
1257 // Create a pattern with the gradient.
1258 cairo_pattern_t
* gradient
;
1259 gradient
= cairo_pattern_create_radial (XLOG2DEV(xC
+xR
), YLOG2DEV(yC
+yR
), 0, XLOG2DEV(xC
+xR
), YLOG2DEV(yC
+yR
), radius
* m_DEV2PS
);
1260 cairo_pattern_add_color_stop_rgba (gradient
, 0.0, redIPS
, greenIPS
, blueIPS
, alphaIPS
);
1261 cairo_pattern_add_color_stop_rgba (gradient
, 1.0, redDPS
, greenDPS
, blueDPS
, alphaDPS
);
1263 // Fill the rectangle with this pattern.
1264 cairo_set_source(m_cairo
, gradient
);
1265 cairo_rectangle (m_cairo
, XLOG2DEV(xR
), YLOG2DEV(yR
), XLOG2DEVREL(w
), YLOG2DEVREL(h
) );
1266 cairo_fill(m_cairo
);
1268 cairo_pattern_destroy(gradient
);
1270 CalcBoundingBox(xR
, yR
);
1271 CalcBoundingBox(xR
+w
, yR
+h
);
1274 void wxGtkPrinterDCImpl::DoGradientFillLinear(const wxRect
& rect
, const wxColour
& initialColour
, const wxColour
& destColour
, wxDirection nDirection
)
1278 wxCoord w
= rect
.width
;
1279 wxCoord h
= rect
.height
;
1281 unsigned char redI
= initialColour
.Red();
1282 unsigned char blueI
= initialColour
.Blue();
1283 unsigned char greenI
= initialColour
.Green();
1284 unsigned char alphaI
= initialColour
.Alpha();
1285 unsigned char redD
= destColour
.Red();
1286 unsigned char blueD
= destColour
.Blue();
1287 unsigned char greenD
= destColour
.Green();
1288 unsigned char alphaD
= destColour
.Alpha();
1290 double redIPS
= (double)(redI
) / 255.0;
1291 double blueIPS
= (double)(blueI
) / 255.0;
1292 double greenIPS
= (double)(greenI
) / 255.0;
1293 double alphaIPS
= (double)(alphaI
) / 255.0;
1294 double redDPS
= (double)(redD
) / 255.0;
1295 double blueDPS
= (double)(blueD
) / 255.0;
1296 double greenDPS
= (double)(greenD
) / 255.0;
1297 double alphaDPS
= (double)(alphaD
) / 255.0;
1299 // Create a pattern with the gradient.
1300 cairo_pattern_t
* gradient
;
1301 gradient
= cairo_pattern_create_linear (XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x
+w
), YLOG2DEV(y
));
1303 if (nDirection
== wxWEST
)
1305 cairo_pattern_add_color_stop_rgba (gradient
, 0.0, redDPS
, greenDPS
, blueDPS
, alphaDPS
);
1306 cairo_pattern_add_color_stop_rgba (gradient
, 1.0, redIPS
, greenIPS
, blueIPS
, alphaIPS
);
1309 cairo_pattern_add_color_stop_rgba (gradient
, 0.0, redIPS
, greenIPS
, blueIPS
, alphaIPS
);
1310 cairo_pattern_add_color_stop_rgba (gradient
, 1.0, redDPS
, greenDPS
, blueDPS
, alphaDPS
);
1313 // Fill the rectangle with this pattern.
1314 cairo_set_source(m_cairo
, gradient
);
1315 cairo_rectangle (m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEVREL(w
), YLOG2DEVREL(h
) );
1316 cairo_fill(m_cairo
);
1318 cairo_pattern_destroy(gradient
);
1320 CalcBoundingBox(x
, y
);
1321 CalcBoundingBox(x
+w
, y
+h
);
1324 bool wxGtkPrinterDCImpl::DoGetPixel(wxCoord
WXUNUSED(x1
),
1325 wxCoord
WXUNUSED(y1
),
1326 wxColour
* WXUNUSED(col
)) const
1328 wxFAIL_MSG(_("not implemented"));
1332 void wxGtkPrinterDCImpl::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
1334 if ( m_pen
.IsTransparent() )
1338 cairo_move_to ( m_cairo
, XLOG2DEV(x1
), YLOG2DEV(y1
) );
1339 cairo_line_to ( m_cairo
, XLOG2DEV(x2
), YLOG2DEV(y2
) );
1340 cairo_stroke ( m_cairo
);
1342 CalcBoundingBox( x1
, y1
);
1343 CalcBoundingBox( x2
, y2
);
1346 void wxGtkPrinterDCImpl::DoCrossHair(wxCoord x
, wxCoord y
)
1353 cairo_move_to (m_cairo
, XLOG2DEV(x
), 0);
1354 cairo_line_to (m_cairo
, XLOG2DEV(x
), YLOG2DEVREL(h
));
1355 cairo_move_to (m_cairo
, 0, YLOG2DEV(y
));
1356 cairo_line_to (m_cairo
, XLOG2DEVREL(w
), YLOG2DEV(y
));
1358 cairo_stroke (m_cairo
);
1359 CalcBoundingBox( 0, 0 );
1360 CalcBoundingBox( w
, h
);
1363 void wxGtkPrinterDCImpl::DoDrawArc(wxCoord x1
,wxCoord y1
,wxCoord x2
,wxCoord y2
,wxCoord xc
,wxCoord yc
)
1365 double dx
= x1
- xc
;
1366 double dy
= y1
- yc
;
1367 double radius
= sqrt((double)(dx
*dx
+dy
*dy
));
1369 double alpha1
, alpha2
;
1370 if (x1
== x2
&& y1
== y2
)
1378 alpha1
= alpha2
= 0.0;
1382 alpha1
= (x1
- xc
== 0) ?
1383 (y1
- yc
< 0) ? 90.0 : -90.0 :
1384 atan2(double(y1
-yc
), double(x1
-xc
)) * RAD2DEG
;
1385 alpha2
= (x2
- xc
== 0) ?
1386 (y2
- yc
< 0) ? 90.0 : -90.0 :
1387 atan2(double(y2
-yc
), double(x2
-xc
)) * RAD2DEG
;
1389 while (alpha1
<= 0) alpha1
+= 360;
1390 while (alpha2
<= 0) alpha2
+= 360; // adjust angles to be between.
1391 while (alpha1
> 360) alpha1
-= 360; // 0 and 360 degree.
1392 while (alpha2
> 360) alpha2
-= 360;
1398 cairo_new_path(m_cairo
);
1400 cairo_arc_negative ( m_cairo
, XLOG2DEV(xc
), YLOG2DEV(yc
), XLOG2DEVREL((int)radius
), alpha1
, alpha2
);
1401 cairo_line_to(m_cairo
, XLOG2DEV(xc
), YLOG2DEV(yc
));
1402 cairo_close_path (m_cairo
);
1404 SetBrush( m_brush
);
1405 cairo_fill_preserve( m_cairo
);
1408 cairo_stroke( m_cairo
);
1410 CalcBoundingBox (x1
, y1
);
1411 CalcBoundingBox (xc
, yc
);
1412 CalcBoundingBox (x2
, y2
);
1415 void wxGtkPrinterDCImpl::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
1417 cairo_save( m_cairo
);
1419 cairo_new_path(m_cairo
);
1421 cairo_translate( m_cairo
, XLOG2DEV((wxCoord
) (x
+ w
/ 2.)), XLOG2DEV((wxCoord
) (y
+ h
/ 2.)) );
1422 double scale
= (double)YLOG2DEVREL(h
) / (double) XLOG2DEVREL(w
);
1423 cairo_scale( m_cairo
, 1.0, scale
);
1425 cairo_arc_negative ( m_cairo
, 0, 0, XLOG2DEVREL(w
/2), -sa
*DEG2RAD
, -ea
*DEG2RAD
);
1428 cairo_stroke_preserve( m_cairo
);
1430 cairo_line_to(m_cairo
, 0,0);
1432 SetBrush( m_brush
);
1433 cairo_fill( m_cairo
);
1435 cairo_restore( m_cairo
);
1437 CalcBoundingBox( x
, y
);
1438 CalcBoundingBox( x
+w
, y
+h
);
1441 void wxGtkPrinterDCImpl::DoDrawPoint(wxCoord x
, wxCoord y
)
1443 if ( m_pen
.IsTransparent() )
1448 cairo_move_to ( m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
) );
1449 cairo_line_to ( m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
) );
1450 cairo_stroke ( m_cairo
);
1452 CalcBoundingBox( x
, y
);
1455 void wxGtkPrinterDCImpl::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
1457 if ( m_pen
.IsTransparent() )
1466 for ( i
=0; i
<n
; i
++ )
1467 CalcBoundingBox( points
[i
].x
+xoffset
, points
[i
].y
+yoffset
);
1469 cairo_move_to ( m_cairo
, XLOG2DEV(points
[0].x
+xoffset
), YLOG2DEV(points
[0].y
+yoffset
) );
1471 for (i
= 1; i
< n
; i
++)
1472 cairo_line_to ( m_cairo
, XLOG2DEV(points
[i
].x
+xoffset
), YLOG2DEV(points
[i
].y
+yoffset
) );
1474 cairo_stroke ( m_cairo
);
1477 void wxGtkPrinterDCImpl::DoDrawPolygon(int n
, wxPoint points
[],
1478 wxCoord xoffset
, wxCoord yoffset
,
1479 wxPolygonFillMode fillStyle
)
1483 cairo_save(m_cairo
);
1484 if (fillStyle
== wxWINDING_RULE
)
1485 cairo_set_fill_rule( m_cairo
, CAIRO_FILL_RULE_WINDING
);
1487 cairo_set_fill_rule( m_cairo
, CAIRO_FILL_RULE_EVEN_ODD
);
1489 int x
= points
[0].x
+ xoffset
;
1490 int y
= points
[0].y
+ yoffset
;
1491 cairo_new_path(m_cairo
);
1492 cairo_move_to( m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
) );
1494 for (i
= 1; i
< n
; i
++)
1496 int xx
= points
[i
].x
+ xoffset
;
1497 int yy
= points
[i
].y
+ yoffset
;
1498 cairo_line_to( m_cairo
, XLOG2DEV(xx
), YLOG2DEV(yy
) );
1500 cairo_close_path(m_cairo
);
1502 SetBrush( m_brush
);
1503 cairo_fill_preserve( m_cairo
);
1506 cairo_stroke( m_cairo
);
1508 CalcBoundingBox( x
, y
);
1510 cairo_restore(m_cairo
);
1513 void wxGtkPrinterDCImpl::DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[],
1514 wxCoord xoffset
, wxCoord yoffset
,
1515 wxPolygonFillMode fillStyle
)
1517 wxDCImpl::DoDrawPolyPolygon( n
, count
, points
, xoffset
, yoffset
, fillStyle
);
1520 void wxGtkPrinterDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1525 cairo_new_path(m_cairo
);
1526 cairo_rectangle ( m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEVREL(width
), YLOG2DEVREL(height
));
1528 SetBrush( m_brush
);
1529 cairo_fill_preserve( m_cairo
);
1532 cairo_stroke( m_cairo
);
1534 CalcBoundingBox( x
, y
);
1535 CalcBoundingBox( x
+ width
, y
+ height
);
1538 void wxGtkPrinterDCImpl::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
1543 if (radius
< 0.0) radius
= - radius
* ((width
< height
) ? width
: height
);
1545 wxCoord dd
= 2 * (wxCoord
) radius
;
1546 if (dd
> width
) dd
= width
;
1547 if (dd
> height
) dd
= height
;
1550 wxCoord rad
= (wxCoord
) radius
;
1552 cairo_new_path(m_cairo
);
1553 cairo_move_to(m_cairo
,XLOG2DEV(x
+ rad
),YLOG2DEV(y
));
1554 cairo_curve_to(m_cairo
,
1555 XLOG2DEV(x
+ rad
),YLOG2DEV(y
),
1556 XLOG2DEV(x
),YLOG2DEV(y
),
1557 XLOG2DEV(x
),YLOG2DEV(y
+ rad
));
1558 cairo_line_to(m_cairo
,XLOG2DEV(x
),YLOG2DEV(y
+ height
- rad
));
1559 cairo_curve_to(m_cairo
,
1560 XLOG2DEV(x
),YLOG2DEV(y
+ height
- rad
),
1561 XLOG2DEV(x
),YLOG2DEV(y
+ height
),
1562 XLOG2DEV(x
+ rad
),YLOG2DEV(y
+ height
));
1563 cairo_line_to(m_cairo
,XLOG2DEV(x
+ width
- rad
),YLOG2DEV(y
+ height
));
1564 cairo_curve_to(m_cairo
,
1565 XLOG2DEV(x
+ width
- rad
),YLOG2DEV(y
+ height
),
1566 XLOG2DEV(x
+ width
),YLOG2DEV(y
+ height
),
1567 XLOG2DEV(x
+ width
),YLOG2DEV(y
+ height
- rad
));
1568 cairo_line_to(m_cairo
,XLOG2DEV(x
+ width
),YLOG2DEV(y
+ rad
));
1569 cairo_curve_to(m_cairo
,
1570 XLOG2DEV(x
+ width
),YLOG2DEV(y
+ rad
),
1571 XLOG2DEV(x
+ width
),YLOG2DEV(y
),
1572 XLOG2DEV(x
+ width
- rad
),YLOG2DEV(y
));
1573 cairo_line_to(m_cairo
,XLOG2DEV(x
+ rad
),YLOG2DEV(y
));
1574 cairo_close_path(m_cairo
);
1577 cairo_fill_preserve(m_cairo
);
1580 cairo_stroke(m_cairo
);
1582 CalcBoundingBox(x
,y
);
1583 CalcBoundingBox(x
+width
,y
+height
);
1586 void wxGtkPrinterDCImpl::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1591 cairo_save (m_cairo
);
1593 cairo_new_path(m_cairo
);
1595 cairo_translate (m_cairo
, XLOG2DEV((wxCoord
) (x
+ width
/ 2.)), YLOG2DEV((wxCoord
) (y
+ height
/ 2.)));
1596 cairo_scale(m_cairo
, 1, (double)YLOG2DEVREL(height
)/(double)XLOG2DEVREL(width
));
1597 cairo_arc ( m_cairo
, 0, 0, XLOG2DEVREL(width
/2), 0, 2 * M_PI
);
1599 SetBrush( m_brush
);
1600 cairo_fill_preserve( m_cairo
);
1603 cairo_stroke( m_cairo
);
1605 CalcBoundingBox( x
, y
);
1606 CalcBoundingBox( x
+ width
, y
+ height
);
1608 cairo_restore (m_cairo
);
1612 void wxGtkPrinterDCImpl::DoDrawSpline(const wxPointList
*points
)
1616 double c
, d
, x1
, y1
, x2
, y2
, x3
, y3
;
1619 wxPointList::compatibility_iterator node
= points
->GetFirst();
1620 p
= node
->GetData();
1624 node
= node
->GetNext();
1625 p
= node
->GetData();
1629 (double)(x1
+ c
) / 2;
1631 (double)(y1
+ d
) / 2;
1633 cairo_new_path( m_cairo
);
1634 cairo_move_to( m_cairo
, XLOG2DEV((wxCoord
)x1
), YLOG2DEV((wxCoord
)y1
) );
1635 cairo_line_to( m_cairo
, XLOG2DEV((wxCoord
)x3
), YLOG2DEV((wxCoord
)y3
) );
1637 CalcBoundingBox( (wxCoord
)x1
, (wxCoord
)y1
);
1638 CalcBoundingBox( (wxCoord
)x3
, (wxCoord
)y3
);
1640 node
= node
->GetNext();
1643 q
= node
->GetData();
1651 x3
= (double)(x2
+ c
) / 2;
1652 y3
= (double)(y2
+ d
) / 2;
1654 cairo_curve_to(m_cairo
,
1655 XLOG2DEV((wxCoord
)x1
), YLOG2DEV((wxCoord
)y1
),
1656 XLOG2DEV((wxCoord
)x2
), YLOG2DEV((wxCoord
)y2
),
1657 XLOG2DEV((wxCoord
)x3
), YLOG2DEV((wxCoord
)y3
) );
1659 CalcBoundingBox( (wxCoord
)x1
, (wxCoord
)y1
);
1660 CalcBoundingBox( (wxCoord
)x3
, (wxCoord
)y3
);
1662 node
= node
->GetNext();
1665 cairo_line_to ( m_cairo
, XLOG2DEV((wxCoord
)c
), YLOG2DEV((wxCoord
)d
) );
1667 cairo_stroke( m_cairo
);
1669 #endif // wxUSE_SPLINES
1671 bool wxGtkPrinterDCImpl::DoBlit(wxCoord xdest
, wxCoord ydest
,
1672 wxCoord width
, wxCoord height
,
1673 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1674 wxRasterOperationMode rop
, bool useMask
,
1675 wxCoord
WXUNUSED_UNLESS_DEBUG(xsrcMask
),
1676 wxCoord
WXUNUSED_UNLESS_DEBUG(ysrcMask
))
1678 wxASSERT_MSG( xsrcMask
== wxDefaultCoord
&& ysrcMask
== wxDefaultCoord
,
1679 wxT("mask coordinates are not supported") );
1681 wxCHECK_MSG( source
, false, wxT("invalid source dc") );
1683 // Blit into a bitmap.
1684 wxBitmap
bitmap( width
, height
);
1686 memDC
.SelectObject(bitmap
);
1687 memDC
.Blit(0, 0, width
, height
, source
, xsrc
, ysrc
, rop
);
1688 memDC
.SelectObject(wxNullBitmap
);
1690 // Draw bitmap. scaling and positioning is done there.
1691 GetOwner()->DrawBitmap( bitmap
, xdest
, ydest
, useMask
);
1696 void wxGtkPrinterDCImpl::DoDrawIcon( const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1698 DoDrawBitmap( icon
, x
, y
, true );
1701 void wxGtkPrinterDCImpl::DoDrawBitmap( const wxBitmap
& bitmap
, wxCoord x
, wxCoord y
, bool useMask
)
1703 wxCHECK_RET( bitmap
.IsOk(), wxT("Invalid bitmap in wxGtkPrinterDCImpl::DoDrawBitmap"));
1705 x
= wxCoord(XLOG2DEV(x
));
1706 y
= wxCoord(YLOG2DEV(y
));
1707 int bw
= bitmap
.GetWidth();
1708 int bh
= bitmap
.GetHeight();
1710 wxBitmap bmpSource
= bitmap
; // we need a non-const instance.
1711 if (!useMask
&& !bitmap
.HasPixbuf() && bitmap
.GetMask())
1712 bmpSource
.SetMask(NULL
);
1715 cairo_save(m_cairo
);
1717 // Prepare to draw the image.
1718 cairo_translate(m_cairo
, x
, y
);
1721 wxDouble scaleX
= (wxDouble
) XLOG2DEVREL(bw
) / (wxDouble
) bw
;
1722 wxDouble scaleY
= (wxDouble
) YLOG2DEVREL(bh
) / (wxDouble
) bh
;
1723 cairo_scale(m_cairo
, scaleX
, scaleY
);
1726 bitmap
.Draw(m_cairo
, 0, 0, useMask
, &m_textForegroundColour
, &m_textBackgroundColour
);
1728 gdk_cairo_set_source_pixbuf(m_cairo
, bmpSource
.GetPixbuf(), 0, 0);
1729 cairo_pattern_set_filter(cairo_get_source(m_cairo
), CAIRO_FILTER_NEAREST
);
1730 // Use the original size here since the context is scaled already.
1731 cairo_rectangle(m_cairo
, 0, 0, bw
, bh
);
1732 // Fill the rectangle using the pattern.
1733 cairo_fill(m_cairo
);
1736 CalcBoundingBox(0,0);
1737 CalcBoundingBox(bw
,bh
);
1739 cairo_restore(m_cairo
);
1742 void wxGtkPrinterDCImpl::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
1744 DoDrawRotatedText( text
, x
, y
, 0.0 );
1747 void wxGtkPrinterDCImpl::DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
1749 double xx
= XLOG2DEV(x
);
1750 double yy
= YLOG2DEV(y
);
1754 const wxScopedCharBuffer data
= text
.utf8_str();
1756 pango_layout_set_text(m_layout
, data
, data
.length());
1758 const bool setAttrs
= m_font
.GTKSetPangoAttrs(m_layout
);
1759 if (m_textForegroundColour
.IsOk())
1761 unsigned char red
= m_textForegroundColour
.Red();
1762 unsigned char blue
= m_textForegroundColour
.Blue();
1763 unsigned char green
= m_textForegroundColour
.Green();
1764 unsigned char alpha
= m_textForegroundColour
.Alpha();
1766 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
&& alpha
== m_currentAlpha
))
1768 double redPS
= (double)(red
) / 255.0;
1769 double bluePS
= (double)(blue
) / 255.0;
1770 double greenPS
= (double)(green
) / 255.0;
1771 double alphaPS
= (double)(alpha
) / 255.0;
1773 cairo_set_source_rgba( m_cairo
, redPS
, greenPS
, bluePS
, alphaPS
);
1776 m_currentBlue
= blue
;
1777 m_currentGreen
= green
;
1778 m_currentAlpha
= alpha
;
1783 cairo_move_to (m_cairo
, xx
, yy
);
1785 cairo_save( m_cairo
);
1787 if (fabs(angle
) > 0.00001)
1788 cairo_rotate( m_cairo
, angle
*DEG2RAD
);
1790 cairo_scale(m_cairo
, m_scaleX
, m_scaleY
);
1793 pango_layout_get_pixel_size( m_layout
, &w
, &h
);
1795 if ( m_backgroundMode
== wxBRUSHSTYLE_SOLID
)
1797 unsigned char red
= m_textBackgroundColour
.Red();
1798 unsigned char blue
= m_textBackgroundColour
.Blue();
1799 unsigned char green
= m_textBackgroundColour
.Green();
1800 unsigned char alpha
= m_textBackgroundColour
.Alpha();
1802 double redPS
= (double)(red
) / 255.0;
1803 double bluePS
= (double)(blue
) / 255.0;
1804 double greenPS
= (double)(green
) / 255.0;
1805 double alphaPS
= (double)(alpha
) / 255.0;
1807 cairo_save(m_cairo
);
1808 cairo_set_source_rgba( m_cairo
, redPS
, greenPS
, bluePS
, alphaPS
);
1809 cairo_rectangle(m_cairo
, 0, 0, w
, h
); // still in cairo units
1810 cairo_fill(m_cairo
);
1811 cairo_restore(m_cairo
);
1814 pango_cairo_update_layout (m_cairo
, m_layout
);
1815 pango_cairo_show_layout (m_cairo
, m_layout
);
1817 cairo_restore( m_cairo
);
1821 // Undo underline attributes setting
1822 pango_layout_set_attributes(m_layout
, NULL
);
1825 // Back to device units:
1826 CalcBoundingBox (x
, y
);
1827 CalcBoundingBox (x
+ w
, y
+ h
);
1830 void wxGtkPrinterDCImpl::Clear()
1832 // Clear does nothing for printing, but keep the code
1835 cairo_save(m_cairo);
1836 cairo_set_operator (m_cairo, CAIRO_OPERATOR_SOURCE);
1837 SetBrush(m_backgroundBrush);
1838 cairo_paint(m_cairo);
1839 cairo_restore(m_cairo);
1843 void wxGtkPrinterDCImpl::SetFont( const wxFont
& font
)
1850 pango_font_description_free( m_fontdesc
);
1852 m_fontdesc
= pango_font_description_copy( m_font
.GetNativeFontInfo()->description
);
1854 float size
= pango_font_description_get_size( m_fontdesc
);
1855 size
= size
* GetFontPointSizeAdjustment(72.0);
1856 pango_font_description_set_size( m_fontdesc
, (gint
)size
);
1858 pango_layout_set_font_description( m_layout
, m_fontdesc
);
1862 void wxGtkPrinterDCImpl::SetPen( const wxPen
& pen
)
1864 if (!pen
.IsOk()) return;
1870 if (m_pen
.GetWidth() <= 0)
1873 width
= (double) m_pen
.GetWidth();
1875 cairo_set_line_width( m_cairo
, width
* m_DEV2PS
* m_scaleX
);
1876 static const double dotted
[] = {2.0, 5.0};
1877 static const double short_dashed
[] = {4.0, 4.0};
1878 static const double long_dashed
[] = {4.0, 8.0};
1879 static const double dotted_dashed
[] = {6.0, 6.0, 2.0, 6.0};
1881 switch (m_pen
.GetStyle())
1883 case wxPENSTYLE_DOT
: cairo_set_dash( m_cairo
, dotted
, 2, 0 ); break;
1884 case wxPENSTYLE_SHORT_DASH
: cairo_set_dash( m_cairo
, short_dashed
, 2, 0 ); break;
1885 case wxPENSTYLE_LONG_DASH
: cairo_set_dash( m_cairo
, long_dashed
, 2, 0 ); break;
1886 case wxPENSTYLE_DOT_DASH
: cairo_set_dash( m_cairo
, dotted_dashed
, 4, 0 ); break;
1887 case wxPENSTYLE_USER_DASH
:
1890 int num
= m_pen
.GetDashes (&wx_dashes
);
1891 gdouble
*g_dashes
= g_new( gdouble
, num
);
1893 for (i
= 0; i
< num
; ++i
)
1894 g_dashes
[i
] = (gdouble
) wx_dashes
[i
];
1895 cairo_set_dash( m_cairo
, g_dashes
, num
, 0);
1899 case wxPENSTYLE_SOLID
:
1900 case wxPENSTYLE_TRANSPARENT
:
1901 default: cairo_set_dash( m_cairo
, NULL
, 0, 0 ); break;
1904 switch (m_pen
.GetCap())
1906 case wxCAP_PROJECTING
: cairo_set_line_cap (m_cairo
, CAIRO_LINE_CAP_SQUARE
); break;
1907 case wxCAP_BUTT
: cairo_set_line_cap (m_cairo
, CAIRO_LINE_CAP_BUTT
); break;
1909 default: cairo_set_line_cap (m_cairo
, CAIRO_LINE_CAP_ROUND
); break;
1912 switch (m_pen
.GetJoin())
1914 case wxJOIN_BEVEL
: cairo_set_line_join (m_cairo
, CAIRO_LINE_JOIN_BEVEL
); break;
1915 case wxJOIN_MITER
: cairo_set_line_join (m_cairo
, CAIRO_LINE_JOIN_MITER
); break;
1917 default: cairo_set_line_join (m_cairo
, CAIRO_LINE_JOIN_ROUND
); break;
1920 unsigned char red
= m_pen
.GetColour().Red();
1921 unsigned char blue
= m_pen
.GetColour().Blue();
1922 unsigned char green
= m_pen
.GetColour().Green();
1923 unsigned char alpha
= m_pen
.GetColour().Alpha();
1925 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
&& alpha
== m_currentAlpha
))
1927 double redPS
= (double)(red
) / 255.0;
1928 double bluePS
= (double)(blue
) / 255.0;
1929 double greenPS
= (double)(green
) / 255.0;
1930 double alphaPS
= (double)(alpha
) / 255.0;
1932 cairo_set_source_rgba( m_cairo
, redPS
, greenPS
, bluePS
, alphaPS
);
1935 m_currentBlue
= blue
;
1936 m_currentGreen
= green
;
1937 m_currentAlpha
= alpha
;
1941 void wxGtkPrinterDCImpl::SetBrush( const wxBrush
& brush
)
1943 if (!brush
.IsOk()) return;
1947 if (m_brush
.GetStyle() == wxBRUSHSTYLE_TRANSPARENT
)
1949 cairo_set_source_rgba( m_cairo
, 0, 0, 0, 0 );
1958 unsigned char red
= m_brush
.GetColour().Red();
1959 unsigned char blue
= m_brush
.GetColour().Blue();
1960 unsigned char green
= m_brush
.GetColour().Green();
1961 unsigned char alpha
= m_brush
.GetColour().Alpha();
1963 double redPS
= (double)(red
) / 255.0;
1964 double bluePS
= (double)(blue
) / 255.0;
1965 double greenPS
= (double)(green
) / 255.0;
1966 double alphaPS
= (double)(alpha
) / 255.0;
1968 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
&& alpha
== m_currentAlpha
))
1970 cairo_set_source_rgba( m_cairo
, redPS
, greenPS
, bluePS
, alphaPS
);
1973 m_currentBlue
= blue
;
1974 m_currentGreen
= green
;
1975 m_currentAlpha
= alpha
;
1978 if (m_brush
.IsHatch())
1981 cairo_surface_t
*surface
;
1982 surface
= cairo_surface_create_similar(cairo_get_target(m_cairo
),CAIRO_CONTENT_COLOR_ALPHA
,10,10);
1983 cr
= cairo_create(surface
);
1984 cairo_set_line_cap(cr
, CAIRO_LINE_CAP_SQUARE
);
1985 cairo_set_line_width(cr
, 1);
1986 cairo_set_line_join(cr
,CAIRO_LINE_JOIN_MITER
);
1988 switch (m_brush
.GetStyle())
1990 case wxBRUSHSTYLE_CROSS_HATCH
:
1991 cairo_move_to(cr
, 5, 0);
1992 cairo_line_to(cr
, 5, 10);
1993 cairo_move_to(cr
, 0, 5);
1994 cairo_line_to(cr
, 10, 5);
1996 case wxBRUSHSTYLE_BDIAGONAL_HATCH
:
1997 cairo_move_to(cr
, 0, 10);
1998 cairo_line_to(cr
, 10, 0);
2000 case wxBRUSHSTYLE_FDIAGONAL_HATCH
:
2001 cairo_move_to(cr
, 0, 0);
2002 cairo_line_to(cr
, 10, 10);
2004 case wxBRUSHSTYLE_CROSSDIAG_HATCH
:
2005 cairo_move_to(cr
, 0, 0);
2006 cairo_line_to(cr
, 10, 10);
2007 cairo_move_to(cr
, 10, 0);
2008 cairo_line_to(cr
, 0, 10);
2010 case wxBRUSHSTYLE_HORIZONTAL_HATCH
:
2011 cairo_move_to(cr
, 0, 5);
2012 cairo_line_to(cr
, 10, 5);
2014 case wxBRUSHSTYLE_VERTICAL_HATCH
:
2015 cairo_move_to(cr
, 5, 0);
2016 cairo_line_to(cr
, 5, 10);
2019 wxFAIL_MSG(_("Couldn't get hatch style from wxBrush."));
2022 cairo_set_source_rgba(cr
, redPS
, greenPS
, bluePS
, alphaPS
);
2026 cairo_pattern_t
* pattern
= cairo_pattern_create_for_surface (surface
);
2027 cairo_surface_destroy(surface
);
2028 cairo_pattern_set_extend (pattern
, CAIRO_EXTEND_REPEAT
);
2029 cairo_set_source(m_cairo
, pattern
);
2030 cairo_pattern_destroy(pattern
);
2034 void wxGtkPrinterDCImpl::SetLogicalFunction( wxRasterOperationMode function
)
2036 if (function
== wxCLEAR
)
2037 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_CLEAR
);
2038 else if (function
== wxOR
)
2039 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_OUT
);
2040 else if (function
== wxNO_OP
)
2041 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_DEST
);
2042 else if (function
== wxAND
)
2043 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_ADD
);
2044 else if (function
== wxSET
)
2045 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_SATURATE
);
2046 else if (function
== wxXOR
)
2047 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_XOR
);
2048 else // wxCOPY or anything else.
2049 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_SOURCE
);
2052 void wxGtkPrinterDCImpl::SetBackground( const wxBrush
& brush
)
2054 m_backgroundBrush
= brush
;
2055 cairo_save(m_cairo
);
2056 cairo_set_operator (m_cairo
, CAIRO_OPERATOR_DEST_OVER
);
2058 SetBrush(m_backgroundBrush
);
2059 cairo_paint(m_cairo
);
2060 cairo_restore(m_cairo
);
2063 void wxGtkPrinterDCImpl::SetBackgroundMode(int mode
)
2065 if (mode
== wxBRUSHSTYLE_SOLID
)
2066 m_backgroundMode
= wxBRUSHSTYLE_SOLID
;
2068 m_backgroundMode
= wxBRUSHSTYLE_TRANSPARENT
;
2071 void wxGtkPrinterDCImpl::DoSetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
2073 cairo_rectangle ( m_cairo
, XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEVREL(width
), YLOG2DEVREL(height
));
2074 cairo_clip(m_cairo
);
2076 wxDCImpl::DoSetClippingRegion(x
, y
, width
, height
);
2079 void wxGtkPrinterDCImpl::DestroyClippingRegion()
2081 cairo_reset_clip(m_cairo
);
2084 bool wxGtkPrinterDCImpl::StartDoc(const wxString
& WXUNUSED(message
))
2089 void wxGtkPrinterDCImpl::EndDoc()
2094 void wxGtkPrinterDCImpl::StartPage()
2096 // Notice that we may change the Cairo transformation matrix only here and
2097 // not before (e.g. in wxGtkPrinterDCImpl ctor as we used to do) in order
2098 // to not affect _gtk_print_context_rotate_according_to_orientation() which
2099 // is used in GTK+ itself and wouldn't work correctly if we applied these
2100 // transformations before it is called.
2102 // By default the origin of the Cairo context is in the upper left
2103 // corner of the printable area. We need to translate it so that it
2104 // is in the upper left corner of the paper (without margins)
2105 GtkPageSetup
*setup
= gtk_print_context_get_page_setup( m_gpc
);
2107 ml
= gtk_page_setup_get_left_margin (setup
, GTK_UNIT_POINTS
);
2108 mt
= gtk_page_setup_get_top_margin (setup
, GTK_UNIT_POINTS
);
2109 cairo_translate(m_cairo
, -ml
, -mt
);
2112 cairo_scale( m_cairo
, 72.0 / (double)m_resolution
, 72.0 / (double)m_resolution
);
2116 void wxGtkPrinterDCImpl::EndPage()
2121 wxCoord
wxGtkPrinterDCImpl::GetCharHeight() const
2123 pango_layout_set_text( m_layout
, "H", 1 );
2126 pango_layout_get_pixel_size( m_layout
, &w
, &h
);
2128 return wxRound( h
* m_PS2DEV
);
2131 wxCoord
wxGtkPrinterDCImpl::GetCharWidth() const
2133 pango_layout_set_text( m_layout
, "H", 1 );
2136 pango_layout_get_pixel_size( m_layout
, &w
, &h
);
2138 return wxRound( w
* m_PS2DEV
);
2141 void wxGtkPrinterDCImpl::DoGetTextExtent(const wxString
& string
, wxCoord
*width
, wxCoord
*height
,
2143 wxCoord
*externalLeading
,
2144 const wxFont
*theFont
) const
2152 if ( externalLeading
)
2153 *externalLeading
= 0;
2160 cairo_save( m_cairo
);
2161 cairo_scale(m_cairo
, m_scaleX
, m_scaleY
);
2163 // Set layout's text
2164 const wxScopedCharBuffer dataUTF8
= string
.utf8_str();
2169 // scale the font and apply it
2170 PangoFontDescription
*desc
= theFont
->GetNativeFontInfo()->description
;
2171 oldSize
= pango_font_description_get_size(desc
);
2172 const float size
= oldSize
* GetFontPointSizeAdjustment(72.0);
2173 pango_font_description_set_size(desc
, (gint
)size
);
2175 pango_layout_set_font_description(m_layout
, desc
);
2178 pango_layout_set_text( m_layout
, dataUTF8
, strlen(dataUTF8
) );
2181 pango_layout_get_pixel_size( m_layout
, width
, &h
);
2187 PangoLayoutIter
*iter
= pango_layout_get_iter(m_layout
);
2188 int baseline
= pango_layout_iter_get_baseline(iter
);
2189 pango_layout_iter_free(iter
);
2190 *descent
= h
- PANGO_PIXELS(baseline
);
2195 // restore font and reset font's size back
2196 pango_layout_set_font_description(m_layout
, m_fontdesc
);
2198 PangoFontDescription
*desc
= theFont
->GetNativeFontInfo()->description
;
2199 pango_font_description_set_size(desc
, oldSize
);
2202 cairo_restore( m_cairo
);
2205 void wxGtkPrinterDCImpl::DoGetSize(int* width
, int* height
) const
2207 GtkPageSetup
*setup
= gtk_print_context_get_page_setup( m_gpc
);
2210 *width
= wxRound( (double)gtk_page_setup_get_paper_width( setup
, GTK_UNIT_POINTS
) * (double)m_resolution
/ 72.0 );
2212 *height
= wxRound( (double)gtk_page_setup_get_paper_height( setup
, GTK_UNIT_POINTS
) * (double)m_resolution
/ 72.0 );
2215 void wxGtkPrinterDCImpl::DoGetSizeMM(int *width
, int *height
) const
2217 GtkPageSetup
*setup
= gtk_print_context_get_page_setup( m_gpc
);
2220 *width
= wxRound( gtk_page_setup_get_paper_width( setup
, GTK_UNIT_MM
) );
2222 *height
= wxRound( gtk_page_setup_get_paper_height( setup
, GTK_UNIT_MM
) );
2225 wxSize
wxGtkPrinterDCImpl::GetPPI() const
2227 return wxSize( (int)m_resolution
, (int)m_resolution
);
2230 void wxGtkPrinterDCImpl::SetPrintData(const wxPrintData
& data
)
2235 // overridden for wxPrinterDC Impl
2237 wxRect
wxGtkPrinterDCImpl::GetPaperRect() const
2239 // Does GtkPrint support printer margins?
2242 DoGetSize( &w
, &h
);
2243 return wxRect( 0,0,w
,h
);
2246 int wxGtkPrinterDCImpl::GetResolution() const
2248 return m_resolution
;
2251 // ----------------------------------------------------------------------------
2253 // ----------------------------------------------------------------------------
2255 IMPLEMENT_CLASS(wxGtkPrintPreview
, wxPrintPreviewBase
)
2257 void wxGtkPrintPreview::Init(wxPrintout
* WXUNUSED(printout
),
2258 wxPrintout
* WXUNUSED(printoutForPrinting
),
2261 // convert wxPrintQuality to resolution (input pointer can be NULL)
2262 wxPrintQuality quality
= data
? data
->GetQuality() : wxPRINT_QUALITY_MEDIUM
;
2265 case wxPRINT_QUALITY_HIGH
:
2266 m_resolution
= 1200;
2269 case wxPRINT_QUALITY_LOW
:
2273 case wxPRINT_QUALITY_DRAFT
:
2280 // positive values directly indicate print resolution
2281 m_resolution
= quality
;
2285 wxFAIL_MSG( "unknown print quality" );
2288 case wxPRINT_QUALITY_MEDIUM
:
2297 wxGtkPrintPreview::wxGtkPrintPreview(wxPrintout
*printout
,
2298 wxPrintout
*printoutForPrinting
,
2299 wxPrintDialogData
*data
)
2300 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
2302 Init(printout
, printoutForPrinting
, data
? &data
->GetPrintData() : NULL
);
2305 wxGtkPrintPreview::wxGtkPrintPreview(wxPrintout
*printout
,
2306 wxPrintout
*printoutForPrinting
,
2308 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
2310 Init(printout
, printoutForPrinting
, data
);
2313 wxGtkPrintPreview::~wxGtkPrintPreview()
2317 bool wxGtkPrintPreview::Print(bool interactive
)
2319 if (!m_printPrintout
)
2322 wxPrinter
printer(& m_printDialogData
);
2323 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
2326 void wxGtkPrintPreview::DetermineScaling()
2328 wxPaperSize paperType
= m_printDialogData
.GetPrintData().GetPaperId();
2330 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->FindPaperType(paperType
);
2332 paper
= wxThePrintPaperDatabase
->FindPaperType(wxPAPER_A4
);
2336 const wxSize screenPPI
= wxGetDisplayPPI();
2337 int logPPIScreenX
= screenPPI
.GetWidth();
2338 int logPPIScreenY
= screenPPI
.GetHeight();
2339 int logPPIPrinterX
= m_resolution
;
2340 int logPPIPrinterY
= m_resolution
;
2342 m_previewPrintout
->SetPPIScreen( logPPIScreenX
, logPPIScreenY
);
2343 m_previewPrintout
->SetPPIPrinter( logPPIPrinterX
, logPPIPrinterY
);
2345 // Get width and height in points (1/72th of an inch)
2346 wxSize
sizeDevUnits(paper
->GetSizeDeviceUnits());
2347 sizeDevUnits
.x
= wxRound((double)sizeDevUnits
.x
* (double)m_resolution
/ 72.0);
2348 sizeDevUnits
.y
= wxRound((double)sizeDevUnits
.y
* (double)m_resolution
/ 72.0);
2350 wxSize
sizeTenthsMM(paper
->GetSize());
2351 wxSize
sizeMM(sizeTenthsMM
.x
/ 10, sizeTenthsMM
.y
/ 10);
2353 // If in landscape mode, we need to swap the width and height.
2354 if ( m_printDialogData
.GetPrintData().GetOrientation() == wxLANDSCAPE
)
2356 m_pageWidth
= sizeDevUnits
.y
;
2357 m_pageHeight
= sizeDevUnits
.x
;
2358 m_previewPrintout
->SetPageSizeMM(sizeMM
.y
, sizeMM
.x
);
2362 m_pageWidth
= sizeDevUnits
.x
;
2363 m_pageHeight
= sizeDevUnits
.y
;
2364 m_previewPrintout
->SetPageSizeMM(sizeMM
.x
, sizeMM
.y
);
2366 m_previewPrintout
->SetPageSizePixels(m_pageWidth
, m_pageHeight
);
2367 m_previewPrintout
->SetPaperRectPixels(wxRect(0, 0, m_pageWidth
, m_pageHeight
));
2369 // At 100%, the page should look about page-size on the screen.
2370 m_previewScaleX
= float(logPPIScreenX
) / logPPIPrinterX
;
2371 m_previewScaleY
= float(logPPIScreenY
) / logPPIPrinterY
;