]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/private.h
check that the version of __sync_sub_and_fetch that returns a value is supported...
[wxWidgets.git] / include / wx / gtk / private.h
CommitLineData
9e691f46
VZ
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$
77ffb593 8// Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
9e691f46
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_GTK_PRIVATE_H_
13#define _WX_GTK_PRIVATE_H_
14
9e691f46
VZ
15#include <gtk/gtk.h>
16
b098b621 17#include "wx/gtk/private/string.h"
888dde65
RR
18#include "wx/gtk/dc.h"
19#include "wx/gtk/dcclient.h"
20#include "wx/gtk/dcmemory.h"
9e691f46 21
5f4d1820
VZ
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:
25//
26// if (!wx_pango_version_check(1,18,0))
27// ... call to a function available only in pango >= 1.18 ...
28//
29// and use it only to test for pango versions >= 1.16.0
30extern const gchar *wx_pango_version_check(int major, int minor, int micro);
31
dd398cd0 32#if wxUSE_UNICODE
6256849f 33 #define wxGTK_CONV(s) s.utf8_str()
1a6c768b
VZ
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))
30083ad8 37
6256849f 38 #define wxGTK_CONV_BACK(s) wxString::FromUTF8(s)
30083ad8
VZ
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)
dd398cd0 42#else
5851053a
VZ
43 #include "wx/font.h"
44
30083ad8 45 // convert the text between the given encoding and UTF-8 used by wxGTK
be3dc331 46 extern WXDLLIMPEXP_CORE wxCharBuffer
5f11fef5
VZ
47 wxConvertToGTK(const wxString& s,
48 wxFontEncoding enc = wxFONTENCODING_SYSTEM);
49
be3dc331 50 extern WXDLLIMPEXP_CORE wxCharBuffer
30083ad8
VZ
51 wxConvertFromGTK(const wxString& s,
52 wxFontEncoding enc = wxFONTENCODING_SYSTEM);
53
5f11fef5
VZ
54 // helper: use the encoding of the given font if it's valid
55 inline wxCharBuffer wxConvertToGTK(const wxString& s, const wxFont& font)
56 {
57 return wxConvertToGTK(s, font.Ok() ? font.GetEncoding()
58 : wxFONTENCODING_SYSTEM);
59 }
60
30083ad8
VZ
61 inline wxCharBuffer wxConvertFromGTK(const wxString& s, const wxFont& font)
62 {
63 return wxConvertFromGTK(s, font.Ok() ? font.GetEncoding()
64 : wxFONTENCODING_SYSTEM);
65 }
66
67 // more helpers: allow passing GTK+ strings directly
68 inline wxCharBuffer
69 wxConvertFromGTK(const wxGtkString& gs,
70 wxFontEncoding enc = wxFONTENCODING_SYSTEM)
71 {
72 return wxConvertFromGTK(gs.c_str(), enc);
73 }
74
75 inline wxCharBuffer
76 wxConvertFromGTK(const wxGtkString& gs, const wxFont& font)
77 {
78 return wxConvertFromGTK(gs.c_str(), font);
79 }
80
81 #define wxGTK_CONV(s) wxGTK_CONV_FONT((s), m_font)
1a6c768b
VZ
82 #define wxGTK_CONV_ENC(s, enc) wxConvertToGTK((s), (enc))
83 #define wxGTK_CONV_FONT(s, font) wxConvertToGTK((s), (font))
1a6c768b 84 #define wxGTK_CONV_SYS(s) wxConvertToGTK((s))
30083ad8
VZ
85
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))
dd398cd0 90#endif
dd398cd0 91
1efb5db8
MR
92// Some deprecated GTK+ prototypes we still use often
93// FIXME: Don't use them if possible.
19abd352 94extern "C" {
1efb5db8
MR
95
96// Deprecated since GTK+-1.3.7:
97// Trivial wrapper around gtk_window_move, with some side effects we seem to rely on
98void gtk_widget_set_uposition (GtkWidget *widget,
99 gint x,
100 gint y);
101
102// We rely on the allow_shrink parameter in one place
103void gtk_window_set_policy (GtkWindow *window,
104 gint allow_shrink,
105 gint allow_grow,
106 gint auto_shrink);
107
19abd352 108} // extern "C"
bcf881ef 109
9e691f46
VZ
110#endif // _WX_GTK_PRIVATE_H_
111