1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/gtk/font.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
2003-03-17 10:34:04 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#ifndef _WX_GTK_FONT_H_
|
|
|
|
#define _WX_GTK_FONT_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// wxFont
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-12-18 13:35:58 +00:00
|
|
|
public:
|
2006-02-09 00:51:23 +00:00
|
|
|
wxFont() { }
|
2002-01-18 20:01:49 +00:00
|
|
|
|
|
|
|
// wxGTK-specific
|
2009-04-12 16:06:43 +00:00
|
|
|
wxFont(const wxString& nativeFontInfoString)
|
2000-12-18 21:15:16 +00:00
|
|
|
{
|
2009-04-12 16:06:43 +00:00
|
|
|
Create(nativeFontInfoString);
|
2000-12-18 21:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info);
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2008-11-03 17:02:25 +00:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
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)
|
|
|
|
{
|
2008-11-03 17:02:25 +00:00
|
|
|
(void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
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 19:02:07 +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
|
|
|
|
2012-01-23 11:28:21 +00:00
|
|
|
wxFont(int pointSize,
|
|
|
|
wxFontFamily family,
|
|
|
|
int flags = wxFONTFLAG_DEFAULT,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
bool Create(int size,
|
2008-11-03 17:02:25 +00:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
2004-06-12 23:44:08 +00:00
|
|
|
bool underlined = false,
|
1999-09-29 19:02:07 +00:00
|
|
|
const wxString& face = wxEmptyString,
|
2000-12-18 21:15:16 +00:00
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
2000-12-18 01:00:25 +00:00
|
|
|
|
2000-12-18 21:15:16 +00:00
|
|
|
// wxGTK-specific
|
2002-01-18 20:01:49 +00:00
|
|
|
bool Create(const wxString& fontname);
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxFont();
|
1999-09-29 19:02:07 +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;
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
2012-01-23 11:28:28 +00:00
|
|
|
virtual bool GetStrikethrough() const;
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-24 01:23:37 +00:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2002-01-14 19:04:35 +00:00
|
|
|
virtual bool IsFixedWidth() const;
|
1999-09-29 19:02:07 +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 );
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual void SetUnderlined( bool underlined );
|
2012-01-23 11:28:28 +00:00
|
|
|
virtual void SetStrikethrough(bool strikethrough);
|
1999-09-29 19:02:07 +00:00
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2009-06-12 20:11:21 +00:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 17:02:25 +00:00
|
|
|
|
2012-01-29 08:14:34 +00:00
|
|
|
// Set Pango attributes in the specified layout. Currently only
|
2012-01-29 08:00:15 +00:00
|
|
|
// 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.
|
2012-01-29 08:14:34 +00:00
|
|
|
bool GTKSetPangoAttrs(PangoLayout* layout) const;
|
2012-01-29 08:00:15 +00:00
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implementation from now on
|
|
|
|
void Unshare();
|
|
|
|
|
|
|
|
// no data :-)
|
|
|
|
|
|
|
|
protected:
|
2003-02-12 15:42:27 +00:00
|
|
|
virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData* CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* data) const;
|
2006-10-17 04:20:47 +00:00
|
|
|
|
2010-09-29 13:46:09 +00:00
|
|
|
virtual wxFontFamily DoGetFamily() const;
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#endif // _WX_GTK_FONT_H_
|