git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
207 lines
5.0 KiB
C++
207 lines
5.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/mgl/font.cpp
|
|
// Author: Vaclav Slavik
|
|
// Id: $Id$
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#include "wx/font.h"
|
|
|
|
#include "wx/private/fontmgr.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
typedef wxFontMgrFontRefData wxFontRefData;
|
|
#define M_FONTDATA ((wxFontRefData*)m_refData)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxFont
|
|
// ----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
|
|
|
|
bool wxFont::Create(const wxNativeFontInfo& info)
|
|
{
|
|
return Create(info.pointSize, info.family, info.style, info.weight,
|
|
info.underlined, info.faceName, info.encoding);
|
|
}
|
|
|
|
bool wxFont::Create(int pointSize,
|
|
int family,
|
|
int style,
|
|
int weight,
|
|
bool underlined,
|
|
const wxString& face,
|
|
wxFontEncoding encoding)
|
|
{
|
|
m_refData = new wxFontRefData(pointSize, family, style, weight,
|
|
underlined, face, encoding);
|
|
return true;
|
|
}
|
|
|
|
wxObjectRefData *wxFont::CreateRefData() const
|
|
{
|
|
return new wxFontRefData;
|
|
}
|
|
|
|
wxObjectRefData *wxFont::CloneRefData(const wxObjectRefData *data) const
|
|
{
|
|
return new wxFontRefData(*(wxFontRefData *)data);
|
|
}
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// accessors
|
|
// ----------------------------------------------------------------------------
|
|
|
|
struct font_t *wxFont::GetMGLfont_t(float scale, bool antialiased)
|
|
{
|
|
wxCHECK_MSG( Ok(), NULL, wxT("invalid font") );
|
|
|
|
// we don't support DC scaling yet, so use scale=1
|
|
wxFontInstance *i = M_FONTDATA->GetFontInstance(1.0, antialiased);
|
|
return i ? i->GetMGLfont_t() : NULL;
|
|
}
|
|
|
|
int wxFont::GetPointSize() const
|
|
{
|
|
wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetPointSize();
|
|
}
|
|
|
|
wxString wxFont::GetFaceName() const
|
|
{
|
|
wxCHECK_MSG( Ok(), wxEmptyString, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetFaceName();
|
|
}
|
|
|
|
int wxFont::GetFamily() const
|
|
{
|
|
wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetFamily();
|
|
}
|
|
|
|
int wxFont::GetStyle() const
|
|
{
|
|
wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetStyle();
|
|
}
|
|
|
|
int wxFont::GetWeight() const
|
|
{
|
|
wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetWeight();
|
|
}
|
|
|
|
bool wxFont::GetUnderlined() const
|
|
{
|
|
wxCHECK_MSG( Ok(), false, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetUnderlined();
|
|
}
|
|
|
|
|
|
wxFontEncoding wxFont::GetEncoding() const
|
|
{
|
|
wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetEncoding();
|
|
}
|
|
|
|
bool wxFont::IsFixedWidth() const
|
|
{
|
|
wxCHECK_MSG( Ok(), false, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->IsFixedWidth();
|
|
}
|
|
|
|
const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
|
|
{
|
|
wxCHECK_MSG( Ok(), NULL, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetNativeFontInfo();
|
|
}
|
|
|
|
bool wxFont::GetNoAntiAliasing() const
|
|
{
|
|
wxCHECK_MSG( Ok(), false, wxT("invalid font") );
|
|
|
|
return M_FONTDATA->GetNoAntiAliasing();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// change font attributes
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxFont::SetPointSize(int pointSize)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetPointSize(pointSize);
|
|
}
|
|
|
|
void wxFont::SetFamily(int family)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetFamily(family);
|
|
}
|
|
|
|
void wxFont::SetStyle(int style)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetStyle(style);
|
|
}
|
|
|
|
void wxFont::SetWeight(int weight)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetWeight(weight);
|
|
}
|
|
|
|
bool wxFont::SetFaceName(const wxString& faceName)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetFaceName(faceName);
|
|
return wxFontBase::SetFaceName(faceName);
|
|
}
|
|
|
|
void wxFont::SetUnderlined(bool underlined)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetUnderlined(underlined);
|
|
}
|
|
|
|
void wxFont::SetEncoding(wxFontEncoding encoding)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetEncoding(encoding);
|
|
}
|
|
|
|
void wxFont::SetNoAntiAliasing(bool no)
|
|
{
|
|
AllocExclusive();
|
|
M_FONTDATA->SetNoAntiAliasing(no);
|
|
}
|