1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/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
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKFONTH__
|
|
|
|
#define __GTKFONTH__
|
|
|
|
|
|
|
|
#include "wx/hash.h"
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// classes
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPaintDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxFont;
|
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:
|
1999-09-29 19:02:07 +00:00
|
|
|
// ctors and such
|
2006-02-10 15:41:06 +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();
|
|
|
|
|
|
|
|
GdkFont* GetInternalFont(float scale = 1.0) const;
|
|
|
|
|
|
|
|
// 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
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKFONTH__
|