2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: font.h
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 15:30:34 -05:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_FONT_H__
|
|
|
|
#define __WX_FONT_H__
|
|
|
|
|
|
|
|
#include "wx/hash.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPaintDC;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxFont;
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
struct font_t;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFont
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxFont : public wxFontBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors and such
|
2006-02-08 19:51:23 -05:00
|
|
|
wxFont() { }
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info)
|
|
|
|
{
|
|
|
|
(void)Create(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = FALSE,
|
|
|
|
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,
|
|
|
|
bool underlined = FALSE,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
|
|
|
|
bool Create(const wxNativeFontInfo& fontinfo);
|
|
|
|
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxFont() {}
|
2001-06-26 17:05:06 -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;
|
2002-01-17 14:38:39 -05:00
|
|
|
virtual bool IsFixedWidth() const;
|
2003-09-23 21:23:37 -04:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2001-06-26 17:05:06 -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);
|
2001-06-26 17:05:06 -04:00
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2006-11-20 15:45:57 -05:00
|
|
|
// Unofficial API, don't use
|
|
|
|
virtual void SetNoAntiAliasing(bool no = true);
|
|
|
|
virtual bool GetNoAntiAliasing() const;
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
struct font_t *GetMGLfont_t(float scale, bool antialiased);
|
|
|
|
|
|
|
|
protected:
|
2002-02-09 18:29:05 -05:00
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WX_FONT_H__
|