1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-25 16:35:11 -04:00
|
|
|
// Name: wx/motif/font.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxFont class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// Copyright: (c) Julian Smart
|
2005-09-25 16:35:11 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FONT_H_
|
|
|
|
#define _WX_FONT_H_
|
|
|
|
|
2005-08-17 20:41:18 -04:00
|
|
|
#if __WXMOTIF20__ && !__WXLESSTIF__
|
2005-09-30 05:12:58 -04:00
|
|
|
#define wxMOTIF_USE_RENDER_TABLE 1
|
2005-08-17 20:41:18 -04:00
|
|
|
#else
|
2005-09-30 05:12:58 -04:00
|
|
|
#define wxMOTIF_USE_RENDER_TABLE 0
|
2005-07-31 05:42:16 -04:00
|
|
|
#endif
|
2007-04-07 17:18:33 -04:00
|
|
|
#define wxMOTIF_NEW_FONT_HANDLING wxMOTIF_USE_RENDER_TABLE
|
2005-07-31 05:42:16 -04:00
|
|
|
|
2001-06-21 14:31:43 -04:00
|
|
|
class wxXFont;
|
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
// Font
|
2005-08-02 20:53:09 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
1998-09-28 11:42:54 -04:00
|
|
|
{
|
|
|
|
public:
|
1999-10-01 10:59:52 -04:00
|
|
|
// ctors and such
|
2006-02-08 19:51:23 -05:00
|
|
|
wxFont() { }
|
2003-02-12 10:42:27 -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());
|
|
|
|
}
|
|
|
|
|
2008-11-03 12:02:25 -05:00
|
|
|
wxFont(const wxNativeFontInfo& info);
|
|
|
|
|
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
1999-10-01 10:59:52 -04:00
|
|
|
wxFont(int size,
|
2008-11-03 12:02:25 -05:00
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
1999-10-01 10:59:52 -04:00
|
|
|
{
|
2008-11-03 12:02:25 -05:00
|
|
|
(void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
|
1999-10-01 10:59:52 -04:00
|
|
|
}
|
2008-11-03 12:02:25 -05:00
|
|
|
#endif
|
2003-02-12 10:42:27 -05: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);
|
|
|
|
}
|
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-10-01 10:59:52 -04:00
|
|
|
bool Create(int size,
|
2008-11-03 12:02:25 -05:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
2003-02-12 10:42:27 -05:00
|
|
|
|
2002-01-01 12:27:49 -05:00
|
|
|
// wxMOTIF-specific
|
|
|
|
bool Create(const wxString& fontname,
|
2002-02-05 11:34:33 -05:00
|
|
|
wxFontEncoding fontenc = wxFONTENCODING_DEFAULT);
|
2002-01-01 12:27:49 -05:00
|
|
|
bool Create(const wxNativeFontInfo& fontinfo);
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
virtual ~wxFont();
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual wxFontStyle GetStyle() const;
|
|
|
|
virtual wxFontWeight GetWeight() const;
|
1999-10-01 10:59:52 -04:00
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-23 21:23:37 -04:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
virtual void SetPointSize(int pointSize);
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual void SetFamily(wxFontFamily family);
|
|
|
|
virtual void SetStyle(wxFontStyle style);
|
|
|
|
virtual void SetWeight(wxFontWeight weight);
|
2006-05-28 20:03:36 -04:00
|
|
|
virtual bool SetFaceName(const wxString& faceName);
|
1999-10-01 10:59:52 -04:00
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
2003-02-12 10:42:27 -05:00
|
|
|
|
2009-06-12 16:11:21 -04:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 12:02:25 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
// Implementation
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04: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 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04: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 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
// Return font struct, and optionally the Motif font list
|
2001-06-21 14:31:43 -04:00
|
|
|
wxXFont *GetInternalFont(double scale = 1.0,
|
2002-02-05 11:34:33 -05:00
|
|
|
WXDisplay* display = NULL) const;
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
// These two are helper functions for convenient access of the above.
|
2005-09-30 05:12:58 -04:00
|
|
|
#if wxMOTIF_USE_RENDER_TABLE
|
2007-04-07 17:18:33 -04:00
|
|
|
WXFontSet GetFontSet(double scale, WXDisplay* display = NULL) const;
|
2005-09-30 05:12:58 -04:00
|
|
|
WXRenderTable GetRenderTable(WXDisplay* display) const;
|
|
|
|
#else // if !wxMOTIF_USE_RENDER_TABLE
|
2007-04-07 17:18:33 -04:00
|
|
|
WXFontStructPtr GetFontStruct(double scale = 1.0,
|
|
|
|
WXDisplay* display = NULL) const;
|
1999-10-01 10:59:52 -04:00
|
|
|
WXFontList GetFontList(double scale = 1.0,
|
2002-02-05 11:34:33 -05:00
|
|
|
WXDisplay* display = NULL) const;
|
2007-04-07 17:18:33 -04:00
|
|
|
#endif // !wxMOTIF_USE_RENDER_TABLE
|
2005-07-31 05:42:16 -04:00
|
|
|
// returns either a XmFontList or XmRenderTable, depending
|
2003-03-05 15:15:35 -05:00
|
|
|
// on Motif version
|
|
|
|
WXFontType GetFontType(WXDisplay* display) const;
|
2005-06-19 15:11:21 -04:00
|
|
|
// like the function above but does a copy for XmFontList
|
|
|
|
WXFontType GetFontTypeC(WXDisplay* display) const;
|
2003-03-05 15:15:35 -05:00
|
|
|
static WXString GetFontTag();
|
2007-12-15 12:54:20 -05:00
|
|
|
|
1998-09-18 06:19:10 -04:00
|
|
|
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-10-01 10:59:52 -04:00
|
|
|
void Unshare();
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-10-01 10:59:52 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
#endif // _WX_FONT_H_
|