X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5a49d4c5267d4eb933d45ec615ac2ed374750dc..cd86bf1e7efbbcc71bdc1069d4ca507dc927e928:/include/wx/gtk/private.h?ds=sidebyside diff --git a/include/wx/gtk/private.h b/include/wx/gtk/private.h index 93ea5878c4..9f4cd54c02 100644 --- a/include/wx/gtk/private.h +++ b/include/wx/gtk/private.h @@ -5,8 +5,8 @@ // Modified by: // Created: 12.03.02 // RCS-ID: $Id$ -// Copyright: (c) 2002 Vadim Zeitlin -// Licence: wxWindows license +// Copyright: (c) 2002 Vadim Zeitlin +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_GTK_PRIVATE_H_ @@ -23,8 +23,22 @@ #define GTK_CHECK_VERSION(a, b, c) 0 #endif -// GTK+ 2.0 compatibility define is broken when used from C++ as it casts enum -// to int implicitly +#ifdef __WXGTK20__ +#if wxUSE_UNICODE + #define wxGTK_CONV(s) wxConvUTF8.cWX2MB(s) + #define wxGTK_CONV_BACK(s) wxConvUTF8.cMB2WX(s) +#else + #define wxGTK_CONV(s) wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC(s) ) + #define wxGTK_CONV_BACK(s) wxConvLocal.cWC2WX( (wxConvUTF8.cMB2WC( s ) ) ) +#endif +#else + #define wxGTK_CONV(s) s.c_str() + #define wxGTK_CONV_BACK(s) s +#endif + + +// GTK+ 2.0 compatibility define is broken when used from C++ as it +// casts enum to int implicitly #ifdef __WXGTK20__ #undef gtk_signal_disconnect_by_func #define gtk_signal_disconnect_by_func(object,func,data) \ @@ -47,20 +61,6 @@ #define TOGGLE_BUTTON_EVENT_WIN(w) GTK_TOGGLE_BUTTON((w))->event_window #endif -// get the font from a style -// -// TODO: GdkFont has been replaced by PangoFontDescription in GTK+ 2.0 -// and we really should use it instead of GdkFont (see also dclient.cpp) -#ifdef __WXGTK20__ - #define GET_STYLE_FONT(style) gtk_style_get_font(style) - #define SET_STYLE_FONT(style, font) gtk_style_set_font(style, font) -#else - #define GET_STYLE_FONT(style) ((style)->font) - #define SET_STYLE_FONT(style, fnt) \ - gdk_font_unref( style->font ); \ - style->font = gdk_font_ref( fnt ) -#endif - // gtk_editable_{copy|cut|paste}_clipboard() had an extra argument under // previous GTK+ versions but no more #if defined(__WXGTK20__) || (GTK_MINOR_VERSION > 0) @@ -131,5 +131,10 @@ inline wxEventType GtkScrollWinTypeToWx(guint scrollType) wxEVT_SCROLLWIN_TOP - wxEVT_SCROLL_TOP; } +#ifdef __WXGTK20__ +// Escapes string so that it is valid Pango markup XML string: +wxString wxEscapeStringForPangoMarkup(const wxString& str); +#endif + #endif // _WX_GTK_PRIVATE_H_