,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, nWeight, bUnderlined, rsFace, vEncoding);
+ (void)Create( nSize
+ ,nFamily
+ ,nStyle
+ ,nWeight
+ ,bUnderlined
+ ,rsFace
+ ,vEncoding
+ );
}
- wxFont(const wxNativeFontInfo& rInfo)
+ wxFont( const wxNativeFontInfo& rInfo
+ ,WXHFONT hFont = 0
+ )
+
{
Init();
- (void)Create( rInfo.pointSize
- ,rInfo.family
- ,rInfo.style
- ,rInfo.weight
- ,rInfo.underlined
- ,rInfo.faceName
- ,rInfo.encoding
+ (void)Create( rInfo
+ ,hFont
);
}
+ wxFont(const wxString& rsFontDesc);
+
bool Create( int nSize
,int nFamily
,int nStyle
,int nWeight
- ,bool bUnderlined = FALSE
+ ,bool bUnderlined = false
,const wxString& rsFace = wxEmptyString
,wxFontEncoding vEncoding = wxFONTENCODING_DEFAULT
);
+ bool Create( const wxNativeFontInfo& rInfo
+ ,WXHFONT hFont = 0
+ );
virtual ~wxFont();
//
// Implement base class pure virtuals
//
- virtual int GetPointSize(void) const;
- virtual int GetFamily(void) const;
- virtual int GetStyle(void) const;
- virtual int GetWeight(void) const;
- virtual bool GetUnderlined(void) const;
- virtual wxString GetFaceName(void) const;
- virtual wxFontEncoding GetEncoding(void) const;
- virtual HPS GetPS(void) const;
+ virtual int GetPointSize(void) const;
+ virtual int GetFamily(void) const;
+ virtual int GetStyle(void) const;
+ virtual int GetWeight(void) const;
+ virtual bool GetUnderlined(void) const;
+ virtual wxString GetFaceName(void) const;
+ virtual wxFontEncoding GetEncoding(void) const;
+ virtual const wxNativeFontInfo* GetNativeFontInfo() const;
virtual void SetPointSize(int nPointSize);
virtual void SetFamily(int nFamily);
virtual void SetFaceName(const wxString& rsFaceName);
virtual void SetUnderlined(bool bUnderlined);
virtual void SetEncoding(wxFontEncoding vEncoding);
- virtual void SetPS(HPS hPS);
- virtual void SetFM( PFONTMETRICS pFM
- ,int nNumFonts
- );
+ //
+ // For internal use only!
+ //
+ void SetPS(HPS hPS);
+ void SetFM( PFONTMETRICS pFM
+ ,int nNumFonts
+ );
//
// Implementation only from now on
// -------------------------------
//
- int GetFontId(void) const;
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 Unshare(void);
private:
- void OS2SelectMatchingFontByName(void);
-
DECLARE_DYNAMIC_CLASS(wxFont)
}; // end of wxFont