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
|
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
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE 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
|
|
|
|
Add wxFontInfo class to allow using named parameters for wxFont creation.
This helper class allows to create wxFonts using shorter and more readable
code, e.g.
wxFont font(12, wxFONTFLAG_DEFAULT,
wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, true,
"DejaVu Sans");
can now be written simply as
wxFont font(wxFontInfo(12).FaceName("DejaVu Sans").Underlined());
Remove the ctor from font flags added in r70445 as it's not needed any longer
now that we have this one and adding it resulted in compilation errors in the
existing code which compiled with 2.8 because of ambiguities between that ctor
and wxFont(int size, int family, int style, int weight. bool underlined, ...)
one, e.g.
wxFont(12, wxFONTFAMILY_SWISS, wxNORMAL, wxNORMAL)
didn't compile any more but it does compile again now.
See #9907.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-04-30 10:27:38 +00:00
|
|
|
wxFont(const wxFontInfo& info);
|
|
|
|
|
2008-11-03 17:02:25 +00:00
|
|
|
wxFont(int size,
|
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
2009-08-21 10:41:26 +00:00
|
|
|
|
2008-11-03 17:02:25 +00:00
|
|
|
bool Create(int size,
|
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
2018-09-14 17:26:26 +00:00
|
|
|
return DoCreate(InfoFromLegacyParams(size,
|
|
|
|
family,
|
|
|
|
style,
|
|
|
|
weight,
|
|
|
|
underlined,
|
|
|
|
face,
|
|
|
|
encoding));
|
2008-11-03 17:02:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxSize& pixelSize,
|
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
2004-09-25 23:03:44 +00:00
|
|
|
{
|
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);
|
|
|
|
|
2004-09-27 11:02:11 +00:00
|
|
|
|
|
|
|
bool Create(const wxSize& pixelSize,
|
2008-11-03 17:02:25 +00:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
2004-09-27 11:02:11 +00:00
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
2018-09-14 17:26:26 +00:00
|
|
|
return DoCreate(InfoFromLegacyParams(pixelSize,
|
|
|
|
family,
|
|
|
|
style,
|
|
|
|
weight,
|
|
|
|
underlined,
|
|
|
|
face,
|
|
|
|
encoding));
|
2004-09-27 11:02:11 +00:00
|
|
|
}
|
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();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
2018-09-01 17:42:18 +00:00
|
|
|
virtual float GetFractionalPointSize() const wxOVERRIDE;
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual wxSize GetPixelSize() const wxOVERRIDE;
|
|
|
|
virtual bool IsUsingSizeInPixels() const wxOVERRIDE;
|
|
|
|
virtual wxFontStyle GetStyle() const wxOVERRIDE;
|
2018-09-01 17:42:18 +00:00
|
|
|
virtual int GetNumericWeight() const wxOVERRIDE;
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual bool GetUnderlined() const wxOVERRIDE;
|
|
|
|
virtual bool GetStrikethrough() const wxOVERRIDE;
|
|
|
|
virtual wxString GetFaceName() const wxOVERRIDE;
|
|
|
|
virtual wxFontEncoding GetEncoding() const wxOVERRIDE;
|
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const wxOVERRIDE;
|
|
|
|
|
2018-09-05 23:40:47 +00:00
|
|
|
virtual void SetFractionalPointSize(float pointSize) wxOVERRIDE;
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual void SetPixelSize(const wxSize& pixelSize) wxOVERRIDE;
|
|
|
|
virtual void SetFamily(wxFontFamily family) wxOVERRIDE;
|
|
|
|
virtual void SetStyle(wxFontStyle style) wxOVERRIDE;
|
2018-09-01 17:42:18 +00:00
|
|
|
virtual void SetNumericWeight(int weight) wxOVERRIDE;
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual bool SetFaceName(const wxString& faceName) wxOVERRIDE;
|
|
|
|
virtual void SetUnderlined(bool underlined) wxOVERRIDE;
|
|
|
|
virtual void SetStrikethrough(bool strikethrough) wxOVERRIDE;
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding) wxOVERRIDE;
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2009-06-12 20:11:21 +00:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 17:02:25 +00:00
|
|
|
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual bool IsFixedWidth() const wxOVERRIDE;
|
2002-01-26 22:29:37 +00:00
|
|
|
|
2018-12-30 00:06:19 +00:00
|
|
|
virtual void WXAdjustToPPI(const wxSize& ppi) wxOVERRIDE;
|
|
|
|
|
2014-02-12 13:15:17 +00:00
|
|
|
wxDEPRECATED_MSG("use wxFONT{FAMILY,STYLE,WEIGHT}_XXX constants ie: wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD")
|
2014-01-06 12:42:37 +00:00
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
(void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
2014-02-12 13:15:17 +00:00
|
|
|
wxDEPRECATED_MSG("use wxFONT{FAMILY,STYLE,WEIGHT}_XXX constants ie: wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD")
|
2014-01-06 12:42:37 +00:00
|
|
|
wxFont(const wxSize& pixelSize,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
(void)Create(pixelSize, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight,
|
|
|
|
underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual bool IsFree() const wxOVERRIDE;
|
|
|
|
virtual bool RealizeResource() wxOVERRIDE;
|
|
|
|
virtual WXHANDLE GetResourceHandle() const wxOVERRIDE;
|
|
|
|
virtual bool FreeResource(bool force = false) wxOVERRIDE;
|
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:
|
2018-09-12 21:17:06 +00:00
|
|
|
// Common helper of overloaded Create() methods.
|
2018-09-14 17:26:26 +00:00
|
|
|
bool DoCreate(const wxFontInfo& info);
|
2004-09-27 11:02:11 +00:00
|
|
|
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info) wxOVERRIDE;
|
|
|
|
virtual wxFontFamily DoGetFamily() const wxOVERRIDE;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2007-02-14 20:35:24 +00:00
|
|
|
// implement wxObject virtuals which are used by AllocExclusive()
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const wxOVERRIDE;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const wxOVERRIDE;
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxFont);
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
2005-11-15 07:40:12 +00:00
|
|
|
#endif // _WX_FONT_H_
|