1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-11-15 07:40:12 +00:00
|
|
|
// Name: wx/msw/font.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxFont class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_FONT_H_
|
|
|
|
#define _WX_FONT_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2005-11-15 07:40:12 +00:00
|
|
|
#include "wx/gdicmn.h"
|
2004-09-26 11:47:30 +00:00
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFont
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxFont : public wxFontBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
1999-09-29 19:02:07 +00:00
|
|
|
// ctors and such
|
2006-02-09 00:51:23 +00:00
|
|
|
wxFont() { }
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
2004-06-12 23:44:08 +00:00
|
|
|
bool underlined = false,
|
1999-09-29 19:02:07 +00:00
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
2004-09-27 11:02:11 +00:00
|
|
|
(void)Create(size, family, style, weight, underlined, face, encoding);
|
2004-09-25 23:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxSize& pixelSize,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
2004-09-27 11:02:11 +00:00
|
|
|
(void)Create(pixelSize, family, style, weight,
|
|
|
|
underlined, face, encoding);
|
1999-09-29 19:02:07 +00:00
|
|
|
}
|
|
|
|
|
2001-06-29 10:58:59 +00:00
|
|
|
wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0)
|
2000-12-18 01:00:25 +00:00
|
|
|
{
|
2001-06-29 10:58:59 +00:00
|
|
|
Create(info, hFont);
|
2000-12-18 01:00:25 +00:00
|
|
|
}
|
|
|
|
|
2000-12-18 23:49:58 +00:00
|
|
|
wxFont(const wxString& fontDesc);
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
bool Create(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
2004-06-12 23:44:08 +00:00
|
|
|
bool underlined = false,
|
1999-09-29 19:02:07 +00:00
|
|
|
const wxString& face = wxEmptyString,
|
2004-09-27 11:02:11 +00:00
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
return DoCreate(size, wxDefaultSize, false, family, style,
|
|
|
|
weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(const wxSize& pixelSize,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
return DoCreate(-1, pixelSize, true, family, style,
|
|
|
|
weight, underlined, face, encoding);
|
|
|
|
}
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2001-06-29 10:58:59 +00:00
|
|
|
bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0);
|
2000-12-18 23:49:58 +00:00
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual ~wxFont();
|
|
|
|
|
2006-05-29 00:03:36 +00:00
|
|
|
// wxFontBase overridden functions
|
|
|
|
virtual wxString GetNativeFontInfoDesc() const;
|
|
|
|
virtual wxString GetNativeFontInfoUserDesc() const;
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
2004-09-25 23:03:44 +00:00
|
|
|
virtual wxSize GetPixelSize() const;
|
|
|
|
virtual bool IsUsingSizeInPixels() const;
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual int GetFamily() const;
|
|
|
|
virtual int GetStyle() const;
|
|
|
|
virtual int GetWeight() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-24 01:23:37 +00:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
virtual void SetPointSize(int pointSize);
|
2004-09-25 23:03:44 +00:00
|
|
|
virtual void SetPixelSize(const wxSize& pixelSize);
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual void SetFamily(int family);
|
|
|
|
virtual void SetStyle(int style);
|
|
|
|
virtual void SetWeight(int weight);
|
2006-05-29 00:03:36 +00:00
|
|
|
virtual bool SetFaceName(const wxString& faceName);
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2002-01-26 22:29:37 +00:00
|
|
|
virtual bool IsFixedWidth() const;
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
virtual bool IsFree() const;
|
|
|
|
virtual bool RealizeResource();
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual WXHANDLE GetResourceHandle() const;
|
2004-06-12 23:44:08 +00:00
|
|
|
virtual bool FreeResource(bool force = false);
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
// for consistency with other wxMSW classes
|
2000-07-15 19:51:35 +00:00
|
|
|
WXHFONT GetHFONT() const;
|
|
|
|
|
1998-08-09 16:46:37 +00:00
|
|
|
protected:
|
2004-09-27 11:02:11 +00:00
|
|
|
// real font creation function, used in all cases
|
|
|
|
bool DoCreate(int size,
|
|
|
|
const wxSize& pixelSize,
|
|
|
|
bool sizeUsingPixels,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
|
2003-02-12 15:42:27 +00:00
|
|
|
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
|
|
|
|
|
2007-02-14 20:35:24 +00:00
|
|
|
// implement wxObject virtuals which are used by AllocExclusive()
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
2005-11-15 07:40:12 +00:00
|
|
|
#endif // _WX_FONT_H_
|