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"
38 #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
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
);
94 virtual ~wxFontRefData();
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
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 #define M_FONTDATA ((wxFontRefData*)m_refData)
216 // ----------------------------------------------------------------------------
218 // ----------------------------------------------------------------------------
220 wxFont::wxFont(const wxNativeFontInfo
& info
)
222 (void)Create(info
.GetXFontName());
225 bool wxFont::Create(int pointSize
,
230 const wxString
& faceName
,
231 wxFontEncoding encoding
)
234 m_refData
= new wxFontRefData(pointSize
, family
, style
, weight
,
235 underlined
, faceName
, encoding
);
240 bool wxFont::Create(const wxString
& fontname
, wxFontEncoding enc
)
244 *this = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
248 m_refData
= new wxFontRefData();
250 M_FONTDATA
->m_nativeFontInfo
.SetXFontName(fontname
); // X font name
254 wxStringTokenizer
tn( fontname
, wxT("-") );
256 tn
.GetNextToken(); // skip initial empty token
257 tn
.GetNextToken(); // foundry
260 M_FONTDATA
->m_faceName
= tn
.GetNextToken(); // family
262 tmp
= tn
.GetNextToken().MakeUpper(); // weight
263 if (tmp
== wxT("BOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
264 if (tmp
== wxT("BLACK")) M_FONTDATA
->m_weight
= wxBOLD
;
265 if (tmp
== wxT("EXTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
266 if (tmp
== wxT("DEMIBOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
267 if (tmp
== wxT("ULTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
269 if (tmp
== wxT("LIGHT")) M_FONTDATA
->m_weight
= wxLIGHT
;
270 if (tmp
== wxT("THIN")) M_FONTDATA
->m_weight
= wxLIGHT
;
272 tmp
= tn
.GetNextToken().MakeUpper(); // slant
273 if (tmp
== wxT("I")) M_FONTDATA
->m_style
= wxITALIC
;
274 if (tmp
== wxT("O")) M_FONTDATA
->m_style
= wxITALIC
;
276 tn
.GetNextToken(); // set width
277 tn
.GetNextToken(); // add. style
278 tn
.GetNextToken(); // pixel size
280 tmp
= tn
.GetNextToken(); // pointsize
283 long num
= wxStrtol (tmp
.mb_str(), (wxChar
**) NULL
, 10);
284 M_FONTDATA
->m_pointSize
= (int)(num
/ 10);
287 tn
.GetNextToken(); // x-res
288 tn
.GetNextToken(); // y-res
290 tmp
= tn
.GetNextToken().MakeUpper(); // spacing
293 M_FONTDATA
->m_family
= wxMODERN
;
294 else if (M_FONTDATA
->m_faceName
== wxT("TIMES"))
295 M_FONTDATA
->m_family
= wxROMAN
;
296 else if (M_FONTDATA
->m_faceName
== wxT("HELVETICA"))
297 M_FONTDATA
->m_family
= wxSWISS
;
298 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDATYPEWRITER"))
299 M_FONTDATA
->m_family
= wxTELETYPE
;
300 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDA"))
301 M_FONTDATA
->m_family
= wxDECORATIVE
;
302 else if (M_FONTDATA
->m_faceName
== wxT("UTOPIA"))
303 M_FONTDATA
->m_family
= wxSCRIPT
;
305 tn
.GetNextToken(); // avg width
307 // deal with font encoding
308 M_FONTDATA
->m_encoding
= enc
;
309 if ( M_FONTDATA
->m_encoding
== wxFONTENCODING_SYSTEM
)
311 wxString registry
= tn
.GetNextToken().MakeUpper(),
312 encoding
= tn
.GetNextToken().MakeUpper();
314 if ( registry
== _T("ISO8859") )
317 if ( wxSscanf(encoding
, wxT("%d"), &cp
) == 1 )
319 M_FONTDATA
->m_encoding
=
320 (wxFontEncoding
)(wxFONTENCODING_ISO8859_1
+ cp
- 1);
323 else if ( registry
== _T("MICROSOFT") )
326 if ( wxSscanf(encoding
, wxT("cp125%d"), &cp
) == 1 )
328 M_FONTDATA
->m_encoding
=
329 (wxFontEncoding
)(wxFONTENCODING_CP1250
+ cp
);
332 else if ( registry
== _T("KOI8") )
334 M_FONTDATA
->m_encoding
= wxFONTENCODING_KOI8
;
336 //else: unknown encoding - may be give a warning here?
347 // ----------------------------------------------------------------------------
348 // change the font attributes
349 // ----------------------------------------------------------------------------
351 void wxFont::Unshare()
353 // Don't change shared data
356 m_refData
= new wxFontRefData();
360 wxFontRefData
* ref
= new wxFontRefData(*(wxFontRefData
*)m_refData
);
366 void wxFont::SetPointSize(int pointSize
)
370 M_FONTDATA
->m_pointSize
= pointSize
;
371 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
374 void wxFont::SetFamily(int family
)
378 M_FONTDATA
->m_family
= family
;
379 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
382 void wxFont::SetStyle(int style
)
386 M_FONTDATA
->m_style
= style
;
387 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
390 void wxFont::SetWeight(int weight
)
394 M_FONTDATA
->m_weight
= weight
;
395 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
398 bool wxFont::SetFaceName(const wxString
& faceName
)
402 M_FONTDATA
->m_faceName
= faceName
;
403 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
405 return wxFontBase::SetFaceName(faceName
);
408 void wxFont::SetUnderlined(bool underlined
)
412 M_FONTDATA
->m_underlined
= underlined
;
415 void wxFont::SetEncoding(wxFontEncoding encoding
)
419 M_FONTDATA
->m_encoding
= encoding
;
420 M_FONTDATA
->m_nativeFontInfo
.GetXFontName().Clear(); // invalid now
423 void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
427 M_FONTDATA
->m_nativeFontInfo
= info
;
430 // ----------------------------------------------------------------------------
431 // query font attributes
432 // ----------------------------------------------------------------------------
434 int wxFont::GetPointSize() const
436 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
438 return M_FONTDATA
->m_pointSize
;
441 wxString
wxFont::GetFaceName() const
443 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
445 return M_FONTDATA
->m_faceName
;
448 int wxFont::GetFamily() const
450 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
452 return M_FONTDATA
->m_family
;
455 int wxFont::GetStyle() const
457 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
459 return M_FONTDATA
->m_style
;
462 int wxFont::GetWeight() const
464 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
466 return M_FONTDATA
->m_weight
;
469 bool wxFont::GetUnderlined() const
471 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
473 return M_FONTDATA
->m_underlined
;
476 wxFontEncoding
wxFont::GetEncoding() const
478 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
480 return M_FONTDATA
->m_encoding
;
483 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
485 wxCHECK_MSG( Ok(), (wxNativeFontInfo
*)NULL
, wxT("invalid font") );
487 if(M_FONTDATA
->m_nativeFontInfo
.GetXFontName().empty())
490 return &(M_FONTDATA
->m_nativeFontInfo
);
493 // ----------------------------------------------------------------------------
494 // real implementation
495 // ----------------------------------------------------------------------------
497 // Find an existing, or create a new, XFontStruct
498 // based on this wxFont and the given scale. Append the
499 // font to list in the private data for future reference.
500 wxXFont
* wxFont::GetInternalFont(double scale
, WXDisplay
* display
) const
503 return (wxXFont
*)NULL
;
505 long intScale
= long(scale
* 100.0 + 0.5); // key for wxXFont
506 int pointSize
= (M_FONTDATA
->m_pointSize
* 10 * intScale
) / 100;
508 // search existing fonts first
509 wxList::compatibility_iterator node
= M_FONTDATA
->m_fonts
.GetFirst();
512 wxXFont
* f
= (wxXFont
*) node
->GetData();
513 if ((!display
|| (f
->m_display
== display
)) && (f
->m_scale
== intScale
))
515 node
= node
->GetNext();
518 // not found, create a new one
520 XFontStruct
*font
= (XFontStruct
*)
521 wxLoadQueryNearestFont(pointSize
,
522 M_FONTDATA
->m_family
,
524 M_FONTDATA
->m_weight
,
525 M_FONTDATA
->m_underlined
,
527 M_FONTDATA
->m_encoding
,
532 wxFAIL_MSG( wxT("Could not allocate even a default font -- something is wrong.") );
534 return (wxXFont
*) NULL
;
537 wxXFont
* f
= new wxXFont
;
538 #if wxMOTIF_NEW_FONT_HANDLING
539 XFreeFont( (Display
*) display
, font
);
541 f
->m_fontStruct
= (WXFontStructPtr
)font
;
543 f
->m_display
= ( display
? display
: wxGetDisplay() );
544 f
->m_scale
= intScale
;
546 #if wxMOTIF_USE_RENDER_TABLE
547 XmRendition rendition
;
548 XmRenderTable renderTable
;
552 #if wxMOTIF_NEW_FONT_HANDLING
553 wxChar
* fontSpec
= wxStrdup( xFontSpec
.mb_str() );
554 XtSetArg( args
[count
], XmNfontName
, fontSpec
); ++count
;
555 XtSetArg( args
[count
], XmNfontType
, XmFONT_IS_FONTSET
); ++count
;
557 XtSetArg( args
[count
], XmNfont
, font
); ++count
;
559 XtSetArg( args
[count
], XmNunderlineType
,
560 GetUnderlined() ? XmSINGLE_LINE
: XmNO_LINE
); ++count
;
561 rendition
= XmRenditionCreate( XmGetXmDisplay( (Display
*)f
->m_display
),
564 renderTable
= XmRenderTableAddRenditions( NULL
, &rendition
, 1,
567 f
->m_renderTable
= (WXRenderTable
)renderTable
;
568 f
->m_rendition
= (WXRendition
)rendition
;
569 wxASSERT( f
->m_renderTable
!= NULL
);
570 #else // if !wxMOTIF_USE_RENDER_TABLE
571 f
->m_fontList
= XmFontListCreate ((XFontStruct
*) font
, XmSTRING_DEFAULT_CHARSET
);
572 wxASSERT( f
->m_fontList
!= NULL
);
575 M_FONTDATA
->m_fonts
.Append(f
);
580 #if !wxMOTIF_NEW_FONT_HANDLING
582 WXFontStructPtr
wxFont::GetFontStruct(double scale
, WXDisplay
* display
) const
584 wxXFont
* f
= GetInternalFont(scale
, display
);
586 return (f
? f
->m_fontStruct
: (WXFontStructPtr
) 0);
591 #if !wxMOTIF_USE_RENDER_TABLE
593 WXFontList
wxFont::GetFontList(double scale
, WXDisplay
* display
) const
595 wxXFont
* f
= GetInternalFont(scale
, display
);
597 return (f
? f
->m_fontList
: (WXFontList
) 0);
600 #else // if wxMOTIF_USE_RENDER_TABLE
602 WXRenderTable
wxFont::GetRenderTable(WXDisplay
* display
) const
604 wxXFont
* f
= GetInternalFont(1.0, display
);
606 return (f
? f
->m_renderTable
: (WXRenderTable
) 0);
609 #endif // wxMOTIF_USE_RENDER_TABLE
611 WXFontType
wxFont::GetFontType(WXDisplay
* display
) const
613 #if wxMOTIF_USE_RENDER_TABLE
614 return Ok() ? GetRenderTable(display
) : NULL
;
616 return Ok() ? GetFontList(1.0, display
) : NULL
;
620 WXFontType
wxFont::GetFontTypeC(WXDisplay
* display
) const
622 #if wxMOTIF_USE_RENDER_TABLE
623 return Ok() ? GetRenderTable(display
) : NULL
;
625 return Ok() ? XmFontListCopy( (XmFontList
)GetFontList(1.0, display
) ) : NULL
;
629 /*static*/ WXString
wxFont::GetFontTag()
631 #if wxMOTIF_USE_RENDER_TABLE
632 return (WXString
)XmNrenderTable
;
634 return (WXString
)XmNfontList
;
638 #if wxMOTIF_USE_RENDER_TABLE
640 WXFontSet
wxFont::GetFontSet(double scale
, WXDisplay
* display
) const
642 wxXFont
* f
= GetInternalFont(scale
, display
);
644 if( !f
) return (WXFontSet
) 0;
649 XtSetArg( args
[count
], XmNfont
, 0 ); ++count
;
650 XmRenditionRetrieve( (XmRendition
) f
->m_rendition
, args
, count
);
652 return (WXFontSet
) args
[0].value
;
655 void wxGetTextExtent(WXDisplay
* display
, const wxFont
& font
, double scale
,
657 int* width
, int* height
, int* ascent
, int* descent
)
659 XRectangle ink
, logical
;
660 WXFontSet fset
= font
.GetFontSet(scale
, display
);
662 XmbTextExtents( (XFontSet
)fset
, str
.mb_str(), str
.length(), &ink
, &logical
);
664 if( width
) *width
= logical
.width
;
665 if( height
) *height
= logical
.height
;
666 if( ascent
) *ascent
= -logical
.y
;
667 if( descent
) *descent
= logical
.height
+ logical
.y
;
670 #else // if !wxMOTIF_USE_RENDER_TABLE
672 void wxGetTextExtent(WXDisplay
* display
, const wxFont
& font
,
673 double scale
, const wxString
& str
,
674 int* width
, int* height
, int* ascent
, int* descent
)
676 WXFontStructPtr pFontStruct
= font
.GetFontStruct(scale
, display
);
678 int direction
, ascent2
, descent2
;
680 int slen
= str
.length();
682 XTextExtents((XFontStruct
*) pFontStruct
, (char*) str
.mb_str(), slen
,
683 &direction
, &ascent2
, &descent2
, &overall
);
686 *width
= (overall
.width
);
688 *height
= (ascent2
+ descent2
);
695 #endif // !wxMOTIF_USE_RENDER_TABLE