]> git.saurik.com Git - wxWidgets.git/blame - src/dfb/font.cpp
add wxCmdLineParser::AddUsageText() and wxCMD_LINE_USAGE_TEXT (modified patch 1957542)
[wxWidgets.git] / src / dfb / font.cpp
CommitLineData
b3c86150
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/dfb/font.cpp
3// Purpose: wxFont implementation
4// Author: Vaclav Slavik
5// Created: 2006-08-08
6// RCS-ID: $Id$
7// Copyright: (c) 2006 REA Elektronik GmbH
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11// ============================================================================
12// declarations
13// ============================================================================
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19// For compilers that support precompilation, includes "wx.h".
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25
26#include "wx/font.h"
27
28#ifndef WX_PRECOMP
29 #include "wx/app.h"
30#endif
31
b3c86150 32#include "wx/dfb/private.h"
d04f9b8e 33#include "wx/private/fontmgr.h"
b3c86150 34
d04f9b8e 35typedef wxFontMgrFontRefData wxFontRefData;
68c95704 36#define M_FONTDATA ((wxFontRefData*)m_refData)
873fd4af 37
b3c86150
VS
38// ----------------------------------------------------------------------------
39// wxFont
40// ----------------------------------------------------------------------------
41
42IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
43
44bool wxFont::Create(const wxNativeFontInfo& info)
45{
46 return Create(info.pointSize, info.family, info.style, info.weight,
47 info.underlined, info.faceName, info.encoding);
48}
49
50bool wxFont::Create(int pointSize,
51 int family,
52 int style,
53 int weight,
54 bool underlined,
55 const wxString& face,
56 wxFontEncoding encoding)
57{
58 m_refData = new wxFontRefData(pointSize, family, style, weight,
59 underlined, face, encoding);
60 return true;
61}
62
8f884a0d 63wxGDIRefData *wxFont::CreateGDIRefData() const
b3c86150
VS
64{
65 return new wxFontRefData;
66}
67
8f884a0d 68wxGDIRefData *wxFont::CloneGDIRefData(const wxGDIRefData *data) const
b3c86150
VS
69{
70 return new wxFontRefData(*(wxFontRefData *)data);
71}
72
73
74// ----------------------------------------------------------------------------
75// accessors
76// ----------------------------------------------------------------------------
77
d04f9b8e 78wxIDirectFBFontPtr wxFont::GetDirectFBFont(bool antialiased) const
b3c86150
VS
79{
80 wxCHECK_MSG( Ok(), NULL, wxT("invalid font") );
81
d04f9b8e
VS
82 // we don't support DC scaling yet, so use scale=1
83 wxFontInstance *i = M_FONTDATA->GetFontInstance(1.0, antialiased);
84 return i ? i->GetDirectFBFont() : wxIDirectFBFontPtr();
b3c86150
VS
85}
86
87int wxFont::GetPointSize() const
88{
89 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
90
d04f9b8e 91 return M_FONTDATA->GetPointSize();
b3c86150
VS
92}
93
94wxString wxFont::GetFaceName() const
95{
96 wxCHECK_MSG( Ok(), wxEmptyString, wxT("invalid font") );
97
d04f9b8e 98 return M_FONTDATA->GetFaceName();
b3c86150
VS
99}
100
101int wxFont::GetFamily() const
102{
103 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
104
d04f9b8e 105 return M_FONTDATA->GetFamily();
b3c86150
VS
106}
107
108int wxFont::GetStyle() const
109{
110 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
111
d04f9b8e 112 return M_FONTDATA->GetStyle();
b3c86150
VS
113}
114
115int wxFont::GetWeight() const
116{
117 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
118
d04f9b8e 119 return M_FONTDATA->GetWeight();
b3c86150
VS
120}
121
122bool wxFont::GetUnderlined() const
123{
124 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
125
d04f9b8e 126 return M_FONTDATA->GetUnderlined();
b3c86150
VS
127}
128
129
130wxFontEncoding wxFont::GetEncoding() const
131{
132 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
133
d04f9b8e 134 return M_FONTDATA->GetEncoding();
b3c86150
VS
135}
136
137bool wxFont::IsFixedWidth() const
138{
139 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
140
d04f9b8e 141 return M_FONTDATA->IsFixedWidth();
b3c86150
VS
142}
143
144const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
145{
146 wxCHECK_MSG( Ok(), NULL, wxT("invalid font") );
147
d04f9b8e
VS
148 return M_FONTDATA->GetNativeFontInfo();
149}
150
151bool wxFont::GetNoAntiAliasing() const
152{
153 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
154
155 return M_FONTDATA->GetNoAntiAliasing();
b3c86150
VS
156}
157
158// ----------------------------------------------------------------------------
159// change font attributes
160// ----------------------------------------------------------------------------
161
162void wxFont::SetPointSize(int pointSize)
163{
164 AllocExclusive();
d04f9b8e 165 M_FONTDATA->SetPointSize(pointSize);
b3c86150
VS
166}
167
168void wxFont::SetFamily(int family)
169{
170 AllocExclusive();
d04f9b8e 171 M_FONTDATA->SetFamily(family);
b3c86150
VS
172}
173
174void wxFont::SetStyle(int style)
175{
176 AllocExclusive();
d04f9b8e 177 M_FONTDATA->SetStyle(style);
b3c86150
VS
178}
179
180void wxFont::SetWeight(int weight)
181{
182 AllocExclusive();
d04f9b8e 183 M_FONTDATA->SetWeight(weight);
b3c86150
VS
184}
185
186bool wxFont::SetFaceName(const wxString& faceName)
187{
188 AllocExclusive();
d04f9b8e 189 M_FONTDATA->SetFaceName(faceName);
b3c86150
VS
190 return wxFontBase::SetFaceName(faceName);
191}
192
193void wxFont::SetUnderlined(bool underlined)
194{
195 AllocExclusive();
d04f9b8e 196 M_FONTDATA->SetUnderlined(underlined);
b3c86150
VS
197}
198
199void wxFont::SetEncoding(wxFontEncoding encoding)
200{
201 AllocExclusive();
d04f9b8e
VS
202 M_FONTDATA->SetEncoding(encoding);
203}
b3c86150 204
d04f9b8e
VS
205void wxFont::SetNoAntiAliasing(bool no)
206{
207 AllocExclusive();
208 M_FONTDATA->SetNoAntiAliasing(no);
b3c86150 209}