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_