1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: font.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 13:03:18 -05:00
|
|
|
// Id: $Id$
|
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
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-30 01:55:56 -04:00
|
|
|
#ifndef _WX_GTK_FONT_H_
|
|
|
|
#define _WX_GTK_FONT_H_
|
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:
|
2006-02-08 19:51:23 -05:00
|
|
|
wxFont() { }
|
2002-01-18 15:01:49 -05:00
|
|
|
|
|
|
|
// wxGTK-specific
|
|
|
|
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
|
|
|
|
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
2004-06-12 19:44:08 -04:00
|
|
|
bool underlined = false,
|
1999-09-29 15:02:07 -04:00
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
(void)Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int 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
|
|
|
|
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
|
|
|
|
virtual int GetPointSize() const;
|
|
|
|
virtual int GetFamily() const;
|
|
|
|
virtual int GetStyle() const;
|
|
|
|
virtual int GetWeight() const;
|
|
|
|
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
|
|
|
|
|
|
|
virtual void SetPointSize( int pointSize );
|
|
|
|
virtual void SetFamily( int family );
|
|
|
|
virtual void SetStyle( int style );
|
|
|
|
virtual void SetWeight( 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);
|
|
|
|
|
2004-06-12 19:44:08 -04:00
|
|
|
virtual void SetNoAntiAliasing( bool no = true );
|
2004-07-14 12:33:17 -04:00
|
|
|
virtual bool GetNoAntiAliasing() const ;
|
2003-02-12 10:42:27 -05:00
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
// implementation from now on
|
|
|
|
void Unshare();
|
|
|
|
|
|
|
|
// no data :-)
|
|
|
|
|
|
|
|
protected:
|
2003-02-12 10:42:27 -05:00
|
|
|
virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
|
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
virtual wxGDIRefData* CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* data) const;
|
2006-10-17 00:20:47 -04:00
|
|
|
|
1999-09-29 15:02:07 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2006-08-30 01:55:56 -04:00
|
|
|
#endif // _WX_GTK_FONT_H_
|