1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: font.h
|
|
|
|
// 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
|
|
|
|
wxFont(const wxString& fontname)
|
2000-12-18 21:15:16 +00:00
|
|
|
{
|
2002-01-18 20:01:49 +00:00
|
|
|
Create(fontname);
|
2000-12-18 21:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info);
|
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)
|
|
|
|
{
|
|
|
|
(void)Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(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,
|
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;
|
|
|
|
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-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 );
|
|
|
|
virtual void SetFamily( int family );
|
|
|
|
virtual void SetStyle( int style );
|
|
|
|
virtual void SetWeight( int 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 );
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2004-06-12 23:44:08 +00:00
|
|
|
virtual void SetNoAntiAliasing( bool no = true );
|
2004-07-14 16:33:17 +00:00
|
|
|
virtual bool GetNoAntiAliasing() const ;
|
2003-02-12 15:42:27 +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();
|
|
|
|
|
2006-10-17 04:20:47 +00:00
|
|
|
virtual wxObjectRefData* CreateRefData() const;
|
|
|
|
virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) 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_
|