ATSU Rendering Support added

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2002-01-11 13:27:19 +00:00
parent dae752d4b1
commit 477594f737
2 changed files with 12 additions and 3 deletions

View File

@@ -274,10 +274,18 @@ protected:
mutable bool m_macPenInstalled ; mutable bool m_macPenInstalled ;
mutable bool m_macBrushInstalled ; mutable bool m_macBrushInstalled ;
WXHRGN m_macBoundaryClipRgn ; WXHRGN m_macBoundaryClipRgn ;
WXHRGN m_macCurrentClipRgn ; WXHRGN m_macCurrentClipRgn ;
wxPoint m_macLocalOrigin ; wxPoint m_macLocalOrigin ;
void MacSetupPort( wxMacPortStateHelper* ph ) const ; void MacSetupPort( wxMacPortStateHelper* ph ) const ;
void MacCleanupPort( wxMacPortStateHelper* ph ) const ;
mutable void* m_macATSUIStyle ;
mutable wxMacPortStateHelper* m_macCurrentPortStateHelper ;
mutable bool m_macFormerAliasState ;
mutable short m_macFormerAliasSize ;
mutable bool m_macAliasWasEnabled ;
mutable void* m_macForegroundPixMap ;
mutable void* m_macBackgroundPixMap ;
}; };
#endif #endif

View File

@@ -68,11 +68,12 @@ protected:
bool m_underlined; bool m_underlined;
wxString m_faceName; wxString m_faceName;
wxFontEncoding m_encoding; wxFontEncoding m_encoding;
public : public :
short m_macFontNum ; short m_macFontNum ;
short m_macFontSize ; short m_macFontSize ;
unsigned char m_macFontStyle ; unsigned char m_macFontStyle ;
wxUint32 m_macATSUFontID ;
public : public :
void MacFindFont() ; void MacFindFont() ;
}; };