1 /////////////////////////////////////////////////////////////////////////////
3 // Author: Robert Roebling
4 // Purpose: Implement GNOME printing support
6 // Copyright: Robert Roebling
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "gprint.cpp"
14 // For compilers that support precompilation, includes "wx/wx.h".
15 #include "wx/wxprec.h"
22 #include "wx/fontutil.h"
23 #include "wx/printdlg.h"
24 #include "wx/gtk/private.h"
26 #include <libgnomeprint/gnome-print.h>
27 #include <libgnomeprint/gnome-print-pango.h>
28 #include <libgnomeprintui/gnome-print-dialog.h>
30 //----------------------------------------------------------------------------
31 // wxGnomePrintNativeData
32 //----------------------------------------------------------------------------
34 IMPLEMENT_CLASS(wxGnomePrintNativeData
, wxPrintNativeDataBase
)
36 wxGnomePrintNativeData::wxGnomePrintNativeData()
38 m_config
= gnome_print_config_default();
39 m_job
= gnome_print_job_new( m_config
);
42 wxGnomePrintNativeData::~wxGnomePrintNativeData()
44 g_object_unref (G_OBJECT (m_config
));
45 g_object_unref (G_OBJECT (m_job
));
48 bool wxGnomePrintNativeData::TransferTo( wxPrintData
&data
)
54 bool wxGnomePrintNativeData::TransferFrom( const wxPrintData
&data
)
60 //----------------------------------------------------------------------------
61 // wxGnomePrintFactory
62 //----------------------------------------------------------------------------
64 wxPrinterBase
* wxGnomePrintFactory::CreatePrinter( wxPrintDialogData
*data
)
66 return new wxGnomePrinter( data
);
69 wxPrintPreviewBase
*wxGnomePrintFactory::CreatePrintPreview( wxPrintout
*preview
,
71 wxPrintDialogData
*data
)
73 return new wxPostScriptPrintPreview( preview
, printout
, data
);
76 wxPrintPreviewBase
*wxGnomePrintFactory::CreatePrintPreview( wxPrintout
*preview
,
80 return new wxPostScriptPrintPreview( preview
, printout
, data
);
83 wxPrintDialogBase
*wxGnomePrintFactory::CreatePrintDialog( wxWindow
*parent
,
84 wxPrintDialogData
*data
)
86 return new wxGenericPrintDialog( parent
, data
);
89 wxPrintDialogBase
*wxGnomePrintFactory::CreatePrintDialog( wxWindow
*parent
,
92 return new wxGenericPrintDialog( parent
, data
);
95 bool wxGnomePrintFactory::HasPrintSetupDialog()
100 wxDialog
*wxGnomePrintFactory::CreatePrintSetupDialog( wxWindow
*parent
, wxPrintData
*data
)
102 return new wxGnomePrintSetupDialog( parent
, data
);
105 bool wxGnomePrintFactory::HasOwnPrintToFile()
110 bool wxGnomePrintFactory::HasPrinterLine()
115 wxString
wxGnomePrintFactory::CreatePrinterLine()
117 // We should query "gnome_config_default" here
118 return _("GNOME print");
121 bool wxGnomePrintFactory::HasStatusLine()
126 wxString
wxGnomePrintFactory::CreateStatusLine()
128 // We should query "gnome_config_default" here
132 wxPrintNativeDataBase
*wxGnomePrintFactory::CreatePrintNativeData()
134 return new wxGnomePrintNativeData
;
137 //----------------------------------------------------------------------------
138 // wxGnomePrintSetupDialog
139 //----------------------------------------------------------------------------
141 IMPLEMENT_CLASS(wxGnomePrintSetupDialog
, wxDialog
)
143 wxGnomePrintSetupDialog::wxGnomePrintSetupDialog( wxWindow
*parent
, wxPrintData
*data
)
145 wxGnomePrintNativeData
*native
=
146 (wxGnomePrintNativeData
*) data
->GetNativeData();
148 m_widget
= gnome_print_dialog_new (native
->GetPrintJob(), (guchar
*)"Print setup", 0);
151 wxGnomePrintSetupDialog::~wxGnomePrintSetupDialog()
156 int wxGnomePrintSetupDialog::ShowModal()
158 int response
= gtk_dialog_run (GTK_DIALOG (m_widget
));
159 gtk_widget_destroy(m_widget
);
162 if (response
== GNOME_PRINT_DIALOG_RESPONSE_CANCEL
)
168 bool wxGnomePrintSetupDialog::Validate()
173 bool wxGnomePrintSetupDialog::TransferDataToWindow()
178 bool wxGnomePrintSetupDialog::TransferDataFromWindow()
184 //----------------------------------------------------------------------------
186 //----------------------------------------------------------------------------
188 IMPLEMENT_CLASS(wxGnomePrinter
, wxPrinterBase
)
190 wxGnomePrinter::wxGnomePrinter( wxPrintDialogData
*data
) :
191 wxPrinterBase( data
)
196 wxGnomePrinter::~wxGnomePrinter()
200 bool wxGnomePrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
204 sm_lastError
= wxPRINTER_ERROR
;
208 wxPrintData printdata
= GetPrintDialogData().GetPrintData();
209 wxGnomePrintNativeData
*data
=
210 (wxGnomePrintNativeData
*) printdata
.GetNativeData();
212 GnomePrintJob
*job
= data
->GetPrintJob();
213 m_gpc
= gnome_print_job_get_context (job
);
218 dc
= PrintDialog( parent
);
220 dc
= new wxGnomePrintDC( this );
224 gnome_print_job_close( job
);
230 printout
->OnPreparePrinting();
231 printout
->OnBeginPrinting();
233 if (!printout
->OnBeginDocument(0, 0))
235 sm_lastError
= wxPRINTER_ERROR
;
240 for (pn
= 1; pn
<= 2; pn
++)
243 printout
->OnPrintPage(pn
);
247 printout
->OnEndDocument();
248 printout
->OnEndPrinting();
251 gnome_print_job_close( job
);
252 gnome_print_job_print( job
);
256 return (sm_lastError
== wxPRINTER_NO_ERROR
);
259 wxDC
* wxGnomePrinter::PrintDialog( wxWindow
*parent
)
261 wxPrintDialog
dialog( parent
, &m_printDialogData
);
262 if (dialog
.ShowModal() == wxID_CANCEL
)
264 sm_lastError
= wxPRINTER_ERROR
;
268 return new wxGnomePrintDC( this );
271 bool wxGnomePrinter::Setup( wxWindow
*parent
)
275 //-----------------------------------------------------------------------------
277 //-----------------------------------------------------------------------------
279 IMPLEMENT_CLASS(wxGnomePrintDC
, wxDCBase
)
281 wxGnomePrintDC::wxGnomePrintDC( wxGnomePrinter
*printer
)
285 m_gpc
= printer
->GetPrintContext();
287 m_layout
= gnome_print_pango_create_layout( m_gpc
);
288 m_fontdesc
= pango_font_description_from_string( "Sans 12" );
294 m_signX
= 1; // default x-axis left to right
295 m_signY
= -1; // default y-axis bottom up -> top down
298 wxGnomePrintDC::~wxGnomePrintDC()
302 bool wxGnomePrintDC::Ok() const
307 bool wxGnomePrintDC::DoFloodFill(wxCoord x1
, wxCoord y1
, const wxColour
&col
, int style
)
312 bool wxGnomePrintDC::DoGetPixel(wxCoord x1
, wxCoord y1
, wxColour
*col
) const
317 void wxGnomePrintDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
319 if (m_pen
.GetStyle() == wxTRANSPARENT
) return;
323 gnome_print_moveto ( m_gpc
, XDEV2LOG(x1
), YDEV2LOG(y1
) );
324 gnome_print_lineto ( m_gpc
, XDEV2LOG(x2
), YDEV2LOG(y2
) );
325 gnome_print_stroke ( m_gpc
);
327 CalcBoundingBox( x1
, y1
);
328 CalcBoundingBox( x2
, y2
);
331 void wxGnomePrintDC::DoCrossHair(wxCoord x
, wxCoord y
)
335 void wxGnomePrintDC::DoDrawArc(wxCoord x1
,wxCoord y1
,wxCoord x2
,wxCoord y2
,wxCoord xc
,wxCoord yc
)
339 void wxGnomePrintDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
343 void wxGnomePrintDC::DoDrawPoint(wxCoord x
, wxCoord y
)
347 void wxGnomePrintDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
351 void wxGnomePrintDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
, int fillStyle
)
355 void wxGnomePrintDC::DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
, int fillStyle
)
359 void wxGnomePrintDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
361 if (m_brush
.GetStyle () != wxTRANSPARENT
)
365 gnome_print_newpath( m_gpc
);
366 gnome_print_moveto( m_gpc
, XLOG2DEV(x
), YLOG2DEV(y
) );
367 gnome_print_lineto( m_gpc
, XLOG2DEV(x
+ width
), YLOG2DEV(y
) );
368 gnome_print_lineto( m_gpc
, XLOG2DEV(x
+ width
), YLOG2DEV(y
+ height
) );
369 gnome_print_lineto( m_gpc
, XLOG2DEV(x
), YLOG2DEV(y
+ height
) );
370 gnome_print_closepath( m_gpc
);
371 gnome_print_fill( m_gpc
);
373 CalcBoundingBox( x
, y
);
374 CalcBoundingBox( x
+ width
, y
+ height
);
377 if (m_pen
.GetStyle () != wxTRANSPARENT
)
381 gnome_print_newpath( m_gpc
);
382 gnome_print_moveto( m_gpc
, XLOG2DEV(x
), YLOG2DEV(y
) );
383 gnome_print_lineto( m_gpc
, XLOG2DEV(x
+ width
), YLOG2DEV(y
) );
384 gnome_print_lineto( m_gpc
, XLOG2DEV(x
+ width
), YLOG2DEV(y
+ height
) );
385 gnome_print_lineto( m_gpc
, XLOG2DEV(x
), YLOG2DEV(y
+ height
) );
386 gnome_print_closepath( m_gpc
);
387 gnome_print_stroke( m_gpc
);
389 CalcBoundingBox( x
, y
);
390 CalcBoundingBox( x
+ width
, y
+ height
);
394 void wxGnomePrintDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
398 void wxGnomePrintDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
402 void wxGnomePrintDC::DoDrawSpline(wxList
*points
)
406 bool wxGnomePrintDC::DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
407 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, int rop
, bool useMask
,
408 wxCoord xsrcMask
, wxCoord ysrcMask
)
413 void wxGnomePrintDC::DoDrawIcon( const wxIcon
& icon
, wxCoord x
, wxCoord y
)
417 void wxGnomePrintDC::DoDrawBitmap( const wxBitmap
& bitmap
, wxCoord x
, wxCoord y
, bool useMask
)
421 void wxGnomePrintDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
423 if (m_textForegroundColour
.Ok())
425 unsigned char red
= m_textForegroundColour
.Red();
426 unsigned char blue
= m_textForegroundColour
.Blue();
427 unsigned char green
= m_textForegroundColour
.Green();
429 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
))
431 double redPS
= (double)(red
) / 255.0;
432 double bluePS
= (double)(blue
) / 255.0;
433 double greenPS
= (double)(green
) / 255.0;
435 gnome_print_setrgbcolor( m_gpc
, redPS
, bluePS
, greenPS
);
438 m_currentBlue
= blue
;
439 m_currentGreen
= green
;
446 wxPrintf( wxT("x,y: %d,%d\n"), x
, y
);
448 bool underlined
= m_font
.Ok() && m_font
.GetUnderlined();
451 const wxCharBuffer data
= wxConvUTF8
.cWC2MB( text
);
453 const wxWCharBuffer wdata
= wxConvLocal
.cMB2WC( text
);
456 const wxCharBuffer data
= wxConvUTF8
.cWC2MB( wdata
);
459 size_t datalen
= strlen((const char*)data
);
460 pango_layout_set_text( m_layout
, (const char*) data
, datalen
);
464 PangoAttrList
*attrs
= pango_attr_list_new();
465 PangoAttribute
*a
= pango_attr_underline_new(PANGO_UNDERLINE_SINGLE
);
467 a
->end_index
= datalen
;
468 pango_attr_list_insert(attrs
, a
);
469 pango_layout_set_attributes(m_layout
, attrs
);
470 pango_attr_list_unref(attrs
);
473 gnome_print_moveto (m_gpc
, x
, y
);
474 gnome_print_pango_layout( m_gpc
, m_layout
);
478 // undo underline attributes setting:
479 pango_layout_set_attributes(m_layout
, NULL
);
482 // CalcBoundingBox (x + width, y + height);
483 CalcBoundingBox (x
, y
);
486 void wxGnomePrintDC::DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
490 void wxGnomePrintDC::Clear()
494 void wxGnomePrintDC::SetFont( const wxFont
& font
)
501 pango_font_description_free( m_fontdesc
);
503 m_fontdesc
= pango_font_description_copy( m_font
.GetNativeFontInfo()->description
);
505 pango_layout_set_font_description( m_layout
, m_fontdesc
);
509 void wxGnomePrintDC::SetPen( const wxPen
& pen
)
511 if (!pen
.Ok()) return;
513 int oldStyle
= m_pen
.GetStyle();
517 gnome_print_setlinewidth( m_gpc
, XLOG2DEVREL( 1000 * m_pen
.GetWidth() ) / 1000.0f
);
519 unsigned char red
= m_pen
.GetColour().Red();
520 unsigned char blue
= m_pen
.GetColour().Blue();
521 unsigned char green
= m_pen
.GetColour().Green();
523 if (!(red
== m_currentRed
&& green
== m_currentGreen
&& blue
== m_currentBlue
))
525 double redPS
= (double)(red
) / 255.0;
526 double bluePS
= (double)(blue
) / 255.0;
527 double greenPS
= (double)(green
) / 255.0;
529 gnome_print_setrgbcolor( m_gpc
, redPS
, bluePS
, greenPS
);
532 m_currentBlue
= blue
;
533 m_currentGreen
= green
;
537 void wxGnomePrintDC::SetBrush( const wxBrush
& brush
)
541 void wxGnomePrintDC::SetLogicalFunction( int function
)
545 void wxGnomePrintDC::SetBackground( const wxBrush
& brush
)
549 void wxGnomePrintDC::DoSetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
553 void wxGnomePrintDC::DestroyClippingRegion()
557 bool wxGnomePrintDC::StartDoc(const wxString
& message
)
559 SetDeviceOrigin( 0,0 );
564 void wxGnomePrintDC::EndDoc()
568 void wxGnomePrintDC::StartPage()
570 gnome_print_beginpage( m_gpc
, (const guchar
*) "1" );
573 void wxGnomePrintDC::EndPage()
575 gnome_print_showpage( m_gpc
);
578 wxCoord
wxGnomePrintDC::GetCharHeight() const
583 wxCoord
wxGnomePrintDC::GetCharWidth() const
588 void wxGnomePrintDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
590 wxCoord
*externalLeading
,
591 wxFont
*theFont
) const
595 void wxGnomePrintDC::DoGetSize(int* width
, int* height
) const
597 // No idea if that is efficient
598 GnomePrintConfig
*config
= gnome_print_config_default();
601 bool result
= gnome_print_config_get_page_size( config
, &w
, &h
);
605 // Standard PS resolution DIN A4 size.
615 wxPrintf( wxT("size %d,%d\n"), *width
, *height
);
618 void wxGnomePrintDC::DoGetSizeMM(int *width
, int *height
) const
622 /// Later, for now DIN A4
632 wxSize
wxGnomePrintDC::GetPPI() const
634 return wxSize(72,72);
637 void wxGnomePrintDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
639 m_signX
= (xLeftRight
? 1 : -1);
640 m_signY
= (yBottomUp
? 1 : -1);
642 ComputeScaleAndOrigin();
645 void wxGnomePrintDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
651 wxDC::SetDeviceOrigin( x
, h
-y
);
654 void wxGnomePrintDC::SetResolution(int ppi
)
658 int wxGnomePrintDC::GetResolution()