2009-01-17 10:43:43 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: font.h
|
|
|
|
// Purpose: wxFont class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FONT_H_
|
|
|
|
#define _WX_FONT_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFont
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-03-20 13:56:57 +00:00
|
|
|
// font styles
|
|
|
|
enum wxOSXSystemFont
|
|
|
|
{
|
|
|
|
wxOSX_SYSTEM_FONT_NONE = 0,
|
|
|
|
wxOSX_SYSTEM_FONT_NORMAL,
|
|
|
|
wxOSX_SYSTEM_FONT_BOLD,
|
|
|
|
wxOSX_SYSTEM_FONT_SMALL,
|
|
|
|
wxOSX_SYSTEM_FONT_SMALL_BOLD,
|
|
|
|
wxOSX_SYSTEM_FONT_MINI,
|
|
|
|
wxOSX_SYSTEM_FONT_MINI_BOLD,
|
|
|
|
wxOSX_SYSTEM_FONT_LABELS,
|
2010-11-05 21:43:07 +00:00
|
|
|
wxOSX_SYSTEM_FONT_VIEWS
|
2009-03-20 13:56:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors and such
|
|
|
|
wxFont() { }
|
2010-09-30 11:44:45 +00:00
|
|
|
|
2010-04-08 18:47:41 +00:00
|
|
|
wxFont( wxOSXSystemFont systemFont );
|
2009-01-17 10:43:43 +00:00
|
|
|
|
2009-10-31 23:00:04 +00:00
|
|
|
#if wxOSX_USE_COCOA
|
|
|
|
wxFont(WX_NSFont nsfont);
|
|
|
|
#endif
|
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
(void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
|
|
|
|
}
|
2008-06-11 16:30:48 +00:00
|
|
|
#endif
|
2009-01-17 10:43:43 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2009-08-21 10:41:26 +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);
|
|
|
|
}
|
2009-08-21 10:41:26 +00:00
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
bool Create(int size,
|
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info)
|
|
|
|
{
|
|
|
|
(void)Create(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxString& fontDesc);
|
|
|
|
|
|
|
|
bool Create(const wxNativeFontInfo& info);
|
|
|
|
|
|
|
|
virtual ~wxFont();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
|
|
|
virtual wxSize GetPixelSize() const;
|
|
|
|
virtual wxFontStyle GetStyle() const;
|
|
|
|
virtual wxFontWeight GetWeight() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
|
|
|
|
|
|
|
virtual void SetPointSize(int pointSize);
|
|
|
|
virtual void SetFamily(wxFontFamily family);
|
|
|
|
virtual void SetStyle(wxFontStyle style);
|
|
|
|
virtual void SetWeight(wxFontWeight weight);
|
|
|
|
virtual bool SetFaceName(const wxString& faceName);
|
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2009-06-12 20:11:21 +00:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2009-01-17 10:43:43 +00:00
|
|
|
|
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
virtual bool RealizeResource();
|
|
|
|
|
|
|
|
// Mac-specific, risks to change, don't use in portable code
|
|
|
|
|
2009-03-20 13:56:57 +00:00
|
|
|
#if wxOSX_USE_CARBON && wxOSX_USE_ATSU_TEXT
|
|
|
|
wxUint16 MacGetThemeFontID() const ;
|
2009-03-24 07:56:17 +00:00
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
// 'old' Quickdraw accessors
|
|
|
|
short MacGetFontNum() const;
|
|
|
|
wxByte MacGetFontStyle() const;
|
2009-03-20 13:56:57 +00:00
|
|
|
#endif
|
2009-01-17 10:43:43 +00:00
|
|
|
|
2009-03-20 13:56:57 +00:00
|
|
|
#if wxOSX_USE_COCOA_OR_CARBON
|
2009-03-24 07:56:17 +00:00
|
|
|
CGFontRef OSXGetCGFont() const;
|
2009-01-17 10:43:43 +00:00
|
|
|
#endif
|
2009-03-20 13:56:57 +00:00
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
#if wxOSX_USE_CORE_TEXT
|
2009-03-24 07:56:17 +00:00
|
|
|
CTFontRef OSXGetCTFont() const;
|
2009-01-17 10:43:43 +00:00
|
|
|
#endif
|
2009-03-20 13:56:57 +00:00
|
|
|
|
2009-03-22 09:49:28 +00:00
|
|
|
#if wxOSX_USE_ATSU_TEXT
|
2009-03-20 13:56:57 +00:00
|
|
|
// Returns an ATSUStyle not ATSUStyle*
|
2009-01-17 10:43:43 +00:00
|
|
|
void* MacGetATSUStyle() const ;
|
2009-03-24 07:56:17 +00:00
|
|
|
void* OSXGetATSUStyle() const { return MacGetATSUStyle() ; }
|
|
|
|
|
2009-03-24 06:58:43 +00:00
|
|
|
wxDEPRECATED( wxUint32 MacGetATSUFontID() const );
|
|
|
|
wxDEPRECATED( wxUint32 MacGetATSUAdditionalQDStyles() const );
|
|
|
|
#endif
|
2009-01-17 10:43:43 +00:00
|
|
|
|
2009-03-20 13:56:57 +00:00
|
|
|
#if wxOSX_USE_COCOA
|
2009-03-24 07:56:17 +00:00
|
|
|
WX_NSFont OSXGetNSFont() const;
|
|
|
|
static WX_NSFont OSXCreateNSFont(wxOSXSystemFont font, wxNativeFontInfo* info);
|
|
|
|
static WX_NSFont OSXCreateNSFont(const wxNativeFontInfo* info);
|
2009-10-31 23:00:04 +00:00
|
|
|
static void SetNativeInfoFromNSFont(WX_NSFont nsfont, wxNativeFontInfo* info);
|
2009-03-20 13:56:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxOSX_USE_IPHONE
|
2009-03-24 07:56:17 +00:00
|
|
|
WX_UIFont OSXGetUIFont() const;
|
2009-03-29 20:48:05 +00:00
|
|
|
static WX_UIFont OSXCreateUIFont(wxOSXSystemFont font, wxNativeFontInfo* info);
|
|
|
|
static WX_UIFont OSXCreateUIFont(const wxNativeFontInfo* info);
|
2009-03-20 13:56:57 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
protected:
|
2009-04-14 19:58:51 +00:00
|
|
|
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
|
2010-09-29 13:46:09 +00:00
|
|
|
virtual wxFontFamily DoGetFamily() const;
|
2009-04-14 19:58:51 +00:00
|
|
|
|
2009-01-17 10:43:43 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_FONT_H_
|