scrollbar handling simplification
[wxWidgets.git] / include / wx / gtk / private.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/private.h
3 // Purpose: wxGTK private macros, functions &c
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 12.03.02
7 // RCS-ID: $Id$
8 // Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GTK_PRIVATE_H_
13 #define _WX_GTK_PRIVATE_H_
14
15 #include <gtk/gtk.h>
16
17 #include "wx/event.h"
18
19 // fail all version tests if the GTK+ version is so ancient that it doesn't
20 // even have GTK_CHECK_VERSION
21 #ifndef GTK_CHECK_VERSION
22 #define GTK_CHECK_VERSION(a, b, c) 0
23 #endif
24
25 #if wxUSE_UNICODE
26 #define wxGTK_CONV(s) wxConvUTF8.cWX2MB((s))
27 #define wxGTK_CONV_ENC(s, enc) wxGTK_CONV((s))
28 #define wxGTK_CONV_FONT(s, font) wxGTK_CONV((s))
29 #define wxGTK_CONV_SYS(s) wxGTK_CONV((s))
30 #define wxGTK_CONV_BACK(s) wxConvUTF8.cMB2WX((s))
31 #else
32 #include "wx/font.h"
33
34 // convert the text in given encoding to UTF-8 used by wxGTK
35 extern wxCharBuffer
36 wxConvertToGTK(const wxString& s,
37 wxFontEncoding enc = wxFONTENCODING_SYSTEM);
38
39 // helper: use the encoding of the given font if it's valid
40 inline wxCharBuffer wxConvertToGTK(const wxString& s, const wxFont& font)
41 {
42 return wxConvertToGTK(s, font.Ok() ? font.GetEncoding()
43 : wxFONTENCODING_SYSTEM);
44 }
45
46 #define wxGTK_CONV_ENC(s, enc) wxConvertToGTK((s), (enc))
47 #define wxGTK_CONV_FONT(s, font) wxConvertToGTK((s), (font))
48 #define wxGTK_CONV(s) wxGTK_CONV_FONT((s), m_font)
49 #define wxGTK_CONV_SYS(s) wxConvertToGTK((s))
50 #define wxGTK_CONV_BACK(s) wxConvLocal.cWC2WX(wxConvUTF8.cMB2WC((s)))
51 #endif
52
53 // Some deprecated GTK+ prototypes we still use often
54 // FIXME: Don't use them if possible.
55 G_BEGIN_DECLS
56
57 // Should use gtk_image_new, but the mask seems to be handled different,
58 // and we need to migrate
59 GtkWidget* gtk_pixmap_new (GdkPixmap *pixmap,
60 GdkBitmap *mask);
61
62 // Deprecated since GTK+-1.3.7:
63 // Trivial wrapper around gtk_window_move, with some side effects we seem to rely on
64 void gtk_widget_set_uposition (GtkWidget *widget,
65 gint x,
66 gint y);
67
68 // We rely on the allow_shrink parameter in one place
69 void gtk_window_set_policy (GtkWindow *window,
70 gint allow_shrink,
71 gint allow_grow,
72 gint auto_shrink);
73
74 G_END_DECLS
75
76 //-----------------------------------------------------------------------------
77 // idle system
78 //-----------------------------------------------------------------------------
79
80 extern void wxapp_install_idle_handler();
81 extern bool g_isIdle;
82
83 //-----------------------------------------------------------------------------
84 // Convenience class for g_freeing a gchar* on scope exit automatically
85 //-----------------------------------------------------------------------------
86
87 class wxGtkString
88 {
89 public:
90 explicit wxGtkString(gchar *s) : m_str(s) { }
91 ~wxGtkString() { g_free(m_str); }
92
93 const gchar *c_str() const { return m_str; }
94
95 operator gchar *() const { return m_str; }
96
97 private:
98 gchar *m_str;
99
100 DECLARE_NO_COPY_CLASS(wxGtkString)
101 };
102
103 //-----------------------------------------------------------------------------
104 // Misc. functions
105 //-----------------------------------------------------------------------------
106
107 // Needed for implementing e.g. combobox on wxGTK within a modal dialog.
108 void wxAddGrab(wxWindow* window);
109 void wxRemoveGrab(wxWindow* window);
110
111 // Escapes string so that it is valid Pango markup XML string:
112 WXDLLIMPEXP_CORE wxString wxEscapeStringForPangoMarkup(const wxString& str);
113
114 // The declaration for gtk_icon_size_lookup was accidentally ifdefed out in
115 // GTK+ 2.1.0 which Sun seem to have shipped with some versions of JDS
116 // for Solaris 9 x86.
117 #ifdef NEED_GTK_ICON_SIZE_LOOKUP
118 extern "C" gboolean gtk_icon_size_lookup (GtkIconSize size,
119 gint *width,
120 gint *height);
121 #endif
122
123 #endif // _WX_GTK_PRIVATE_H_
124