#include "wx/encinfo.h"
#include "wx/hash.h"
#include "wx/utils.h" // for wxGetDisplay()
+ #include "wx/module.h"
#endif // PCH
#include "wx/fontmap.h"
#include "wx/tokenzr.h"
-#include "wx/module.h"
#include "wx/fontenum.h"
#if wxUSE_PANGO
#include "pango/pango.h"
#ifdef __WXGTK20__
-#include "wx/gtk/private.h"
-extern GtkWidget *wxGetRootWindow();
+ #include "wx/gtk/private.h"
+ extern GtkWidget *wxGetRootWindow();
+
+ #define wxPANGO_CONV wxGTK_CONV_SYS
#else
-#include "wx/x11/private.h"
+ #include "wx/x11/private.h"
+ #include "wx/gtk/private/string.h"
+
+ #define wxPANGO_CONV(s) (wxConvUTF8.cWX2MB((s)))
#endif
// ----------------------------------------------------------------------------
bool wxNativeFontInfo::SetFaceName(const wxString& facename)
{
- pango_font_description_set_family(description, wxGTK_CONV_SYS(facename));
+ pango_font_description_set_family(description, wxPANGO_CONV(facename));
return true;
}
}
}
- description = pango_font_description_from_string( wxGTK_CONV_SYS( str ) );
+ description = pango_font_description_from_string(wxPANGO_CONV(str));
// ensure a valid facename is selected
if (!wxFontEnumerator::IsValidFacename(GetFaceName()))
return ToString();
}
-// ----------------------------------------------------------------------------
-// wxNativeEncodingInfo
-// ----------------------------------------------------------------------------
-
-bool wxNativeEncodingInfo::FromString(const wxString& WXUNUSED(s))
-{
- return false;
-}
-
-wxString wxNativeEncodingInfo::ToString() const
-{
- return wxEmptyString;
-}
-
-bool wxTestFontEncoding(const wxNativeEncodingInfo& WXUNUSED(info))
-{
- return true;
-}
-
-bool wxGetNativeFontEncoding(wxFontEncoding encoding,
- wxNativeEncodingInfo *info)
-{
- // all encodings are available in GTK+ 2 because we translate text in any
- // encoding to UTF-8 internally anyhow
- info->facename.clear();
- info->encoding = encoding;
-
- return true;
-}
-
#else // GTK+ 1.x
#ifdef __X__