]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/font.h
Patch from Jed Burgess that optionally allows the grid to notify when
[wxWidgets.git] / include / wx / msw / font.h
index b1d31e2fb1406572fc81dd3d646171c7136565fe..eb54983eb64e0d9c10bd09fe44fcf0a13152d8b6 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_FONT_H_
 #define _WX_FONT_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "font.h"
 #endif
 
@@ -31,7 +31,7 @@ public:
            int family,
            int style,
            int weight,
-           bool underlined = FALSE,
+           bool underlined = false,
            const wxString& face = wxEmptyString,
            wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
     {
@@ -53,7 +53,7 @@ public:
                 int family,
                 int style,
                 int weight,
-                bool underlined = FALSE,
+                bool underlined = false,
                 const wxString& face = wxEmptyString,
                 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
 
@@ -72,7 +72,7 @@ public:
     virtual bool GetUnderlined() const;
     virtual wxString GetFaceName() const;
     virtual wxFontEncoding GetEncoding() const;
-    virtual wxNativeFontInfo* GetNativeFontInfo() const;
+    virtual const wxNativeFontInfo *GetNativeFontInfo() const;
 
     virtual void SetPointSize(int pointSize);
     virtual void SetFamily(int family);
@@ -90,7 +90,7 @@ public:
     virtual bool IsFree() const;
     virtual bool RealizeResource();
     virtual WXHANDLE GetResourceHandle() const;
-    virtual bool FreeResource(bool force = FALSE);
+    virtual bool FreeResource(bool force = false);
 
     // for consistency with other wxMSW classes
     WXHFONT GetHFONT() const;