1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-22 21:28:01 -05:00
|
|
|
// Name: wx/gtk1/font.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
2003-03-17 05:34:04 -05:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKFONTH__
|
|
|
|
#define __GTKFONTH__
|
|
|
|
|
|
|
|
#include "wx/hash.h"
|
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
// classes
|
1999-09-29 15:02:07 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPaintDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxFont;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
// wxFont
|
1999-09-29 15:02:07 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-12-18 08:35:58 -05:00
|
|
|
public:
|
1999-09-29 15:02:07 -04:00
|
|
|
// ctors and such
|
2006-02-10 10:41:06 -05:00
|
|
|
wxFont() { }
|
2002-01-18 15:01:49 -05: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 06:27:38 -04:00
|
|
|
wxFont(const wxFontInfo& info)
|
|
|
|
{
|
|
|
|
Create(info.GetPointSize(),
|
|
|
|
info.GetFamily(),
|
|
|
|
info.GetStyle(),
|
|
|
|
info.GetWeight(),
|
|
|
|
info.IsUnderlined(),
|
|
|
|
info.GetFaceName(),
|
|
|
|
info.GetEncoding());
|
|
|
|
|
|
|
|
if ( info.IsUsingSizeInPixels() )
|
|
|
|
SetPixelSize(info.GetPixelSize());
|
|
|
|
}
|
|
|
|
|
2002-01-18 15:01:49 -05:00
|
|
|
wxFont(const wxString& fontname)
|
2000-12-18 16:15:16 -05:00
|
|
|
{
|
2002-01-18 15:01:49 -05:00
|
|
|
Create(fontname);
|
2000-12-18 16:15:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info);
|
1999-09-29 15:02:07 -04:00
|
|
|
|
2008-11-03 12:02:25 -05: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);
|
1999-09-29 15:02:07 -04:00
|
|
|
}
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2009-03-15 12:28:33 -04:00
|
|
|
wxFont(const wxSize& pixelSize,
|
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
Create(10, family, style, weight, underlined, face, encoding);
|
|
|
|
SetPixelSize(pixelSize);
|
|
|
|
}
|
2009-08-21 06:41:26 -04:00
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
bool Create(int size,
|
2008-11-03 12:02:25 -05:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
2004-06-12 19:44:08 -04:00
|
|
|
bool underlined = false,
|
1999-09-29 15:02:07 -04:00
|
|
|
const wxString& face = wxEmptyString,
|
2000-12-18 16:15:16 -05:00
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
2000-12-17 20:00:25 -05:00
|
|
|
|
2008-11-03 12:02:25 -05:00
|
|
|
|
2000-12-18 16:15:16 -05:00
|
|
|
// wxGTK-specific
|
2002-01-18 15:01:49 -05:00
|
|
|
bool Create(const wxString& fontname);
|
1999-09-29 15:02:07 -04:00
|
|
|
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxFont();
|
1999-09-29 15:02:07 -04:00
|
|
|
|
|
|
|
// implement base class pure virtuals
|
2018-09-14 20:26:07 -04:00
|
|
|
virtual float GetFractionalPointSize() const;
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual wxFontStyle GetStyle() const;
|
2018-09-14 20:26:07 -04:00
|
|
|
virtual int GetNumericWeight() const;
|
1999-09-29 15:02:07 -04:00
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-23 21:23:37 -04:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2002-01-14 14:04:35 -05:00
|
|
|
virtual bool IsFixedWidth() const;
|
1999-09-29 15:02:07 -04:00
|
|
|
|
2018-09-14 20:26:07 -04:00
|
|
|
virtual void SetFractionalPointSize(float pointSize);
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual void SetFamily(wxFontFamily family);
|
|
|
|
virtual void SetStyle(wxFontStyle style);
|
2018-09-14 20:26:07 -04:00
|
|
|
virtual void SetNumericWeight(int weight);
|
2006-05-28 20:03:36 -04:00
|
|
|
virtual bool SetFaceName( const wxString& faceName );
|
1999-09-29 15:02:07 -04:00
|
|
|
virtual void SetUnderlined( bool underlined );
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2009-06-12 16:11:21 -04:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 12:02:25 -05:00
|
|
|
|
2014-01-06 07:42:37 -05:00
|
|
|
wxDEPRECATED_MSG("use wxFONT{FAMILY,STYLE,WEIGHT}_XXX constants")
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
// implementation from now on
|
|
|
|
void Unshare();
|
|
|
|
|
|
|
|
GdkFont* GetInternalFont(float scale = 1.0) const;
|
|
|
|
|
|
|
|
protected:
|
2007-12-15 12:54:20 -05:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
2003-02-12 10:42:27 -05:00
|
|
|
virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
|
2010-09-29 09:46:09 -04:00
|
|
|
virtual wxFontFamily DoGetFamily() const;
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxFont);
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKFONTH__
|