1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/private.h
3 // Purpose: wxGTK private macros, functions &c
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GTK_PRIVATE_H_
13 #define _WX_GTK_PRIVATE_H_
17 #include "wx/gtk/private/string.h"
18 #include "wx/gtk/dc.h"
19 #include "wx/gtk/dcclient.h"
20 #include "wx/gtk/dcmemory.h"
22 // pango_version_check symbol is quite recent ATM (4/2007)... so we
23 // use our own wrapper which implements a smart trick.
24 // Use this function as you'd use pango_version_check:
26 // if (!wx_pango_version_check(1,18,0))
27 // ... call to a function available only in pango >= 1.18 ...
29 // and use it only to test for pango versions >= 1.16.0
30 extern const gchar
*wx_pango_version_check(int major
, int minor
, int micro
);
33 #define wxGTK_CONV(s) s.utf8_str()
34 #define wxGTK_CONV_ENC(s, enc) wxGTK_CONV((s))
35 #define wxGTK_CONV_FONT(s, font) wxGTK_CONV((s))
36 #define wxGTK_CONV_SYS(s) wxGTK_CONV((s))
38 #define wxGTK_CONV_BACK(s) wxString::FromUTF8(s)
39 #define wxGTK_CONV_BACK_ENC(s, enc) wxGTK_CONV_BACK(s)
40 #define wxGTK_CONV_BACK_FONT(s, font) wxGTK_CONV_BACK(s)
41 #define wxGTK_CONV_BACK_SYS(s) wxGTK_CONV_BACK(s)
45 // convert the text between the given encoding and UTF-8 used by wxGTK
46 extern WXDLLIMPEXP_CORE wxCharBuffer
47 wxConvertToGTK(const wxString
& s
,
48 wxFontEncoding enc
= wxFONTENCODING_SYSTEM
);
50 extern WXDLLIMPEXP_CORE wxCharBuffer
51 wxConvertFromGTK(const wxString
& s
,
52 wxFontEncoding enc
= wxFONTENCODING_SYSTEM
);
54 // helper: use the encoding of the given font if it's valid
55 inline wxCharBuffer
wxConvertToGTK(const wxString
& s
, const wxFont
& font
)
57 return wxConvertToGTK(s
, font
.Ok() ? font
.GetEncoding()
58 : wxFONTENCODING_SYSTEM
);
61 inline wxCharBuffer
wxConvertFromGTK(const wxString
& s
, const wxFont
& font
)
63 return wxConvertFromGTK(s
, font
.Ok() ? font
.GetEncoding()
64 : wxFONTENCODING_SYSTEM
);
67 // more helpers: allow passing GTK+ strings directly
69 wxConvertFromGTK(const wxGtkString
& gs
,
70 wxFontEncoding enc
= wxFONTENCODING_SYSTEM
)
72 return wxConvertFromGTK(gs
.c_str(), enc
);
76 wxConvertFromGTK(const wxGtkString
& gs
, const wxFont
& font
)
78 return wxConvertFromGTK(gs
.c_str(), font
);
81 #define wxGTK_CONV(s) wxGTK_CONV_FONT((s), m_font)
82 #define wxGTK_CONV_ENC(s, enc) wxConvertToGTK((s), (enc))
83 #define wxGTK_CONV_FONT(s, font) wxConvertToGTK((s), (font))
84 #define wxGTK_CONV_SYS(s) wxConvertToGTK((s))
86 #define wxGTK_CONV_BACK(s) wxConvertFromGTK((s), m_font)
87 #define wxGTK_CONV_BACK_ENC(s, enc) wxConvertFromGTK((s), (enc))
88 #define wxGTK_CONV_BACK_FONT(s, font) wxConvertFromGTK((s), (font))
89 #define wxGTK_CONV_BACK_SYS(s) wxConvertFromGTK((s))
92 // Some deprecated GTK+ prototypes we still use often
93 // FIXME: Don't use them if possible.
96 // Deprecated since GTK+-1.3.7:
97 // Trivial wrapper around gtk_window_move, with some side effects we seem to rely on
98 void gtk_widget_set_uposition (GtkWidget
*widget
,
102 // We rely on the allow_shrink parameter in one place
103 void gtk_window_set_policy (GtkWindow
*window
,
110 #endif // _WX_GTK_PRIVATE_H_