]> git.saurik.com Git - wxWidgets.git/blame - src/x11/font.cpp
wx/wxprec.h already includes wx/defs.h (with other minor cleaning).
[wxWidgets.git] / src / x11 / font.cpp
CommitLineData
83df96d6 1/////////////////////////////////////////////////////////////////////////////
788519c6 2// Name: src/x11/font.cpp
83df96d6
JS
3// Purpose: wxFont class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
83df96d6
JS
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
83df96d6
JS
20#ifdef __VMS
21#pragma message disable nosimpint
22#include "wx/vms_x_fix.h"
23#endif
bc797f4c 24
83df96d6
JS
25#ifdef __VMS
26#pragma message enable nosimpint
27#endif
28
29#include "wx/defs.h"
30#include "wx/string.h"
31#include "wx/font.h"
32#include "wx/gdicmn.h"
33#include "wx/utils.h" // for wxGetDisplay()
34#include "wx/fontutil.h" // for wxNativeFontInfo
35#include "wx/tokenzr.h"
36#include "wx/settings.h"
2b5f62a0 37
8354aa92 38#include "wx/x11/private.h"
83df96d6
JS
39
40IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
41
42// ----------------------------------------------------------------------------
2b5f62a0
VZ
43// constants
44// ----------------------------------------------------------------------------
45
46// the default size (in points) for the fonts
47static const int wxDEFAULT_FONT_SIZE = 12;
48
49
50#if wxUSE_UNICODE
51#else
52// ----------------------------------------------------------------------------
53// wxXFont
83df96d6
JS
54// ----------------------------------------------------------------------------
55
56// For every wxFont, there must be a font for each display and scale requested.
57// So these objects are stored in wxFontRefData::m_fonts
58class wxXFont : public wxObject
59{
60public:
61 wxXFont();
62 ~wxXFont();
63
64 WXFontStructPtr m_fontStruct; // XFontStruct
83df96d6
JS
65 WXDisplay* m_display; // XDisplay
66 int m_scale; // Scale * 100
67};
68
2b5f62a0
VZ
69wxXFont::wxXFont()
70{
71 m_fontStruct = (WXFontStructPtr) 0;
72 m_display = (WXDisplay*) 0;
73 m_scale = 100;
74}
75
76wxXFont::~wxXFont()
77{
6811251b
JS
78 // Freeing the font used to produce a segv, but
79 // appears to be OK now (bug fix in X11?)
80 XFontStruct* fontStruct = (XFontStruct*) m_fontStruct;
81 XFreeFont((Display*) m_display, fontStruct);
2b5f62a0
VZ
82}
83#endif
84
85// ----------------------------------------------------------------------------
86// wxFontRefData
87// ----------------------------------------------------------------------------
88
89class wxFontRefData: public wxObjectRefData
83df96d6
JS
90{
91friend class wxFont;
92
93public:
94 wxFontRefData(int size = wxDEFAULT,
95 int family = wxDEFAULT,
96 int style = wxDEFAULT,
97 int weight = wxDEFAULT,
98 bool underlined = FALSE,
99 const wxString& faceName = wxEmptyString,
2b5f62a0 100 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
83df96d6 101
2b5f62a0
VZ
102 // copy cstr
103 wxFontRefData(const wxFontRefData& data);
9045ad9d 104
2b5f62a0
VZ
105 // from XFLD
106 wxFontRefData(const wxString& fontname);
9045ad9d 107
2b5f62a0
VZ
108 // dstr
109 virtual ~wxFontRefData();
110
111 // setters: all of them also take care to modify m_nativeFontInfo if we
112 // have it so as to not lose the information not carried by our fields
113 void SetPointSize(int pointSize);
114 void SetFamily(int family);
115 void SetStyle(int style);
116 void SetWeight(int weight);
117 void SetUnderlined(bool underlined);
118 void SetFaceName(const wxString& facename);
119 void SetEncoding(wxFontEncoding encoding);
120
121 void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
5ac2e80c 122 bool GetNoAntiAliasing() const { return m_noAA; }
9045ad9d 123
2b5f62a0
VZ
124 // and this one also modifies all the other font data fields
125 void SetNativeFontInfo(const wxNativeFontInfo& info);
9045ad9d 126
83df96d6
JS
127protected:
128 // common part of all ctors
129 void Init(int size,
130 int family,
131 int style,
132 int weight,
133 bool underlined,
134 const wxString& faceName,
135 wxFontEncoding encoding);
136
2b5f62a0
VZ
137 // set all fields from (already initialized and valid) m_nativeFontInfo
138 void InitFromNative();
9045ad9d 139
83df96d6
JS
140 // font attributes
141 int m_pointSize;
142 int m_family;
143 int m_style;
144 int m_weight;
145 bool m_underlined;
146 wxString m_faceName;
2b5f62a0
VZ
147 wxFontEncoding m_encoding; // Unused in Unicode mode
148 bool m_noAA; // No anti-aliasing
83df96d6
JS
149
150 wxNativeFontInfo m_nativeFontInfo;
9045ad9d 151
2b5f62a0
VZ
152 void ClearX11Fonts();
153
154#if wxUSE_UNICODE
155#else
83df96d6
JS
156 // A list of wxXFonts
157 wxList m_fonts;
2b5f62a0 158#endif
83df96d6
JS
159};
160
83df96d6
JS
161// ----------------------------------------------------------------------------
162// wxFontRefData
163// ----------------------------------------------------------------------------
164
165void wxFontRefData::Init(int pointSize,
166 int family,
167 int style,
168 int weight,
169 bool underlined,
170 const wxString& faceName,
171 wxFontEncoding encoding)
172{
2b5f62a0 173 m_family = family == wxFONTFAMILY_DEFAULT ? wxFONTFAMILY_SWISS : family;
83df96d6
JS
174
175 m_faceName = faceName;
176
2b5f62a0
VZ
177 // we accept both wxDEFAULT and wxNORMAL here - should we?
178 m_style = style == wxDEFAULT ? wxFONTSTYLE_NORMAL : style;
179 m_weight = weight == wxDEFAULT ? wxFONTWEIGHT_NORMAL : weight;
180
181 // and here, do we really want to forbid creation of the font of the size
182 // 90 (the value of wxDEFAULT)??
183 m_pointSize = pointSize == wxDEFAULT || pointSize == -1
184 ? wxDEFAULT_FONT_SIZE
185 : pointSize;
186
187 m_underlined = underlined;
188 m_encoding = encoding;
9045ad9d 189
2b5f62a0
VZ
190#if wxUSE_UNICODE
191 // Create native font info
192 m_nativeFontInfo.description = pango_font_description_new();
193
194 // And set its values
195 switch (m_family)
196 {
197 case wxFONTFAMILY_MODERN:
198 case wxFONTFAMILY_TELETYPE:
199 pango_font_description_set_family( m_nativeFontInfo.description, "monospace" );
200 break;
5844fc07 201 case wxFONTFAMILY_ROMAN:
2b5f62a0
VZ
202 pango_font_description_set_family( m_nativeFontInfo.description, "serif" );
203 break;
204 default:
205 pango_font_description_set_family( m_nativeFontInfo.description, "sans" );
206 break;
207 }
208 SetStyle( m_style );
209 SetPointSize( m_pointSize );
210 SetWeight( m_weight );
211#endif
212}
213
214void wxFontRefData::InitFromNative()
215{
216 m_noAA = FALSE;
217
218#if wxUSE_UNICODE
219 // Get native info
220 PangoFontDescription *desc = m_nativeFontInfo.description;
221
222 // init fields
223 m_faceName = wxGTK_CONV_BACK( pango_font_description_get_family( desc ) );
83df96d6 224
2b5f62a0
VZ
225 m_pointSize = pango_font_description_get_size( desc ) / PANGO_SCALE;
226
227 switch (pango_font_description_get_style( desc ))
228 {
229 case PANGO_STYLE_NORMAL:
230 m_style = wxFONTSTYLE_NORMAL;
231 break;
232 case PANGO_STYLE_ITALIC:
233 m_style = wxFONTSTYLE_ITALIC;
234 break;
235 case PANGO_STYLE_OBLIQUE:
236 m_style = wxFONTSTYLE_SLANT;
237 break;
238 }
239
240 switch (pango_font_description_get_weight( desc ))
241 {
242 case PANGO_WEIGHT_ULTRALIGHT:
243 m_weight = wxFONTWEIGHT_LIGHT;
244 break;
245 case PANGO_WEIGHT_LIGHT:
246 m_weight = wxFONTWEIGHT_LIGHT;
247 break;
248 case PANGO_WEIGHT_NORMAL:
249 m_weight = wxFONTWEIGHT_NORMAL;
250 break;
251 case PANGO_WEIGHT_BOLD:
252 m_weight = wxFONTWEIGHT_BOLD;
253 break;
254 case PANGO_WEIGHT_ULTRABOLD:
255 m_weight = wxFONTWEIGHT_BOLD;
256 break;
257 case PANGO_WEIGHT_HEAVY:
258 m_weight = wxFONTWEIGHT_BOLD;
259 break;
260 }
261
262 if (m_faceName == wxT("monospace"))
263 {
264 m_family = wxFONTFAMILY_TELETYPE;
265 }
266 else if (m_faceName == wxT("sans"))
267 {
268 m_family = wxFONTFAMILY_SWISS;
269 }
83df96d6 270 else
2b5f62a0
VZ
271 {
272 m_family = wxFONTFAMILY_UNKNOWN;
273 }
274
275 // Pango description are never underlined (?)
276 m_underlined = FALSE;
277
278 // Cannot we choose that
279 m_encoding = wxFONTENCODING_SYSTEM;
280#else // X11
281 // get the font parameters from the XLFD
282 // -------------------------------------
283
284 m_faceName = m_nativeFontInfo.GetXFontComponent(wxXLFD_FAMILY);
285
286 m_weight = wxFONTWEIGHT_NORMAL;
287
288 wxString w = m_nativeFontInfo.GetXFontComponent(wxXLFD_WEIGHT).Upper();
289 if ( !w.empty() && w != _T('*') )
290 {
291 // the test below catches all of BOLD, EXTRABOLD, DEMIBOLD, ULTRABOLD
292 // and BLACK
293 if ( ((w[0u] == _T('B') && (!wxStrcmp(w.c_str() + 1, wxT("OLD")) ||
294 !wxStrcmp(w.c_str() + 1, wxT("LACK"))))) ||
295 wxStrstr(w.c_str() + 1, _T("BOLD")) )
296 {
297 m_weight = wxFONTWEIGHT_BOLD;
298 }
299 else if ( w == _T("LIGHT") || w == _T("THIN") )
300 {
301 m_weight = wxFONTWEIGHT_LIGHT;
302 }
303 }
304
305 switch ( wxToupper(*m_nativeFontInfo.
306 GetXFontComponent(wxXLFD_SLANT).c_str()) )
307 {
308 case _T('I'): // italique
309 m_style = wxFONTSTYLE_ITALIC;
310 break;
311
312 case _T('O'): // oblique
313 m_style = wxFONTSTYLE_SLANT;
314 break;
83df96d6 315
2b5f62a0
VZ
316 default:
317 m_style = wxFONTSTYLE_NORMAL;
318 }
319
320 long ptSize;
321 if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_POINTSIZE).ToLong(&ptSize) )
322 {
323 // size in XLFD is in 10 point units
324 m_pointSize = (int)(ptSize / 10);
325 }
83df96d6 326 else
2b5f62a0
VZ
327 {
328 m_pointSize = wxDEFAULT_FONT_SIZE;
329 }
83df96d6 330
2b5f62a0
VZ
331 // examine the spacing: if the font is monospaced, assume wxTELETYPE
332 // family for compatibility with the old code which used it instead of
333 // IsFixedWidth()
334 if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING).Upper() == _T('M') )
335 {
336 m_family = wxFONTFAMILY_TELETYPE;
337 }
338 else // not monospaceed
339 {
340 // don't even try guessing it, it doesn't work for too many fonts
341 // anyhow
342 m_family = wxFONTFAMILY_UNKNOWN;
343 }
344
345 // X fonts are never underlined...
346 m_underlined = FALSE;
347
348 // deal with font encoding
349 wxString
350 registry = m_nativeFontInfo.GetXFontComponent(wxXLFD_REGISTRY).Upper(),
351 encoding = m_nativeFontInfo.GetXFontComponent(wxXLFD_ENCODING).Upper();
352
353 if ( registry == _T("ISO8859") )
354 {
355 int cp;
356 if ( wxSscanf(encoding, wxT("%d"), &cp) == 1 )
357 {
358 m_encoding = (wxFontEncoding)(wxFONTENCODING_ISO8859_1 + cp - 1);
359 }
360 }
361 else if ( registry == _T("MICROSOFT") )
362 {
363 int cp;
364 if ( wxSscanf(encoding, wxT("cp125%d"), &cp) == 1 )
365 {
366 m_encoding = (wxFontEncoding)(wxFONTENCODING_CP1250 + cp);
367 }
368 }
369 else if ( registry == _T("KOI8") )
370 {
371 m_encoding = wxFONTENCODING_KOI8;
372 }
373 else // unknown encoding
374 {
375 // may be give a warning here? or use wxFontMapper?
376 m_encoding = wxFONTENCODING_SYSTEM;
377 }
378#endif // Pango/X11
83df96d6
JS
379}
380
2b5f62a0
VZ
381wxFontRefData::wxFontRefData( const wxFontRefData& data )
382 : wxObjectRefData()
83df96d6 383{
2b5f62a0
VZ
384 m_pointSize = data.m_pointSize;
385 m_family = data.m_family;
386 m_style = data.m_style;
387 m_weight = data.m_weight;
388
389 m_underlined = data.m_underlined;
390
391 m_faceName = data.m_faceName;
392 m_encoding = data.m_encoding;
393
394 m_noAA = data.m_noAA;
9045ad9d 395
2b5f62a0
VZ
396 m_nativeFontInfo = data.m_nativeFontInfo;
397}
398
399wxFontRefData::wxFontRefData(int size, int family, int style,
400 int weight, bool underlined,
401 const wxString& faceName,
402 wxFontEncoding encoding)
403{
404 Init(size, family, style, weight, underlined, faceName, encoding);
405}
406
407wxFontRefData::wxFontRefData(const wxString& fontname)
408{
409 // VZ: FromString() should really work in both cases, doesn't it?
410#if wxUSE_UNICODE
411 m_nativeFontInfo.FromString( fontname );
412#else
413 m_nativeFontInfo.SetXFontName(fontname);
414#endif
415
416 InitFromNative();
417}
418
419void wxFontRefData::ClearX11Fonts()
420{
421#if wxUSE_UNICODE
422#else
ac32ba44 423 wxList::compatibility_iterator node = m_fonts.GetFirst();
83df96d6
JS
424 while (node)
425 {
09a1dffa 426 wxXFont* f = (wxXFont*) node->GetData();
83df96d6 427 delete f;
09a1dffa 428 node = node->GetNext();
83df96d6
JS
429 }
430 m_fonts.Clear();
2b5f62a0
VZ
431#endif
432}
433
434wxFontRefData::~wxFontRefData()
435{
436 ClearX11Fonts();
83df96d6
JS
437}
438
439// ----------------------------------------------------------------------------
2b5f62a0 440// wxFontRefData SetXXX()
83df96d6
JS
441// ----------------------------------------------------------------------------
442
2b5f62a0 443void wxFontRefData::SetPointSize(int pointSize)
83df96d6 444{
2b5f62a0
VZ
445 m_pointSize = pointSize;
446
447#if wxUSE_UNICODE
448 // Get native info
449 PangoFontDescription *desc = m_nativeFontInfo.description;
450
451 pango_font_description_set_size( desc, m_pointSize * PANGO_SCALE );
452#endif
453}
454
455void wxFontRefData::SetFamily(int family)
456{
457 m_family = family;
458
459 // TODO: what are we supposed to do with m_nativeFontInfo here?
460}
461
462void wxFontRefData::SetStyle(int style)
463{
464 m_style = style;
465
466#if wxUSE_UNICODE
467 // Get native info
468 PangoFontDescription *desc = m_nativeFontInfo.description;
469
470 switch ( style )
471 {
472 case wxFONTSTYLE_ITALIC:
473 pango_font_description_set_style( desc, PANGO_STYLE_ITALIC );
474 break;
475 case wxFONTSTYLE_SLANT:
476 pango_font_description_set_style( desc, PANGO_STYLE_OBLIQUE );
477 break;
478 default:
479 wxFAIL_MSG( _T("unknown font style") );
480 // fall through
481 case wxFONTSTYLE_NORMAL:
482 pango_font_description_set_style( desc, PANGO_STYLE_NORMAL );
483 break;
484 }
485#endif
486}
487
488void wxFontRefData::SetWeight(int weight)
489{
490 m_weight = weight;
491}
492
493void wxFontRefData::SetUnderlined(bool underlined)
494{
495 m_underlined = underlined;
83df96d6 496
2b5f62a0 497 // the XLFD doesn't have "underlined" field anyhow
83df96d6
JS
498}
499
2b5f62a0
VZ
500void wxFontRefData::SetFaceName(const wxString& facename)
501{
502 m_faceName = facename;
503}
504
505void wxFontRefData::SetEncoding(wxFontEncoding encoding)
506{
507 m_encoding = encoding;
508}
509
510void wxFontRefData::SetNativeFontInfo(const wxNativeFontInfo& info)
511{
512 // previously cached fonts shouldn't be used
513 ClearX11Fonts();
514
515 m_nativeFontInfo = info;
516
517 // set all the other font parameters from the native font info
518 InitFromNative();
519}
520
521// ----------------------------------------------------------------------------
522// wxFont
523// ----------------------------------------------------------------------------
524
2b5f62a0
VZ
525wxFont::wxFont(const wxNativeFontInfo& info)
526{
2b5f62a0
VZ
527#if wxUSE_UNICODE
528 Create( info.GetPointSize(),
529 info.GetFamily(),
530 info.GetStyle(),
531 info.GetWeight(),
532 info.GetUnderlined(),
533 info.GetFaceName(),
534 info.GetEncoding() );
535#else
536 (void) Create(info.GetXFontName());
537#endif
538}
539
83df96d6
JS
540bool wxFont::Create(int pointSize,
541 int family,
542 int style,
543 int weight,
544 bool underlined,
545 const wxString& faceName,
546 wxFontEncoding encoding)
547{
548 UnRef();
9045ad9d 549
83df96d6
JS
550 m_refData = new wxFontRefData(pointSize, family, style, weight,
551 underlined, faceName, encoding);
552
83df96d6
JS
553 return TRUE;
554}
555
9045ad9d
VZ
556#if !wxUSE_UNICODE
557
83df96d6
JS
558bool wxFont::Create(const wxString& fontname, wxFontEncoding enc)
559{
560 if( !fontname )
561 {
562 *this = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT);
563 return TRUE;
564 }
565
566 m_refData = new wxFontRefData();
567
568 M_FONTDATA->m_nativeFontInfo.SetXFontName(fontname); // X font name
569
570 wxString tmp;
571
572 wxStringTokenizer tn( fontname, wxT("-") );
573
574 tn.GetNextToken(); // skip initial empty token
575 tn.GetNextToken(); // foundry
576
577
578 M_FONTDATA->m_faceName = tn.GetNextToken(); // family
579
580 tmp = tn.GetNextToken().MakeUpper(); // weight
581 if (tmp == wxT("BOLD")) M_FONTDATA->m_weight = wxBOLD;
582 if (tmp == wxT("BLACK")) M_FONTDATA->m_weight = wxBOLD;
583 if (tmp == wxT("EXTRABOLD")) M_FONTDATA->m_weight = wxBOLD;
584 if (tmp == wxT("DEMIBOLD")) M_FONTDATA->m_weight = wxBOLD;
585 if (tmp == wxT("ULTRABOLD")) M_FONTDATA->m_weight = wxBOLD;
586
587 if (tmp == wxT("LIGHT")) M_FONTDATA->m_weight = wxLIGHT;
588 if (tmp == wxT("THIN")) M_FONTDATA->m_weight = wxLIGHT;
589
590 tmp = tn.GetNextToken().MakeUpper(); // slant
591 if (tmp == wxT("I")) M_FONTDATA->m_style = wxITALIC;
592 if (tmp == wxT("O")) M_FONTDATA->m_style = wxITALIC;
593
594 tn.GetNextToken(); // set width
595 tn.GetNextToken(); // add. style
596 tn.GetNextToken(); // pixel size
597
598 tmp = tn.GetNextToken(); // pointsize
599 if (tmp != wxT("*"))
600 {
601 long num = wxStrtol (tmp.c_str(), (wxChar **) NULL, 10);
602 M_FONTDATA->m_pointSize = (int)(num / 10);
603 }
604
605 tn.GetNextToken(); // x-res
606 tn.GetNextToken(); // y-res
607
608 tmp = tn.GetNextToken().MakeUpper(); // spacing
609
610 if (tmp == wxT("M"))
611 M_FONTDATA->m_family = wxMODERN;
612 else if (M_FONTDATA->m_faceName == wxT("TIMES"))
613 M_FONTDATA->m_family = wxROMAN;
614 else if (M_FONTDATA->m_faceName == wxT("HELVETICA"))
615 M_FONTDATA->m_family = wxSWISS;
616 else if (M_FONTDATA->m_faceName == wxT("LUCIDATYPEWRITER"))
617 M_FONTDATA->m_family = wxTELETYPE;
618 else if (M_FONTDATA->m_faceName == wxT("LUCIDA"))
619 M_FONTDATA->m_family = wxDECORATIVE;
620 else if (M_FONTDATA->m_faceName == wxT("UTOPIA"))
621 M_FONTDATA->m_family = wxSCRIPT;
622
623 tn.GetNextToken(); // avg width
624
625 // deal with font encoding
626 M_FONTDATA->m_encoding = enc;
627 if ( M_FONTDATA->m_encoding == wxFONTENCODING_SYSTEM )
628 {
629 wxString registry = tn.GetNextToken().MakeUpper(),
630 encoding = tn.GetNextToken().MakeUpper();
631
632 if ( registry == _T("ISO8859") )
633 {
634 int cp;
635 if ( wxSscanf(encoding, wxT("%d"), &cp) == 1 )
636 {
637 M_FONTDATA->m_encoding =
638 (wxFontEncoding)(wxFONTENCODING_ISO8859_1 + cp - 1);
639 }
640 }
641 else if ( registry == _T("MICROSOFT") )
642 {
643 int cp;
644 if ( wxSscanf(encoding, wxT("cp125%d"), &cp) == 1 )
645 {
646 M_FONTDATA->m_encoding =
647 (wxFontEncoding)(wxFONTENCODING_CP1250 + cp);
648 }
649 }
650 else if ( registry == _T("KOI8") )
651 {
652 M_FONTDATA->m_encoding = wxFONTENCODING_KOI8;
653 }
654 //else: unknown encoding - may be give a warning here?
655 else
656 return FALSE;
657 }
9045ad9d 658 return TRUE;
83df96d6 659}
9045ad9d 660#endif // !wxUSE_UNICODE
83df96d6
JS
661
662wxFont::~wxFont()
663{
664}
665
666// ----------------------------------------------------------------------------
667// change the font attributes
668// ----------------------------------------------------------------------------
669
670void wxFont::Unshare()
671{
672 // Don't change shared data
673 if (!m_refData)
674 {
675 m_refData = new wxFontRefData();
676 }
677 else
678 {
679 wxFontRefData* ref = new wxFontRefData(*(wxFontRefData*)m_refData);
680 UnRef();
681 m_refData = ref;
682 }
683}
684
2b5f62a0
VZ
685// ----------------------------------------------------------------------------
686// accessors
687// ----------------------------------------------------------------------------
688
689int wxFont::GetPointSize() const
83df96d6 690{
2b5f62a0 691 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
83df96d6 692
2b5f62a0 693 return M_FONTDATA->m_pointSize;
83df96d6
JS
694}
695
2b5f62a0 696wxString wxFont::GetFaceName() const
83df96d6 697{
2b5f62a0 698 wxCHECK_MSG( Ok(), wxT(""), wxT("invalid font") );
83df96d6 699
2b5f62a0 700 return M_FONTDATA->m_faceName;
83df96d6
JS
701}
702
2b5f62a0 703int wxFont::GetFamily() const
83df96d6 704{
2b5f62a0 705 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
83df96d6 706
2b5f62a0 707 return M_FONTDATA->m_family;
83df96d6
JS
708}
709
2b5f62a0 710int wxFont::GetStyle() const
83df96d6 711{
2b5f62a0 712 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
83df96d6 713
2b5f62a0 714 return M_FONTDATA->m_style;
83df96d6
JS
715}
716
2b5f62a0 717int wxFont::GetWeight() const
83df96d6 718{
2b5f62a0 719 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
83df96d6 720
2b5f62a0 721 return M_FONTDATA->m_weight;
83df96d6
JS
722}
723
2b5f62a0 724bool wxFont::GetUnderlined() const
83df96d6 725{
2b5f62a0 726 wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") );
83df96d6 727
2b5f62a0 728 return M_FONTDATA->m_underlined;
83df96d6
JS
729}
730
2b5f62a0 731wxFontEncoding wxFont::GetEncoding() const
83df96d6 732{
2b5f62a0 733 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
83df96d6 734
2b5f62a0 735 return M_FONTDATA->m_encoding;
83df96d6
JS
736}
737
5ac2e80c 738bool wxFont::GetNoAntiAliasing() const
83df96d6 739{
2b5f62a0
VZ
740 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
741
742 return M_FONTDATA->m_noAA;
743}
744
3bf5a59b 745const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
2b5f62a0
VZ
746{
747 wxCHECK_MSG( Ok(), (wxNativeFontInfo *)NULL, wxT("invalid font") );
748
749#if wxUSE_UNICODE
750#else
751 if ( M_FONTDATA->m_nativeFontInfo.GetXFontName().empty() )
752 GetInternalFont();
753#endif
754
3bf5a59b 755 return &(M_FONTDATA->m_nativeFontInfo);
2b5f62a0
VZ
756}
757
758bool wxFont::IsFixedWidth() const
759{
760 wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") );
761
762#if wxUSE_UNICODE
a371f703 763 return wxFontBase::IsFixedWidth();
2b5f62a0
VZ
764#else
765 // Robert, is this right? HasNativeFont doesn't exist.
766 if ( TRUE )
767 // if ( M_FONTDATA->HasNativeFont() )
768 {
769 // the monospace fonts are supposed to have "M" in the spacing field
770 wxString spacing = M_FONTDATA->
771 m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING);
772
773 return spacing.Upper() == _T('M');
774 }
a371f703
JJ
775 // Unreaceable code for now
776 // return wxFontBase::IsFixedWidth();
2b5f62a0 777#endif
83df96d6 778
83df96d6
JS
779}
780
781// ----------------------------------------------------------------------------
2b5f62a0 782// change font attributes
83df96d6
JS
783// ----------------------------------------------------------------------------
784
2b5f62a0 785void wxFont::SetPointSize(int pointSize)
83df96d6 786{
2b5f62a0
VZ
787 Unshare();
788
789 M_FONTDATA->SetPointSize(pointSize);
83df96d6
JS
790}
791
2b5f62a0 792void wxFont::SetFamily(int family)
83df96d6 793{
2b5f62a0 794 Unshare();
83df96d6 795
2b5f62a0 796 M_FONTDATA->SetFamily(family);
83df96d6
JS
797}
798
2b5f62a0 799void wxFont::SetStyle(int style)
83df96d6 800{
2b5f62a0 801 Unshare();
83df96d6 802
2b5f62a0 803 M_FONTDATA->SetStyle(style);
83df96d6
JS
804}
805
2b5f62a0 806void wxFont::SetWeight(int weight)
83df96d6 807{
2b5f62a0 808 Unshare();
83df96d6 809
2b5f62a0 810 M_FONTDATA->SetWeight(weight);
83df96d6
JS
811}
812
2b5f62a0 813void wxFont::SetFaceName(const wxString& faceName)
83df96d6 814{
2b5f62a0 815 Unshare();
83df96d6 816
2b5f62a0 817 M_FONTDATA->SetFaceName(faceName);
83df96d6
JS
818}
819
2b5f62a0 820void wxFont::SetUnderlined(bool underlined)
83df96d6 821{
2b5f62a0 822 Unshare();
83df96d6 823
2b5f62a0 824 M_FONTDATA->SetUnderlined(underlined);
83df96d6
JS
825}
826
2b5f62a0 827void wxFont::SetEncoding(wxFontEncoding encoding)
83df96d6 828{
2b5f62a0 829 Unshare();
83df96d6 830
2b5f62a0 831 M_FONTDATA->SetEncoding(encoding);
83df96d6
JS
832}
833
9045ad9d 834void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo& info )
83df96d6 835{
2b5f62a0 836 Unshare();
83df96d6 837
2b5f62a0
VZ
838 M_FONTDATA->SetNativeFontInfo( info );
839}
83df96d6 840
2b5f62a0
VZ
841void wxFont::SetNoAntiAliasing( bool no )
842{
843 Unshare();
844
845 M_FONTDATA->SetNoAntiAliasing( no );
83df96d6
JS
846}
847
2b5f62a0
VZ
848#if wxUSE_UNICODE
849#else
850
83df96d6 851// ----------------------------------------------------------------------------
2b5f62a0 852// X11 implementation
83df96d6
JS
853// ----------------------------------------------------------------------------
854
855// Find an existing, or create a new, XFontStruct
856// based on this wxFont and the given scale. Append the
857// font to list in the private data for future reference.
858wxXFont* wxFont::GetInternalFont(double scale, WXDisplay* display) const
859{
860 if ( !Ok() )
861 return (wxXFont *)NULL;
862
863 long intScale = long(scale * 100.0 + 0.5); // key for wxXFont
864 int pointSize = (M_FONTDATA->m_pointSize * 10 * intScale) / 100;
865
866 // search existing fonts first
ac32ba44 867 wxList::compatibility_iterator node = M_FONTDATA->m_fonts.GetFirst();
83df96d6
JS
868 while (node)
869 {
09a1dffa 870 wxXFont* f = (wxXFont*) node->GetData();
83df96d6
JS
871 if ((!display || (f->m_display == display)) && (f->m_scale == intScale))
872 return f;
09a1dffa 873 node = node->GetNext();
83df96d6
JS
874 }
875
69ffc7b2 876 wxString xFontName = M_FONTDATA->m_nativeFontInfo.GetXFontName();
97bdb4c8
JS
877 if (xFontName == "-*-*-*-*-*--*-*-*-*-*-*-*-*")
878 // wxFont constructor not called with native font info parameter => take M_FONTDATA values
879 xFontName.Clear();
69ffc7b2 880
83df96d6
JS
881 // not found, create a new one
882 XFontStruct *font = (XFontStruct *)
883 wxLoadQueryNearestFont(pointSize,
884 M_FONTDATA->m_family,
885 M_FONTDATA->m_style,
886 M_FONTDATA->m_weight,
887 M_FONTDATA->m_underlined,
888 wxT(""),
69ffc7b2
JS
889 M_FONTDATA->m_encoding,
890 & xFontName);
83df96d6
JS
891
892 if ( !font )
893 {
894 wxFAIL_MSG( wxT("Could not allocate even a default font -- something is wrong.") );
895
896 return (wxXFont*) NULL;
897 }
898
899 wxXFont* f = new wxXFont;
900 f->m_fontStruct = (WXFontStructPtr)font;
901 f->m_display = ( display ? display : wxGetDisplay() );
902 f->m_scale = intScale;
83df96d6
JS
903 M_FONTDATA->m_fonts.Append(f);
904
905 return f;
906}
907
908WXFontStructPtr wxFont::GetFontStruct(double scale, WXDisplay* display) const
909{
910 wxXFont* f = GetInternalFont(scale, display);
911
912 return (f ? f->m_fontStruct : (WXFontStructPtr) 0);
913}
914
2b5f62a0 915#endif