X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f3437beb5d119ef51d058a35ef8933b412f77576..56eeb97339e6760855b4e7866b7f4dd92368a189:/include/wx/mgl/font.h diff --git a/include/wx/mgl/font.h b/include/wx/mgl/font.h index 4aed3d6dfb..b33e7341c5 100644 --- a/include/wx/mgl/font.h +++ b/include/wx/mgl/font.h @@ -2,17 +2,13 @@ // Name: font.h // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) +// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_FONT_H__ #define __WX_FONT_H__ -#ifdef __GNUG__ - #pragma interface "font.h" -#endif - #include "wx/hash.h" // ---------------------------------------------------------------------------- @@ -34,13 +30,10 @@ class WXDLLEXPORT wxFont : public wxFontBase { public: // ctors and such - wxFont() { Init(); } - wxFont(const wxFont& font) { Init(); Ref(font); } + wxFont() { } wxFont(const wxNativeFontInfo& info) { - Init(); - (void)Create(info); } @@ -52,8 +45,6 @@ public: const wxString& face = wxEmptyString, wxFontEncoding encoding = wxFONTENCODING_DEFAULT) { - Init(); - (void)Create(size, family, style, weight, underlined, face, encoding); } @@ -67,10 +58,7 @@ public: bool Create(const wxNativeFontInfo& fontinfo); - ~wxFont() {} - - // assignment - wxFont& operator=(const wxFont& font); + virtual ~wxFont() {} // implement base class pure virtuals virtual int GetPointSize() const; @@ -81,25 +69,26 @@ public: virtual bool GetUnderlined() const; virtual wxFontEncoding GetEncoding() const; virtual bool IsFixedWidth() const; + virtual const wxNativeFontInfo *GetNativeFontInfo() const; virtual void SetPointSize(int pointSize); virtual void SetFamily(int family); virtual void SetStyle(int style); virtual void SetWeight(int weight); - virtual void SetFaceName(const wxString& faceName); + virtual bool SetFaceName(const wxString& faceName); virtual void SetUnderlined(bool underlined); virtual void SetEncoding(wxFontEncoding encoding); - // implementation from now on - void Unshare(); + // Unofficial API, don't use + virtual void SetNoAntiAliasing(bool no = true); + virtual bool GetNoAntiAliasing() const; struct font_t *GetMGLfont_t(float scale, bool antialiased); - // no data :-) - protected: - // common part of all ctors - void Init() {} + // ref counting code + virtual wxObjectRefData *CreateRefData() const; + virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; private: DECLARE_DYNAMIC_CLASS(wxFont)