+
+ wxXFont* f = new wxXFont;
+#if wxMOTIF_NEW_FONT_HANDLING
+ XFreeFont( (Display*) display, font );
+#else
+ f->m_fontStruct = (WXFontStructPtr)font;
+#endif
+ f->m_display = ( display ? display : wxGetDisplay() );
+ f->m_scale = intScale;
+
+#if wxMOTIF_USE_RENDER_TABLE
+ XmRendition rendition;
+ XmRenderTable renderTable;
+ Arg args[5];
+ int count = 0;
+
+#if wxMOTIF_NEW_FONT_HANDLING
+ char* fontSpec = wxStrdup(xFontSpec.mb_str());
+ XtSetArg( args[count], XmNfontName, fontSpec ); ++count;
+ XtSetArg( args[count], XmNfontType, XmFONT_IS_FONTSET ); ++count;
+#else
+ XtSetArg( args[count], XmNfont, font ); ++count;
+#endif
+ XtSetArg( args[count], XmNunderlineType,
+ GetUnderlined() ? XmSINGLE_LINE : XmNO_LINE ); ++count;
+ rendition = XmRenditionCreate( XmGetXmDisplay( (Display*)f->m_display ),
+ (XmStringTag)"",
+ args, count );
+ renderTable = XmRenderTableAddRenditions( NULL, &rendition, 1,
+ XmMERGE_REPLACE );
+
+ f->m_renderTable = (WXRenderTable)renderTable;
+ f->m_rendition = (WXRendition)rendition;
+ wxASSERT( f->m_renderTable != NULL );
+#else // if !wxMOTIF_USE_RENDER_TABLE
+ f->m_fontList = XmFontListCreate ((XFontStruct*) font, XmSTRING_DEFAULT_CHARSET);
+ wxASSERT( f->m_fontList != NULL );
+#endif
+
+ M_FONTDATA->m_fonts.Append(f);
+
+ return f;
+}
+
+#if !wxMOTIF_NEW_FONT_HANDLING
+
+WXFontStructPtr wxFont::GetFontStruct(double scale, WXDisplay* display) const
+{
+ wxXFont* f = GetInternalFont(scale, display);
+
+ return (f ? f->m_fontStruct : (WXFontStructPtr) 0);
+}
+
+#endif
+
+#if !wxMOTIF_USE_RENDER_TABLE
+
+WXFontList wxFont::GetFontList(double scale, WXDisplay* display) const
+{
+ wxXFont* f = GetInternalFont(scale, display);
+
+ return (f ? f->m_fontList : (WXFontList) 0);
+}
+
+#else // if wxMOTIF_USE_RENDER_TABLE
+
+WXRenderTable wxFont::GetRenderTable(WXDisplay* display) const
+{
+ wxXFont* f = GetInternalFont(1.0, display);
+
+ return (f ? f->m_renderTable : (WXRenderTable) 0);
+}
+
+#endif // wxMOTIF_USE_RENDER_TABLE
+
+WXFontType wxFont::GetFontType(WXDisplay* display) const
+{
+#if wxMOTIF_USE_RENDER_TABLE
+ return IsOk() ? GetRenderTable(display) : NULL;
+#else
+ return IsOk() ? GetFontList(1.0, display) : NULL;
+#endif
+}
+
+WXFontType wxFont::GetFontTypeC(WXDisplay* display) const
+{
+#if wxMOTIF_USE_RENDER_TABLE
+ return IsOk() ? GetRenderTable(display) : NULL;
+#else
+ return IsOk() ? XmFontListCopy( (XmFontList)GetFontList(1.0, display) ) : NULL;
+#endif
+}
+
+/*static*/ WXString wxFont::GetFontTag()
+{
+#if wxMOTIF_USE_RENDER_TABLE
+ return (WXString)XmNrenderTable;
+#else
+ return (WXString)XmNfontList;
+#endif
+}
+
+#if wxMOTIF_USE_RENDER_TABLE
+
+WXFontSet wxFont::GetFontSet(double scale, WXDisplay* display) const
+{
+ wxXFont* f = GetInternalFont(scale, display);
+
+ if( !f ) return (WXFontSet) 0;
+
+ Arg args[2];
+ int count = 0;
+
+ XtSetArg( args[count], XmNfont, 0 ); ++count;
+ XmRenditionRetrieve( (XmRendition) f->m_rendition, args, count );
+
+ return (WXFontSet) args[0].value;
+}
+
+void wxGetTextExtent(WXDisplay* display, const wxFont& font, double scale,
+ const wxString& str,
+ int* width, int* height, int* ascent, int* descent)
+{
+ XRectangle ink, logical;
+ WXFontSet fset = font.GetFontSet(scale, display);
+
+ XmbTextExtents( (XFontSet)fset, str.mb_str(), str.length(), &ink, &logical);
+
+ if( width ) *width = logical.width;
+ if( height ) *height = logical.height;
+ if( ascent ) *ascent = -logical.y;
+ if( descent ) *descent = logical.height + logical.y;
+}
+
+#else // if !wxMOTIF_USE_RENDER_TABLE
+
+void wxGetTextExtent(WXDisplay* display, const wxFont& font,
+ double scale, const wxString& str,
+ int* width, int* height, int* ascent, int* descent)
+{
+ WXFontStructPtr pFontStruct = font.GetFontStruct(scale, display);
+
+ int direction, ascent2, descent2;
+ XCharStruct overall;
+ int slen = str.length();
+
+ XTextExtents((XFontStruct*) pFontStruct,
+ const_cast<char*>((const char *)str.mb_str()), slen,
+ &direction, &ascent2, &descent2, &overall);
+
+ if ( width )
+ *width = (overall.width);
+ if ( height )
+ *height = (ascent2 + descent2);
+ if ( descent )
+ *descent = descent2;
+ if ( ascent )
+ *ascent = ascent2;