1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/font.cpp
3 // Purpose: wxFont class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
24 #pragma message disable nosimpint
25 #include "wx/vms_x_fix.h"
29 #pragma message enable nosimpint
35 #include "wx/string.h"
36 #include "wx/utils.h" // for wxGetDisplay()
37 #include "wx/settings.h"
40 #include "wx/gdicmn.h"
41 #include "wx/fontutil.h" // for wxNativeFontInfo
42 #include "wx/tokenzr.h"
43 #include "wx/motif/private.h"
45 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 // For every wxFont, there must be a font for each display and scale requested.
52 // So these objects are stored in wxFontRefData::m_fonts
53 class wxXFont
: public wxObject
59 #if !wxMOTIF_NEW_FONT_HANDLING
60 WXFontStructPtr m_fontStruct
; // XFontStruct
62 #if !wxMOTIF_USE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING
63 WXFontList m_fontList
; // Motif XmFontList
64 #else // if wxUSE_RENDER_TABLE
65 WXRenderTable m_renderTable
; // Motif XmRenderTable
66 WXRendition m_rendition
; // Motif XmRendition
68 WXDisplay
* m_display
; // XDisplay
69 int m_scale
; // Scale * 100
72 class wxFontRefData
: public wxGDIRefData
77 wxFontRefData(int size
= wxDEFAULT
,
78 int family
= wxDEFAULT
,
79 int style
= wxDEFAULT
,
80 int weight
= wxDEFAULT
,
81 bool underlined
= false,
82 const wxString
& faceName
= wxEmptyString
,
83 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
85 Init(size
, family
, style
, weight
, underlined
, faceName
, encoding
);
88 wxFontRefData(const wxFontRefData
& data
)
90 Init(data
.m_pointSize
, data
.m_family
, data
.m_style
, data
.m_weight
,
91 data
.m_underlined
, data
.m_faceName
, data
.m_encoding
);
97 // common part of all ctors
103 const wxString
& faceName
,
104 wxFontEncoding encoding
);
113 wxFontEncoding m_encoding
;
115 wxNativeFontInfo m_nativeFontInfo
;
117 // A list of wxXFonts
121 // ============================================================================
123 // ============================================================================
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
131 #if !wxMOTIF_NEW_FONT_HANDLING
132 m_fontStruct
= (WXFontStructPtr
) 0;
134 #if !wxMOTIF_USE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING
135 m_fontList
= (WXFontList
) 0;
136 #else // if wxMOTIF_USE_RENDER_TABLE
137 m_renderTable
= (WXRenderTable
) 0;
138 m_rendition
= (WXRendition
) 0;
140 m_display
= (WXDisplay
*) 0;
146 #if !wxMOTIF_USE_RENDER_TABLE
148 XmFontListFree ((XmFontList
) m_fontList
);
150 #else // if wxUSE_RENDER_TABLE
152 XmRenderTableFree ((XmRenderTable
) m_renderTable
);
153 m_renderTable
= NULL
;
156 // TODO: why does freeing the font produce a segv???
157 // Note that XFreeFont wasn't called in wxWin 1.68 either.
158 // MBN: probably some interaction with fonts being still
159 // in use in some widgets...
160 // XFontStruct* fontStruct = (XFontStruct*) m_fontStruct;
161 // XFreeFont((Display*) m_display, fontStruct);
164 // ----------------------------------------------------------------------------
166 // ----------------------------------------------------------------------------
168 void wxFontRefData::Init(int pointSize
,
173 const wxString
& faceName
,
174 wxFontEncoding encoding
)
176 if (family
== wxDEFAULT
)
181 m_faceName
= faceName
;
183 if (style
== wxDEFAULT
)
188 if (weight
== wxDEFAULT
)
193 if (pointSize
== wxDEFAULT
)
196 m_pointSize
= pointSize
;
198 m_underlined
= underlined
;
199 m_encoding
= encoding
;
202 wxFontRefData::~wxFontRefData()
204 wxList::compatibility_iterator node
= m_fonts
.GetFirst();
207 wxXFont
* f
= (wxXFont
*) node
->GetData();
209 node
= node
->GetNext();
214 // ----------------------------------------------------------------------------
216 // ----------------------------------------------------------------------------
218 wxFont::wxFont(const wxNativeFontInfo
& info
)
220 (void)Create(info
.GetXFontName());
223 bool wxFont::Create(int pointSize
,
228 const wxString
& faceName
,
229 wxFontEncoding encoding
)
232 m_refData
= new wxFontRefData(pointSize
, family
, style
, weight
,
233 underlined
, faceName
, encoding
);
238 bool wxFont::Create(const wxString
& fontname
, wxFontEncoding enc
)
242 *this = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
246 m_refData
= new wxFontRefData();
248 M_FONTDATA
->m_nativeFontInfo
.SetXFontName(fontname
); // X font name
252 wxStringTokenizer
tn( fontname
, wxT("-") );
254 tn
.GetNextToken(); // skip initial empty token
255 tn
.GetNextToken(); // foundry
258 M_FONTDATA
->m_faceName
= tn
.GetNextToken(); // family
260 tmp
= tn
.GetNextToken().MakeUpper(); // weight
261 if (tmp
== wxT("BOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
262 if (tmp
== wxT("BLACK")) M_FONTDATA
->m_weight
= wxBOLD
;
263 if (tmp
== wxT("EXTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
264 if (tmp
== wxT("DEMIBOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
265 if (tmp
== wxT("ULTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
267 if (tmp
== wxT("LIGHT")) M_FONTDATA
->m_weight
= wxLIGHT
;
268 if (tmp
== wxT("THIN")) M_FONTDATA
->m_weight
= wxLIGHT
;
270 tmp
= tn
.GetNextToken().MakeUpper(); // slant
271 if (tmp
== wxT("I")) M_FONTDATA
->m_style
= wxITALIC
;
272 if (tmp
== wxT("O")) M_FONTDATA
->m_style
= wxITALIC
;
274 tn
.GetNextToken(); // set width
275 tn
.GetNextToken(); // add. style
276 tn
.GetNextToken(); // pixel size
278 tmp
= tn
.GetNextToken(); // pointsize
281 long num
= wxStrtol (tmp
.c_str(), (wxChar
**) NULL
, 10);
282 M_FONTDATA
->m_pointSize
= (int)(num
/ 10);
285 tn
.GetNextToken(); // x-res
286 tn
.GetNextToken(); // y-res
288 tmp
= tn
.GetNextToken().MakeUpper(); // spacing
291 M_FONTDATA
->m_family
= wxMODERN
;
292 else if (M_FONTDATA
->m_faceName
== wxT("TIMES"))
293 M_FONTDATA
->m_family
= wxROMAN
;
294 else if (M_FONTDATA
->m_faceName
== wxT("HELVETICA"))
295 M_FONTDATA
->m_family
= wxSWISS
;
296 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDATYPEWRITER"))
297 M_FONTDATA
->m_family
= wxTELETYPE
;
298 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDA"))
299 M_FONTDATA
->m_family
= wxDECORATIVE
;
300 else if (M_FONTDATA
->m_faceName
== wxT("UTOPIA"))
301 M_FONTDATA
->m_family
= wxSCRIPT
;
303 tn
.GetNextToken(); // avg width
305 // deal with font encoding
306 M_FONTDATA
->m_encoding
= enc
;
307 if ( M_FONTDATA
->m_encoding
== wxFONTENCODING_SYSTEM
)
309 wxString registry
= tn
.GetNextToken().MakeUpper(),
310 encoding
= tn
.GetNextToken().MakeUpper();
312 if ( registry
== _T("ISO8859") )
315 if ( wxSscanf(encoding
, wxT("%d"), &cp
) == 1 )
317 M_FONTDATA
->m_encoding
=
318 (wxFontEncoding
)(wxFONTENCODING_ISO8859_1
+ cp
- 1);
321 else if ( registry
== _T("MICROSOFT") )
324 if ( wxSscanf(encoding
, wxT("cp125%d"), &cp
) == 1 )
326 M_FONTDATA
->m_encoding
=
327 (wxFontEncoding
)(wxFONTENCODING_CP1250
+ cp
);
330 else if ( registry
== _T("KOI8") )
332 M_FONTDATA
->m_encoding
= wxFONTENCODING_KOI8
;
334 //else: unknown encoding - may be give a warning here?
345 // ----------------------------------------------------------------------------
346 // change the font attributes
347 // ----------------------------------------------------------------------------
349 void wxFont::Unshare()
351 // Don't change shared data
354 m_refData
= new wxFontRefData();
358 wxFontRefData
* ref
= new wxFontRefData(*(wxFontRefData
*)m_refData
);
364 void wxFont::SetPointSize(int pointSize
)
368 M_FONTDATA
->m_pointSize
= pointSize
;
369 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
372 void wxFont::SetFamily(int family
)
376 M_FONTDATA
->m_family
= family
;
377 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
380 void wxFont::SetStyle(int style
)
384 M_FONTDATA
->m_style
= style
;
385 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
388 void wxFont::SetWeight(int weight
)
392 M_FONTDATA
->m_weight
= weight
;
393 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
396 void wxFont::SetFaceName(const wxString
& faceName
)
400 M_FONTDATA
->m_faceName
= faceName
;
401 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
404 void wxFont::SetUnderlined(bool underlined
)
408 M_FONTDATA
->m_underlined
= underlined
;
411 void wxFont::SetEncoding(wxFontEncoding encoding
)
415 M_FONTDATA
->m_encoding
= encoding
;
416 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
419 void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
423 M_FONTDATA
->m_nativeFontInfo
= info
;
426 // ----------------------------------------------------------------------------
427 // query font attributes
428 // ----------------------------------------------------------------------------
430 int wxFont::GetPointSize() const
432 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
434 return M_FONTDATA
->m_pointSize
;
437 wxString
wxFont::GetFaceName() const
439 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
441 return M_FONTDATA
->m_faceName
;
444 int wxFont::GetFamily() const
446 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
448 return M_FONTDATA
->m_family
;
451 int wxFont::GetStyle() const
453 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
455 return M_FONTDATA
->m_style
;
458 int wxFont::GetWeight() const
460 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
462 return M_FONTDATA
->m_weight
;
465 bool wxFont::GetUnderlined() const
467 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
469 return M_FONTDATA
->m_underlined
;
472 wxFontEncoding
wxFont::GetEncoding() const
474 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
476 return M_FONTDATA
->m_encoding
;
479 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
481 wxCHECK_MSG( Ok(), (wxNativeFontInfo
*)NULL
, wxT("invalid font") );
483 if(M_FONTDATA
->m_nativeFontInfo
.GetXFontName().empty())
486 return &(M_FONTDATA
->m_nativeFontInfo
);
489 // ----------------------------------------------------------------------------
490 // real implementation
491 // ----------------------------------------------------------------------------
493 // Find an existing, or create a new, XFontStruct
494 // based on this wxFont and the given scale. Append the
495 // font to list in the private data for future reference.
496 wxXFont
* wxFont::GetInternalFont(double scale
, WXDisplay
* display
) const
499 return (wxXFont
*)NULL
;
501 long intScale
= long(scale
* 100.0 + 0.5); // key for wxXFont
502 int pointSize
= (M_FONTDATA
->m_pointSize
* 10 * intScale
) / 100;
504 // search existing fonts first
505 wxList::compatibility_iterator node
= M_FONTDATA
->m_fonts
.GetFirst();
508 wxXFont
* f
= (wxXFont
*) node
->GetData();
509 if ((!display
|| (f
->m_display
== display
)) && (f
->m_scale
== intScale
))
511 node
= node
->GetNext();
514 // not found, create a new one
516 XFontStruct
*font
= (XFontStruct
*)
517 wxLoadQueryNearestFont(pointSize
,
518 M_FONTDATA
->m_family
,
520 M_FONTDATA
->m_weight
,
521 M_FONTDATA
->m_underlined
,
523 M_FONTDATA
->m_encoding
,
528 wxFAIL_MSG( wxT("Could not allocate even a default font -- something is wrong.") );
530 return (wxXFont
*) NULL
;
533 wxXFont
* f
= new wxXFont
;
534 #if wxMOTIF_NEW_FONT_HANDLING
535 XFreeFont( (Display
*) display
, font
);
537 f
->m_fontStruct
= (WXFontStructPtr
)font
;
539 f
->m_display
= ( display
? display
: wxGetDisplay() );
540 f
->m_scale
= intScale
;
542 #if wxMOTIF_USE_RENDER_TABLE
543 XmRendition rendition
;
544 XmRenderTable renderTable
;
548 #if wxMOTIF_NEW_FONT_HANDLING
549 wxChar
* fontSpec
= wxStrdup( xFontSpec
.c_str() );
550 XtSetArg( args
[count
], XmNfontName
, fontSpec
); ++count
;
551 XtSetArg( args
[count
], XmNfontType
, XmFONT_IS_FONTSET
); ++count
;
553 XtSetArg( args
[count
], XmNfont
, font
); ++count
;
555 XtSetArg( args
[count
], XmNunderlineType
,
556 GetUnderlined() ? XmSINGLE_LINE
: XmNO_LINE
); ++count
;
557 rendition
= XmRenditionCreate( XmGetXmDisplay( (Display
*)f
->m_display
),
560 renderTable
= XmRenderTableAddRenditions( NULL
, &rendition
, 1,
563 f
->m_renderTable
= (WXRenderTable
)renderTable
;
564 f
->m_rendition
= (WXRendition
)rendition
;
565 wxASSERT( f
->m_renderTable
!= NULL
);
566 #else // if !wxMOTIF_USE_RENDER_TABLE
567 f
->m_fontList
= XmFontListCreate ((XFontStruct
*) font
, XmSTRING_DEFAULT_CHARSET
);
568 wxASSERT( f
->m_fontList
!= NULL
);
571 M_FONTDATA
->m_fonts
.Append(f
);
576 #if !wxMOTIF_NEW_FONT_HANDLING
578 WXFontStructPtr
wxFont::GetFontStruct(double scale
, WXDisplay
* display
) const
580 wxXFont
* f
= GetInternalFont(scale
, display
);
582 return (f
? f
->m_fontStruct
: (WXFontStructPtr
) 0);
587 #if !wxMOTIF_USE_RENDER_TABLE
589 WXFontList
wxFont::GetFontList(double scale
, WXDisplay
* display
) const
591 wxXFont
* f
= GetInternalFont(scale
, display
);
593 return (f
? f
->m_fontList
: (WXFontList
) 0);
596 #else // if wxMOTIF_USE_RENDER_TABLE
598 WXRenderTable
wxFont::GetRenderTable(WXDisplay
* display
) const
600 wxXFont
* f
= GetInternalFont(1.0, display
);
602 return (f
? f
->m_renderTable
: (WXRenderTable
) 0);
605 #endif // wxMOTIF_USE_RENDER_TABLE
607 WXFontType
wxFont::GetFontType(WXDisplay
* display
) const
609 #if wxMOTIF_USE_RENDER_TABLE
610 return Ok() ? GetRenderTable(display
) : NULL
;
612 return Ok() ? GetFontList(1.0, display
) : NULL
;
616 WXFontType
wxFont::GetFontTypeC(WXDisplay
* display
) const
618 #if wxMOTIF_USE_RENDER_TABLE
619 return Ok() ? GetRenderTable(display
) : NULL
;
621 return Ok() ? XmFontListCopy( (XmFontList
)GetFontList(1.0, display
) ) : NULL
;
625 /*static*/ WXString
wxFont::GetFontTag()
627 #if wxMOTIF_USE_RENDER_TABLE
628 return (WXString
)XmNrenderTable
;
630 return (WXString
)XmNfontList
;
634 #if wxMOTIF_NEW_FONT_HANDLING
636 WXFontSet
wxFont::GetFontSet(double scale
, WXDisplay
* display
) const
638 wxXFont
* f
= GetInternalFont(scale
, display
);
640 if( !f
) return (WXFontSet
) 0;
645 XtSetArg( args
[count
], XmNfont
, 0 ); ++count
;
646 XmRenditionRetrieve( (XmRendition
) f
->m_rendition
, args
, count
);
648 return (WXFontSet
) args
[0].value
;
651 void wxGetTextExtent(WXDisplay
* display
, const wxFont
& font
, double scale
,
653 int* width
, int* height
, int* ascent
, int* descent
)
655 XRectangle ink
, logical
;
656 WXFontSet fset
= font
.GetFontSet(scale
, display
);
658 XmbTextExtents( (XFontSet
)fset
, str
.c_str(), str
.length(), &ink
, &logical
);
660 if( width
) *width
= logical
.width
;
661 if( height
) *height
= logical
.height
;
662 if( ascent
) *ascent
= -logical
.y
;
663 if( descent
) *descent
= logical
.height
+ logical
.y
;
666 #else // if !wxMOTIF_NEW_FONT_HANDLING
668 void wxGetTextExtent(WXDisplay
* display
, const wxFont
& font
,
669 double scale
, const wxString
& str
,
670 int* width
, int* height
, int* ascent
, int* descent
)
672 WXFontStructPtr pFontStruct
= font
.GetFontStruct(scale
, display
);
674 int direction
, ascent2
, descent2
;
676 int slen
= str
.Len();
678 XTextExtents((XFontStruct
*) pFontStruct
, (char*) str
.c_str(), slen
,
679 &direction
, &ascent2
, &descent2
, &overall
);
682 *width
= (overall
.width
);
684 *height
= (ascent2
+ descent2
);
691 #endif // !wxMOTIF_NEW_FONT_HANDLING