2006-08-27 05:42:42 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/dfb/font.h
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Purpose: wxFont declaration
|
|
|
|
// Created: 2006-08-08
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2006 REA Elektronik GmbH
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DFB_FONT_H_
|
|
|
|
#define _WX_DFB_FONT_H_
|
|
|
|
|
2006-09-06 05:40:31 -04:00
|
|
|
#include "wx/dfb/dfbptr.h"
|
2006-08-27 05:42:42 -04:00
|
|
|
|
|
|
|
wxDFB_DECLARE_INTERFACE(IDirectFBFont);
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFont
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxFont() {}
|
|
|
|
wxFont(const wxNativeFontInfo& info) { Create(info); }
|
2008-11-03 12:02:25 -05:00
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
2006-08-27 05:42:42 -04:00
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
2008-11-03 12:02:25 -05: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)
|
2006-08-27 05:42:42 -04:00
|
|
|
{
|
|
|
|
Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2009-03-15 12:28:33 -04: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 06:41:26 -04:00
|
|
|
|
2006-08-27 05:42:42 -04:00
|
|
|
bool Create(int size,
|
2008-11-03 12:02:25 -05:00
|
|
|
wxFontFamily family,
|
|
|
|
wxFontStyle style,
|
|
|
|
wxFontWeight weight,
|
2006-08-27 05:42:42 -04:00
|
|
|
bool underlined = false,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
|
|
|
bool Create(const wxNativeFontInfo& fontinfo);
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual wxFontFamily GetFamily() const;
|
|
|
|
virtual wxFontStyle GetStyle() const;
|
|
|
|
virtual wxFontWeight GetWeight() const;
|
2006-08-27 05:42:42 -04:00
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
|
|
|
virtual bool IsFixedWidth() const;
|
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
|
|
|
|
|
|
|
virtual void SetPointSize(int pointSize);
|
2008-11-03 12:02:25 -05:00
|
|
|
virtual void SetFamily(wxFontFamily family);
|
|
|
|
virtual void SetStyle(wxFontStyle style);
|
|
|
|
virtual void SetWeight(wxFontWeight weight);
|
2006-08-27 05:42:42 -04:00
|
|
|
virtual bool SetFaceName(const wxString& faceName);
|
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
|
|
|
|
2009-06-12 16:11:21 -04:00
|
|
|
wxDECLARE_COMMON_FONT_METHODS();
|
2008-11-03 12:02:25 -05:00
|
|
|
|
2006-08-27 05:42:42 -04:00
|
|
|
// implementation from now on:
|
2006-11-20 15:45:57 -05:00
|
|
|
wxIDirectFBFontPtr GetDirectFBFont(bool antialiased) const;
|
2006-08-27 05:42:42 -04:00
|
|
|
|
|
|
|
protected:
|
2007-12-15 12:54:20 -05:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2006-08-27 05:42:42 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_DFB_FONT_H_
|