X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47dc9f78713d756fe0426a9f747a0f1151323b6a..b6e2eddeaf7e559589ce41ac41e88f9bd71c5a08:/include/wx/generic/dcpsg.h?ds=sidebyside diff --git a/include/wx/generic/dcpsg.h b/include/wx/generic/dcpsg.h index be6dcbfd01..8848f16018 100644 --- a/include/wx/generic/dcpsg.h +++ b/include/wx/generic/dcpsg.h @@ -4,14 +4,14 @@ // Author: Julian Smart and others // Modified by: // RCS-ID: $Id$ -// Copyright: (c) Julian Smart, Robert Roebling and Markus Holzem +// Copyright: (c) Julian Smart and Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_DCPSG_H_ #define _WX_DCPSG_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "dcpsg.h" #endif @@ -38,17 +38,18 @@ class wxPostScriptDC; class WXDLLEXPORT wxPostScriptDC: public wxDC { public: - wxPostScriptDC(); + wxPostScriptDC(); - // Recommended constructor - wxPostScriptDC(const wxPrintData& printData); + // Recommended constructor + wxPostScriptDC(const wxPrintData& printData); - ~wxPostScriptDC(); + // Recommended destructor :-) + ~wxPostScriptDC(); #if WXWIN_COMPATIBILITY_2_2 - wxPostScriptDC( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL ) - { Create( output, interactive, parent ); } - bool Create ( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL ); + wxPostScriptDC( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL ) + { Create( output, interactive, parent ); } + bool Create ( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL ); #endif virtual bool Ok() const; @@ -132,6 +133,12 @@ private: static float ms_PSScaleFactor; protected: +#if wxUSE_PANGO + PangoContext *m_context; + PangoLayout *m_layout; + PangoFontDescription *m_fontdesc; +#endif + FILE* m_pstream; // PostScript output stream wxString m_title; unsigned char m_currentRed;