]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/font.h
*** empty log message ***
[wxWidgets.git] / include / wx / msw / font.h
index 2ed2b248f1076a24f0cd9ec4aba2cc9484b7b261..a7a6609d2fe66f6bf911245d4f500ddc872a93e0 100644 (file)
@@ -5,12 +5,12 @@
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Copyright:   (c) Julian Smart
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __FONTH__
-#define __FONTH__
+#ifndef _WX_FONT_H_
+#define _WX_FONT_H_
 
 #ifdef __GNUG__
 #pragma interface "font.h"
@@ -25,6 +25,7 @@ class WXDLLEXPORT wxFontRefData: public wxGDIRefData
     friend class WXDLLEXPORT wxFont;
 public:
     wxFontRefData(void);
+    wxFontRefData(const wxFontRefData& data);
     ~wxFontRefData(void);
 protected:
   bool          m_temporary;   // If TRUE, the pointer to the actual font
@@ -43,7 +44,7 @@ protected:
 
 #define M_FONTDATA ((wxFontRefData *)m_refData)
 
-WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
+WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
 
 // Font
 class WXDLLEXPORT wxFont: public wxGDIObject
@@ -53,7 +54,6 @@ public:
   wxFont(void);
   wxFont(int PointSize, int Family, int Style, int Weight, bool underlined = FALSE, const wxString& Face = wxEmptyString);
   inline wxFont(const wxFont& font) { Ref(font); }
-  inline wxFont(const wxFont* font) { /* UnRef(); */ if (font) Ref(*font); }
 
   ~wxFont(void);
 
@@ -68,7 +68,7 @@ public:
   virtual bool ReleaseResource(void);
 */
 
-  virtual bool IsFree(void);
+  virtual bool IsFree() const;
   virtual bool Ok(void) const { return (m_refData != NULL) ; }
 
   inline int GetPointSize(void) const { return M_FONTDATA->m_pointSize; }
@@ -82,17 +82,20 @@ public:
   wxString GetWeightString(void) const ;
   inline bool GetUnderlined(void) const { return M_FONTDATA->m_underlined; }
 
-  void SetPointSize(const int pointSize);
-  void SetFamily(const int family);
-  void SetStyle(const int style);
-  void SetWeight(const int weight);
+  void SetPointSize(int pointSize);
+  void SetFamily(int family);
+  void SetStyle(int style);
+  void SetWeight(int weight);
   void SetFaceName(const wxString& faceName);
-  void SetUnderlined(const bool underlined);
+  void SetUnderlined(bool underlined);
 
-  inline wxFont& operator = (const wxFont& font) { if (*this == font) return (*this); Ref(font); return *this; }
-  inline bool operator == (const wxFont& font) { return m_refData == font.m_refData; }
-  inline bool operator != (const wxFont& font) { return m_refData != font.m_refData; }
+  wxFont& operator = (const wxFont& font) { if (*this == font) return (*this); Ref(font); return *this; }
+  bool operator == (const wxFont& font) const { return m_refData == font.m_refData; }
+  bool operator != (const wxFont& font) const { return m_refData != font.m_refData; }
+
+protected:
+  void Unshare();
 };
 
 #endif
-    // __FONTH__
+    // _WX_FONT_H_