applications compiled against gtk2.4 or newer to work with gtk2.2 or older runtime. wxFontEnumerator TODO
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35358
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
ret = wxFONTFAMILY_TELETYPE; // begins with "Monospace"
else if (strncmp( family_text, "courier", 7 ) == 0)
ret = wxFONTFAMILY_TELETYPE; // begins with "Courier"
ret = wxFONTFAMILY_TELETYPE; // begins with "Monospace"
else if (strncmp( family_text, "courier", 7 ) == 0)
ret = wxFONTFAMILY_TELETYPE; // begins with "Courier"
-#ifdef HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE
+#if defined(__WXGTK24__) || defined(HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE)
+#ifdef __WXGTK24__
+ if (!gtk_check_version(2,4,0))
+#endif
{
PangoFontFamily **families;
PangoFontFamily *family = NULL;
{
PangoFontFamily **families;
PangoFontFamily *family = NULL;
if (family != NULL && pango_font_family_is_monospace( family ))
ret = wxFONTFAMILY_TELETYPE; // is deemed a monospace font by pango
}
if (family != NULL && pango_font_family_is_monospace( family ))
ret = wxFONTFAMILY_TELETYPE; // is deemed a monospace font by pango
}
-#endif // pango_font_family_is_monospace
+#endif // gtk24 || HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE
if (ret == wxFONTFAMILY_DEFAULT)
{
if (ret == wxFONTFAMILY_DEFAULT)
{