]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/font.h
Applied patch [ 1195797 ] Fixes to compile on Win64
[wxWidgets.git] / include / wx / mgl / font.h
index 335c54636be8eb7cdc13f6c4e214e11da3ea7b83..6a105bf6fcc59106c2a3a700b6776dca4794e576 100644 (file)
@@ -2,14 +2,14 @@
 // 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__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "font.h"
 #endif
 
@@ -67,7 +67,7 @@ public:
 
     bool Create(const wxNativeFontInfo& fontinfo);
 
-    ~wxFont();
+    ~wxFont() {}
 
     // assignment
     wxFont& operator=(const wxFont& font);
@@ -80,6 +80,8 @@ public:
     virtual wxString GetFaceName() const;
     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);
@@ -89,16 +91,15 @@ public:
     virtual void SetUnderlined(bool underlined);
     virtual void SetEncoding(wxFontEncoding encoding);
 
-    // implementation from now on
-    void Unshare();
-
     struct font_t *GetMGLfont_t(float scale, bool antialiased);
 
-    // no data :-)
-
 protected:
     // common part of all ctors
-    void Init();
+    void Init() {}
+
+    // ref counting code
+    virtual wxObjectRefData *CreateRefData() const;
+    virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
 
 private:
     DECLARE_DYNAMIC_CLASS(wxFont)