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
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2008-11-03 17:02: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 wxFontFamily GetFamily() const;
|
|
|
|
virtual wxFontStyle GetStyle() const;
|
|
|
|
virtual wxFontWeight GetWeight() const;
|
1999-09-29 19:02:07 +00:00
|
|
|
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 );
|
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 );
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
|
|
|
|
protected:
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
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__
|