X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/996994c7143b7a487f3db7a53780097dc5cf2ddd..3c31306c74e878e6888b6c73a44a337516717d73:/src/motif/font.cpp diff --git a/src/motif/font.cpp b/src/motif/font.cpp index 0eca7c505a..07d193cb74 100644 --- a/src/motif/font.cpp +++ b/src/motif/font.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "font.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -46,12 +42,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject) -#if wxCHECK_MOTIF_VERSION( 2, 0 ) && !wxCHECK_LESSTIF() - #define wxUSE_RENDER_TABLE 1 -#else - #define wxUSE_RENDER_TABLE 0 -#endif - // ---------------------------------------------------------------------------- // private classes // ---------------------------------------------------------------------------- @@ -67,7 +57,7 @@ public: #if !wxMOTIF_NEW_FONT_HANDLING WXFontStructPtr m_fontStruct; // XFontStruct #endif -#if !wxUSE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING +#if !wxMOTIF_USE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING WXFontList m_fontList; // Motif XmFontList #else // if wxUSE_RENDER_TABLE WXRenderTable m_renderTable; // Motif XmRenderTable @@ -139,9 +129,9 @@ wxXFont::wxXFont() #if !wxMOTIF_NEW_FONT_HANDLING m_fontStruct = (WXFontStructPtr) 0; #endif -#if !wxUSE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING +#if !wxMOTIF_USE_RENDER_TABLE && !wxMOTIF_NEW_FONT_HANDLING m_fontList = (WXFontList) 0; -#else // if wxUSE_RENDER_TABLE +#else // if wxMOTIF_USE_RENDER_TABLE m_renderTable = (WXRenderTable) 0; m_rendition = (WXRendition) 0; #endif @@ -151,7 +141,7 @@ wxXFont::wxXFont() wxXFont::~wxXFont() { -#if !wxUSE_RENDER_TABLE +#if !wxMOTIF_USE_RENDER_TABLE if (m_fontList) XmFontListFree ((XmFontList) m_fontList); m_fontList = NULL; @@ -225,15 +215,9 @@ wxFontRefData::~wxFontRefData() wxFont::wxFont(const wxNativeFontInfo& info) { - Init(); - (void)Create(info.GetXFontName()); } -void wxFont::Init() -{ -} - bool wxFont::Create(int pointSize, int family, int style, @@ -246,8 +230,6 @@ bool wxFont::Create(int pointSize, m_refData = new wxFontRefData(pointSize, family, style, weight, underlined, faceName, encoding); - RealizeResource(); - return true; } @@ -383,8 +365,6 @@ void wxFont::SetPointSize(int pointSize) M_FONTDATA->m_pointSize = pointSize; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::SetFamily(int family) @@ -393,8 +373,6 @@ void wxFont::SetFamily(int family) M_FONTDATA->m_family = family; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::SetStyle(int style) @@ -403,8 +381,6 @@ void wxFont::SetStyle(int style) M_FONTDATA->m_style = style; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::SetWeight(int weight) @@ -413,8 +389,6 @@ void wxFont::SetWeight(int weight) M_FONTDATA->m_weight = weight; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::SetFaceName(const wxString& faceName) @@ -423,8 +397,6 @@ void wxFont::SetFaceName(const wxString& faceName) M_FONTDATA->m_faceName = faceName; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::SetUnderlined(bool underlined) @@ -432,8 +404,6 @@ void wxFont::SetUnderlined(bool underlined) Unshare(); M_FONTDATA->m_underlined = underlined; - - RealizeResource(); } void wxFont::SetEncoding(wxFontEncoding encoding) @@ -442,8 +412,6 @@ void wxFont::SetEncoding(wxFontEncoding encoding) M_FONTDATA->m_encoding = encoding; M_FONTDATA->m_nativeFontInfo.GetXFontName().Clear(); // invalid now - - RealizeResource(); } void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo& info) @@ -569,7 +537,7 @@ wxXFont* wxFont::GetInternalFont(double scale, WXDisplay* display) const f->m_display = ( display ? display : wxGetDisplay() ); f->m_scale = intScale; -#if wxUSE_RENDER_TABLE +#if wxMOTIF_USE_RENDER_TABLE XmRendition rendition; XmRenderTable renderTable; Arg args[5]; @@ -593,7 +561,7 @@ wxXFont* wxFont::GetInternalFont(double scale, WXDisplay* display) const f->m_renderTable = (WXRenderTable)renderTable; f->m_rendition = (WXRendition)rendition; wxASSERT( f->m_renderTable != NULL ); -#else // if !wxUSE_RENDER_TABLE +#else // if !wxMOTIF_USE_RENDER_TABLE f->m_fontList = XmFontListCreate ((XFontStruct*) font, XmSTRING_DEFAULT_CHARSET); wxASSERT( f->m_fontList != NULL ); #endif @@ -612,38 +580,31 @@ WXFontStructPtr wxFont::GetFontStruct(double scale, WXDisplay* display) const return (f ? f->m_fontStruct : (WXFontStructPtr) 0); } +#endif + +#if !wxMOTIF_USE_RENDER_TABLE + WXFontList wxFont::GetFontList(double scale, WXDisplay* display) const { -#if !wxUSE_RENDER_TABLE wxXFont* f = GetInternalFont(scale, display); return (f ? f->m_fontList : (WXFontList) 0); -#else - return NULL; -#endif } -#endif // !wxMOTIF_NEW_FONT_HANDLING - - // declared in the header, can't use wxUSE_RENDER_TABLE -#if wxCHECK_MOTIF_VERSION( 2, 0 ) +#else // if wxMOTIF_USE_RENDER_TABLE WXRenderTable wxFont::GetRenderTable(WXDisplay* display) const { -#if wxUSE_RENDER_TABLE wxXFont* f = GetInternalFont(1.0, display); - return (f ? f->m_renderTable : (WXFontList) 0); -#else - return NULL; -#endif + return (f ? f->m_renderTable : (WXRenderTable) 0); } -#endif // wxCHECK_MOTIF_VERSION( 2, 0 ) +#endif // wxMOTIF_USE_RENDER_TABLE WXFontType wxFont::GetFontType(WXDisplay* display) const { -#if wxUSE_RENDER_TABLE +#if wxMOTIF_USE_RENDER_TABLE return Ok() ? GetRenderTable(display) : NULL; #else return Ok() ? GetFontList(1.0, display) : NULL; @@ -652,7 +613,7 @@ WXFontType wxFont::GetFontType(WXDisplay* display) const WXFontType wxFont::GetFontTypeC(WXDisplay* display) const { -#if wxUSE_RENDER_TABLE +#if wxMOTIF_USE_RENDER_TABLE return Ok() ? GetRenderTable(display) : NULL; #else return Ok() ? XmFontListCopy( (XmFontList)GetFontList(1.0, display) ) : NULL; @@ -661,7 +622,7 @@ WXFontType wxFont::GetFontTypeC(WXDisplay* display) const /*static*/ WXString wxFont::GetFontTag() { -#if wxUSE_RENDER_TABLE +#if wxMOTIF_USE_RENDER_TABLE return (WXString)XmNrenderTable; #else return (WXString)XmNfontList;