2002-02-05 16:34:33 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-17 14:44:52 +00:00
|
|
|
// Name: wx/x11/font.h
|
2002-02-05 16:34:33 +00:00
|
|
|
// Purpose: wxFont class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// Copyright: (c) Julian Smart
|
2006-10-17 14:44:52 +00:00
|
|
|
// Licence: wxWindows licence
|
2002-02-05 16:34:33 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FONT_H_
|
|
|
|
#define _WX_FONT_H_
|
|
|
|
|
|
|
|
class wxXFont;
|
|
|
|
|
|
|
|
// Font
|
2005-08-02 18:16:51 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
2002-02-05 16:34:33 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors and such
|
2006-02-09 00:51:23 +00:00
|
|
|
wxFont() { }
|
2003-02-12 15:42:27 +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)
|
|
|
|
{
|
|
|
|
Create(info.GetPointSize(),
|
|
|
|
info.GetFamily(),
|
|
|
|
info.GetStyle(),
|
|
|
|
info.GetWeight(),
|
|
|
|
info.IsUnderlined(),
|
|
|
|
info.GetFaceName(),
|
|
|
|
info.GetEncoding());
|
|
|
|
|
|
|
|
if ( info.IsUsingSizeInPixels() )
|
|
|
|
SetPixelSize(info.GetPixelSize());
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-03-15 16:28:33 +00: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 10:41:26 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
bool Create(int size,
|
2008-11-03 17:02:25 +00:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info);
|
2002-12-04 14:11:26 +00:00
|
|
|
|
2014-09-23 17:38:51 +00:00
|
|
|
wxFont(const wxString &nativeInfoString)
|
|
|
|
{
|
|
|
|
Create(nativeInfoString);
|
|
|
|
}
|
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
bool Create(const wxString& fontname,
|
|
|
|
wxFontEncoding fontenc = wxFONTENCODING_DEFAULT);
|
2014-09-23 17:38:51 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
// DELETEME: no longer seems to be implemented.
|
|
|
|
// bool Create(const wxNativeFontInfo& fontinfo);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual ~wxFont();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
2008-11-03 17:02:25 +00:00
|
|
|
virtual wxFontStyle GetStyle() const;
|
|
|
|
virtual wxFontWeight GetWeight() const;
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual bool GetUnderlined() const;
|
2014-09-23 17:41:48 +00:00
|
|
|
virtual bool GetStrikethrough() const wxOVERRIDE;
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-24 01:23:37 +00:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual bool IsFixedWidth() const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual void SetPointSize(int pointSize);
|
2008-11-03 17:02:25 +00:00
|
|
|
virtual void SetFamily(wxFontFamily family);
|
|
|
|
virtual void SetStyle(wxFontStyle style);
|
|
|
|
virtual void SetWeight(wxFontWeight weight);
|
2006-05-29 00:03:36 +00:00
|
|
|
virtual bool SetFaceName(const wxString& faceName);
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual void SetUnderlined(bool underlined);
|
2014-09-23 17:41:48 +00:00
|
|
|
virtual void SetStrikethrough(bool strikethrough) wxOVERRIDE;
|
2002-02-05 16:34:33 +00:00
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2009-06-12 20:11:21 +00:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 17:02:25 +00:00
|
|
|
|
2014-01-06 12:42:37 +00: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);
|
|
|
|
}
|
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
// Implementation
|
|
|
|
|
|
|
|
#if wxUSE_PANGO
|
2014-09-23 17:41:48 +00:00
|
|
|
// Set Pango attributes in the specified layout. Currently only
|
|
|
|
// underlined and strike-through attributes are handled by this function.
|
|
|
|
//
|
|
|
|
// If neither of them is specified, returns false, otherwise sets up the
|
|
|
|
// attributes and returns true.
|
|
|
|
bool SetPangoAttrs(PangoLayout* layout) const;
|
2002-12-04 14:11:26 +00:00
|
|
|
#else
|
2002-02-05 16:34:33 +00:00
|
|
|
// Find an existing, or create a new, XFontStruct
|
|
|
|
// based on this wxFont and the given scale. Append the
|
|
|
|
// font to list in the private data for future reference.
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
// TODO This is a fairly basic implementation, that doesn't
|
|
|
|
// allow for different facenames, and also doesn't do a mapping
|
|
|
|
// between 'standard' facenames (e.g. Arial, Helvetica, Times Roman etc.)
|
|
|
|
// and the fonts that are available on a particular system.
|
|
|
|
// Maybe we need to scan the user's machine to build up a profile
|
|
|
|
// of the fonts and a mapping file.
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
// Return font struct, and optionally the Motif font list
|
|
|
|
wxXFont *GetInternalFont(double scale = 1.0,
|
|
|
|
WXDisplay* display = NULL) const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-07 12:06:37 +00:00
|
|
|
// Helper function for convenient access of the above.
|
2002-02-05 16:34:33 +00:00
|
|
|
WXFontStructPtr GetFontStruct(double scale = 1.0,
|
|
|
|
WXDisplay* display = NULL) const;
|
2002-12-04 14:11:26 +00:00
|
|
|
#endif
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
protected:
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
2003-02-12 15:42:27 +00:00
|
|
|
virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
|
2010-09-29 13:46:09 +00:00
|
|
|
virtual wxFontFamily DoGetFamily() const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
void Unshare();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2006-10-17 14:44:52 +00:00
|
|
|
// _WX_FONT_H_
|