virtual wxPageSetupDialogBase *CreatePageSetupDialog( wxWindow *parent,
wxPageSetupDialogData * data = NULL );
-#if wxUSE_NEW_DC
virtual wxDCImpl* CreatePrinterDCImpl( wxPrinterDC *owner, const wxPrintData& data );
-#else
- virtual wxDC* CreatePrinterDC( const wxPrintData& data );
-#endif
virtual bool HasPrintSetupDialog();
virtual wxDialog *CreatePrintSetupDialog( wxWindow *parent, wxPrintData *data );
// wxGtkPrinterDC
//-----------------------------------------------------------------------------
-#if wxUSE_NEW_DC
class WXDLLIMPEXP_CORE wxGtkPrinterDCImpl : public wxDCImpl
-#else
-#define wxGtkPrinterDCImpl wxGtkPrinterDC
-class WXDLLIMPEXP_CORE wxGtkPrinterDC : public wxDC
-#endif
{
public:
-#if wxUSE_NEW_DC
wxGtkPrinterDCImpl( wxPrinterDC *owner, const wxPrintData& data );
-#else
- wxGtkPrinterDC( const wxPrintData& data );
-#endif
virtual ~wxGtkPrinterDCImpl();
bool Ok() const { return IsOk(); }
bool IsOk() const;
+ virtual void* GetCairoContext() const;
+
bool CanDrawBitmap() const { return true; }
void Clear();
void SetFont( const wxFont& font );
virtual void DetermineScaling();
private:
- void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);
+ void Init(wxPrintout *printout,
+ wxPrintout *printoutForPrinting,
+ wxPrintData *data);
+
+ // resolution to use in DPI
+ int m_resolution;
DECLARE_CLASS(wxGtkPrintPreview)
};
-#endif
+#endif // wxUSE_GTKPRINT
-#endif
+#endif // _WX_GTK_PRINT_H_