+ /*! @abstract Internal constructor with ref data
+ @discussion
+ Takes ownership of @a refData. That is, it is assumed that refData has either just been
+ created using new (which initializes its m_refCount to 1) or if you are sharing a ref that
+ you have called IncRef on it before passing it to this method.
+ */
+ explicit wxFont(wxFontRefData *refData)
+ { Create(refData); }
+ bool Create(wxFontRefData *refData);
+
+ virtual wxGDIRefData *CreateGDIRefData() const;
+ virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;