#ifndef _WX_FONT_H_BASE_
#define _WX_FONT_H_BASE_
+#ifdef __GNUG__
+ #pragma interface "fontbase.h"
+#endif
+
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
wxFONTENCODING_CP850, // CP437 merged with Latin1
wxFONTENCODING_CP852, // CP437 merged with Latin2
wxFONTENCODING_CP855, // another cyrillic encoding
- wxFONTENCODING_CP866 = wxFONTENCODING_ALTERNATIVE,
+ wxFONTENCODING_CP866, // and another one
// and for Windows
wxFONTENCODING_CP1250, // WinLatin2
wxFONTENCODING_CP1251, // WinCyrillic
// wxFontBase represents a font object
// ----------------------------------------------------------------------------
+class WXDLLEXPORT wxFontRefData;
+
class wxFontBase : public wxGDIObject
{
public:
protected:
// get the internal data
- class WXDLLEXPORT wxFontRefData *GetFontData() const
+ wxFontRefData *GetFontData() const
{ return (wxFontRefData *)m_refData; }
private:
// macros
// ----------------------------------------------------------------------------
-// VZ: this is ugly (FIXME)
#define M_FONTDATA GetFontData()
#endif