1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/font.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling and Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // ============================================================================
12 // ============================================================================
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx.h".
19 #include "wx/wxprec.h"
26 #include "wx/settings.h"
27 #include "wx/cmndata.h"
28 #include "wx/gdicmn.h"
31 #include "wx/fontutil.h"
32 #include "wx/tokenzr.h"
34 #include "wx/gtk/private.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 // the default size (in points) for the fonts
41 static const int wxDEFAULT_FONT_SIZE
= 12;
43 // ----------------------------------------------------------------------------
44 // wxScaledFontList: maps the font sizes to the GDK fonts for the given font
45 // ----------------------------------------------------------------------------
47 WX_DECLARE_HASH_MAP(int, GdkFont
*, wxIntegerHash
, wxIntegerEqual
,
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 class wxFontRefData
: public wxObjectRefData
57 // from broken down font parameters, also default ctor
58 wxFontRefData(int size
= -1,
59 int family
= wxFONTFAMILY_DEFAULT
,
60 int style
= wxFONTSTYLE_NORMAL
,
61 int weight
= wxFONTWEIGHT_NORMAL
,
62 bool underlined
= false,
63 const wxString
& faceName
= wxEmptyString
,
64 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
67 wxFontRefData(const wxString
& fontname
);
70 wxFontRefData( const wxFontRefData
& data
);
72 virtual ~wxFontRefData();
74 // do we have the native font info?
75 bool HasNativeFont() const
77 // we always have a Pango font description
81 // setters: all of them also take care to modify m_nativeFontInfo if we
82 // have it so as to not lose the information not carried by our fields
83 void SetPointSize(int pointSize
);
84 void SetFamily(int family
);
85 void SetStyle(int style
);
86 void SetWeight(int weight
);
87 void SetUnderlined(bool underlined
);
88 bool SetFaceName(const wxString
& facename
);
89 void SetEncoding(wxFontEncoding encoding
);
91 void SetNoAntiAliasing( bool no
= true ) { m_noAA
= no
; }
92 bool GetNoAntiAliasing() const { return m_noAA
; }
94 // and this one also modifies all the other font data fields
95 void SetNativeFontInfo(const wxNativeFontInfo
& info
);
98 // common part of all ctors
99 void Init(int pointSize
,
104 const wxString
& faceName
,
105 wxFontEncoding encoding
);
107 // set all fields from (already initialized and valid) m_nativeFontInfo
108 void InitFromNative();
111 // clear m_scaled_xfonts if any
112 void ClearGdkFonts();
120 wxFontEncoding m_encoding
;
121 bool m_noAA
; // No anti-aliasing
123 // The native font info, basicly an XFLD under GTK 1.2 and
124 // the pango font description under GTK 2.0.
125 wxNativeFontInfo m_nativeFontInfo
;
130 // ----------------------------------------------------------------------------
132 // ----------------------------------------------------------------------------
134 void wxFontRefData::Init(int pointSize
,
139 const wxString
& faceName
,
140 wxFontEncoding encoding
)
142 m_family
= family
== wxFONTFAMILY_DEFAULT
? wxFONTFAMILY_SWISS
: family
;
144 m_faceName
= faceName
;
146 // we accept both wxDEFAULT and wxNORMAL here - should we?
147 m_style
= style
== wxDEFAULT
? wxFONTSTYLE_NORMAL
: style
;
148 m_weight
= weight
== wxDEFAULT
? wxFONTWEIGHT_NORMAL
: weight
;
150 // and here, do we really want to forbid creation of the font of the size
151 // 90 (the value of wxDEFAULT)??
152 m_pointSize
= pointSize
== wxDEFAULT
|| pointSize
== -1
153 ? wxDEFAULT_FONT_SIZE
156 m_underlined
= underlined
;
157 m_encoding
= encoding
;
161 // Create native font info
162 m_nativeFontInfo
.description
= pango_font_description_new();
164 // And set its values
165 if (!m_faceName
.empty())
167 pango_font_description_set_family( m_nativeFontInfo
.description
,
168 wxGTK_CONV_SYS(m_faceName
) );
174 case wxFONTFAMILY_MODERN
:
175 case wxFONTFAMILY_TELETYPE
:
176 pango_font_description_set_family( m_nativeFontInfo
.description
, "monospace" );
178 case wxFONTFAMILY_ROMAN
:
179 pango_font_description_set_family( m_nativeFontInfo
.description
, "serif" );
181 case wxFONTFAMILY_SWISS
:
182 // SWISS = sans serif
184 pango_font_description_set_family( m_nativeFontInfo
.description
, "sans" );
190 SetPointSize( m_pointSize
);
191 SetWeight( m_weight
);
194 void wxFontRefData::InitFromNative()
199 PangoFontDescription
*desc
= m_nativeFontInfo
.description
;
202 m_faceName
= wxGTK_CONV_BACK( pango_font_description_get_family( desc
) );
204 // Pango sometimes needs to have a size
205 int pango_size
= pango_font_description_get_size( desc
);
207 m_nativeFontInfo
.SetPointSize(12);
209 m_pointSize
= m_nativeFontInfo
.GetPointSize();
210 m_style
= m_nativeFontInfo
.GetStyle();
211 m_weight
= m_nativeFontInfo
.GetWeight();
213 if (m_faceName
== wxT("monospace"))
215 m_family
= wxFONTFAMILY_TELETYPE
;
217 else if (m_faceName
== wxT("sans"))
219 m_family
= wxFONTFAMILY_SWISS
;
221 else if (m_faceName
== wxT("serif"))
223 m_family
= wxFONTFAMILY_ROMAN
;
227 m_family
= wxFONTFAMILY_UNKNOWN
;
230 // Pango description are never underlined (?)
231 m_underlined
= false;
233 // always with GTK+ 2
234 m_encoding
= wxFONTENCODING_UTF8
;
237 wxFontRefData::wxFontRefData( const wxFontRefData
& data
)
240 m_pointSize
= data
.m_pointSize
;
241 m_family
= data
.m_family
;
242 m_style
= data
.m_style
;
243 m_weight
= data
.m_weight
;
245 m_underlined
= data
.m_underlined
;
247 m_faceName
= data
.m_faceName
;
248 m_encoding
= data
.m_encoding
;
250 m_noAA
= data
.m_noAA
;
252 // Forces a copy of the internal data. wxNativeFontInfo should probably
253 // have a copy ctor and assignment operator to fix this properly but that
254 // would break binary compatibility...
255 m_nativeFontInfo
.FromString(data
.m_nativeFontInfo
.ToString());
258 wxFontRefData::wxFontRefData(int size
, int family
, int style
,
259 int weight
, bool underlined
,
260 const wxString
& faceName
,
261 wxFontEncoding encoding
)
263 Init(size
, family
, style
, weight
, underlined
, faceName
, encoding
);
266 wxFontRefData::wxFontRefData(const wxString
& fontname
)
268 m_nativeFontInfo
.FromString( fontname
);
273 void wxFontRefData::ClearGdkFonts()
277 wxFontRefData::~wxFontRefData()
282 // ----------------------------------------------------------------------------
283 // wxFontRefData SetXXX()
284 // ----------------------------------------------------------------------------
286 void wxFontRefData::SetPointSize(int pointSize
)
288 m_pointSize
= pointSize
;
290 m_nativeFontInfo
.SetPointSize(pointSize
);
293 void wxFontRefData::SetFamily(int family
)
297 // TODO: what are we supposed to do with m_nativeFontInfo here?
300 void wxFontRefData::SetStyle(int style
)
304 m_nativeFontInfo
.SetStyle((wxFontStyle
)style
);
307 void wxFontRefData::SetWeight(int weight
)
311 m_nativeFontInfo
.SetWeight((wxFontWeight
)weight
);
314 void wxFontRefData::SetUnderlined(bool underlined
)
316 m_underlined
= underlined
;
318 // the XLFD doesn't have "underlined" field anyhow
321 bool wxFontRefData::SetFaceName(const wxString
& facename
)
323 m_faceName
= facename
;
325 return m_nativeFontInfo
.SetFaceName(facename
);
328 void wxFontRefData::SetEncoding(wxFontEncoding encoding
)
330 m_encoding
= encoding
;
333 void wxFontRefData::SetNativeFontInfo(const wxNativeFontInfo
& info
)
335 // previously cached fonts shouldn't be used
338 m_nativeFontInfo
= info
;
340 // set all the other font parameters from the native font info
344 // ----------------------------------------------------------------------------
346 // ----------------------------------------------------------------------------
348 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
350 wxFont::wxFont(const wxNativeFontInfo
& info
)
352 Create( info
.GetPointSize(),
356 info
.GetUnderlined(),
358 info
.GetEncoding() );
361 bool wxFont::Create( int pointSize
,
366 const wxString
& face
,
367 wxFontEncoding encoding
)
371 m_refData
= new wxFontRefData(pointSize
, family
, style
, weight
,
372 underlined
, face
, encoding
);
377 bool wxFont::Create(const wxString
& fontname
)
379 // VZ: does this really happen?
380 if ( fontname
.empty() )
382 *this = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
387 m_refData
= new wxFontRefData(fontname
);
396 // ----------------------------------------------------------------------------
398 // ----------------------------------------------------------------------------
400 int wxFont::GetPointSize() const
402 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
404 return M_FONTDATA
->HasNativeFont() ? M_FONTDATA
->m_nativeFontInfo
.GetPointSize()
405 : M_FONTDATA
->m_pointSize
;
408 wxString
wxFont::GetFaceName() const
410 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
412 return M_FONTDATA
->HasNativeFont() ? M_FONTDATA
->m_nativeFontInfo
.GetFaceName()
413 : M_FONTDATA
->m_faceName
;
416 int wxFont::GetFamily() const
418 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
420 int ret
= M_FONTDATA
->m_family
;
421 if (M_FONTDATA
->HasNativeFont())
422 // wxNativeFontInfo::GetFamily is expensive, must not call more than once
423 ret
= M_FONTDATA
->m_nativeFontInfo
.GetFamily();
425 if (ret
== wxFONTFAMILY_DEFAULT
)
426 ret
= M_FONTDATA
->m_family
;
431 int wxFont::GetStyle() const
433 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
435 return M_FONTDATA
->HasNativeFont() ? M_FONTDATA
->m_nativeFontInfo
.GetStyle()
436 : M_FONTDATA
->m_style
;
439 int wxFont::GetWeight() const
441 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
443 return M_FONTDATA
->HasNativeFont() ? M_FONTDATA
->m_nativeFontInfo
.GetWeight()
444 : M_FONTDATA
->m_weight
;
447 bool wxFont::GetUnderlined() const
449 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
451 return M_FONTDATA
->m_underlined
;
454 wxFontEncoding
wxFont::GetEncoding() const
456 wxCHECK_MSG( Ok(), wxFONTENCODING_SYSTEM
, wxT("invalid font") );
458 return M_FONTDATA
->m_encoding
;
461 bool wxFont::GetNoAntiAliasing() const
463 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
465 return M_FONTDATA
->m_noAA
;
468 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
470 wxCHECK_MSG( Ok(), (wxNativeFontInfo
*)NULL
, wxT("invalid font") );
472 return &(M_FONTDATA
->m_nativeFontInfo
);
475 bool wxFont::IsFixedWidth() const
477 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
479 return wxFontBase::IsFixedWidth();
482 // ----------------------------------------------------------------------------
483 // change font attributes
484 // ----------------------------------------------------------------------------
486 void wxFont::SetPointSize(int pointSize
)
490 M_FONTDATA
->SetPointSize(pointSize
);
493 void wxFont::SetFamily(int family
)
497 M_FONTDATA
->SetFamily(family
);
500 void wxFont::SetStyle(int style
)
504 M_FONTDATA
->SetStyle(style
);
507 void wxFont::SetWeight(int weight
)
511 M_FONTDATA
->SetWeight(weight
);
514 bool wxFont::SetFaceName(const wxString
& faceName
)
518 return M_FONTDATA
->SetFaceName(faceName
) &&
519 wxFontBase::SetFaceName(faceName
);
522 void wxFont::SetUnderlined(bool underlined
)
526 M_FONTDATA
->SetUnderlined(underlined
);
529 void wxFont::SetEncoding(wxFontEncoding encoding
)
533 M_FONTDATA
->SetEncoding(encoding
);
536 void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo
& info
)
540 M_FONTDATA
->SetNativeFontInfo( info
);
543 void wxFont::SetNoAntiAliasing( bool no
)
547 M_FONTDATA
->SetNoAntiAliasing( no
);
550 wxObjectRefData
* wxFont::CreateRefData() const
552 return new wxFontRefData
;
555 wxObjectRefData
* wxFont::CloneRefData(const wxObjectRefData
* data
) const
557 return new wxFontRefData(*wx_static_cast(const wxFontRefData
*, data
));