#include "wx/gdiobj.h"
#include "wx/os2/private.h"
-#include "wx/fontutil.h"
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
{
public:
// ctors and such
- wxFont() { Init(); }
- wxFont(const wxFont& rFont) { Init(); Ref(rFont); }
+ wxFont() { }
wxFont( int nSize
,int nFamily
,int nStyle
,int nWeight
- ,bool bUnderlined = FALSE
+ ,bool bUnderlined = false
,const wxString& rsFace = wxEmptyString
,wxFontEncoding vEncoding = wxFONTENCODING_DEFAULT
)
{
- Init();
-
(void)Create( nSize
,nFamily
,nStyle
)
{
- Init();
-
(void)Create( rInfo
,hFont
);
,int nFamily
,int nStyle
,int nWeight
- ,bool bUnderlined = FALSE
+ ,bool bUnderlined = false
,const wxString& rsFace = wxEmptyString
,wxFontEncoding vEncoding = wxFONTENCODING_DEFAULT
);
virtual ~wxFont();
- //
- // Assignment
- //
- wxFont& operator=(const wxFont& rFont);
-
//
// Implement base class pure virtuals
//
virtual bool IsFree(void) const;
virtual bool RealizeResource(void);
virtual WXHANDLE GetResourceHandle(void);
- virtual bool FreeResource(bool bForce = FALSE);
+ virtual bool FreeResource(bool bForce = false);
WXHFONT GetHFONT(void) const;
protected:
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& rInfo);
- //
- // Common part of all ctors
- //
- void Init(void);
void Unshare(void);
private: