private:
GnomePrintContext *m_gpc;
+ bool m_native_preview;
private:
DECLARE_DYNAMIC_CLASS(wxGnomePrinter)
private:
GnomePrintContext *m_gpc;
+ bool m_native_preview;
private:
DECLARE_DYNAMIC_CLASS(wxGnomePrinter)
#include <libgnomeprint/gnome-print.h>
#include <libgnomeprint/gnome-print-pango.h>
#include <libgnomeprintui/gnome-print-dialog.h>
+#include <libgnomeprintui/gnome-print-job-preview.h>
//----------------------------------------------------------------------------
// wxGnomePrintNativeData
gtk_widget_destroy(m_widget);
m_widget = NULL;
+ if (response == GNOME_PRINT_DIALOG_RESPONSE_PREVIEW)
+ return wxID_PREVIEW;
+
return wxID_OK;
}
wxPrinterBase( data )
{
m_gpc = NULL;
+ m_native_preview = false;
}
wxGnomePrinter::~wxGnomePrinter()
else
dc = new wxGnomePrintDC( this );
+ if (m_native_preview)
+ printout->SetIsPreview(true);
+
if (!dc)
{
gnome_print_job_close( job );
}
gnome_print_job_close( job );
- gnome_print_job_print( job );
+ if (m_native_preview)
+ {
+ wxString title( _("Print preview") );
+ gtk_widget_show( gnome_print_job_preview_new( job, (const guchar*)(const char*)wxGTK_CONV(title) ));
+ }
+ else
+ {
+ gnome_print_job_print( job );
+ }
delete dc;
wxDC* wxGnomePrinter::PrintDialog( wxWindow *parent )
{
wxGnomePrintDialog dialog( parent, &m_printDialogData );
- if (dialog.ShowModal() == wxID_CANCEL)
+ int ret = dialog.ShowModal();
+ if (ret == wxID_CANCEL)
{
sm_lastError = wxPRINTER_ERROR;
return NULL;
}
+ m_native_preview = ret == wxID_PREVIEW;
+
m_printDialogData = dialog.GetPrintDialogData();
return new wxGnomePrintDC( this );
}
#include <libgnomeprint/gnome-print.h>
#include <libgnomeprint/gnome-print-pango.h>
#include <libgnomeprintui/gnome-print-dialog.h>
+#include <libgnomeprintui/gnome-print-job-preview.h>
//----------------------------------------------------------------------------
// wxGnomePrintNativeData
gtk_widget_destroy(m_widget);
m_widget = NULL;
+ if (response == GNOME_PRINT_DIALOG_RESPONSE_PREVIEW)
+ return wxID_PREVIEW;
+
return wxID_OK;
}
wxPrinterBase( data )
{
m_gpc = NULL;
+ m_native_preview = false;
}
wxGnomePrinter::~wxGnomePrinter()
else
dc = new wxGnomePrintDC( this );
+ if (m_native_preview)
+ printout->SetIsPreview(true);
+
if (!dc)
{
gnome_print_job_close( job );
}
gnome_print_job_close( job );
- gnome_print_job_print( job );
+ if (m_native_preview)
+ {
+ wxString title( _("Print preview") );
+ gtk_widget_show( gnome_print_job_preview_new( job, (const guchar*)(const char*)wxGTK_CONV(title) ));
+ }
+ else
+ {
+ gnome_print_job_print( job );
+ }
delete dc;
wxDC* wxGnomePrinter::PrintDialog( wxWindow *parent )
{
wxGnomePrintDialog dialog( parent, &m_printDialogData );
- if (dialog.ShowModal() == wxID_CANCEL)
+ int ret = dialog.ShowModal();
+ if (ret == wxID_CANCEL)
{
sm_lastError = wxPRINTER_ERROR;
return NULL;
}
+ m_native_preview = ret == wxID_PREVIEW;
+
m_printDialogData = dialog.GetPrintDialogData();
return new wxGnomePrintDC( this );
}