Return GdkColor via out parameter rather than return value
[geany-mirror.git] / src / gtkcompat.h
blob30f503f392bcc4c28a7afa555ba3d6a4fbf75786
1 /*
2 * gtkcompat.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2012 Colomban Wendling <ban(at)herbesfolles(dot)org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 /* Compatibility macros to support older GTK+ versions */
23 #ifndef GTK_COMPAT_H
24 #define GTK_COMPAT_H 1
26 #include <gtk/gtk.h>
27 #if GTK_CHECK_VERSION(3, 0, 0)
28 # include <gdk/gdkkeysyms-compat.h>
29 #endif
31 G_BEGIN_DECLS
34 /* GtkComboBoxText */
35 /* This is actually available in GTK 2.24, but we expose GtkComboBoxText in the
36 * API so we don't want the type to change for no good reason (although this
37 * should probably be harmless since it's only a derivated type). However, since
38 * a plugin needs to be rebuilt and tuned to work with GTK3 we don't mind that
39 * a type changes between the GTK2 and GTK3 version */
40 #if ! GTK_CHECK_VERSION(3, 0, 0)
41 /* undef those not to get warnings about redefinitions under GTK 2.24 */
42 # undef GTK_COMBO_BOX_TEXT
43 # undef GTK_COMBO_BOX_TEXT_CLASS
44 # undef GTK_COMBO_BOX_TEXT_GET_CLASS
45 # undef GTK_IS_COMBO_BOX_TEXT
46 # undef GTK_IS_COMBO_BOX_TEXT_CLASS
47 # undef GTK_TYPE_COMBO_BOX_TEXT
49 # define GTK_COMBO_BOX_TEXT GTK_COMBO_BOX
50 # define GTK_COMBO_BOX_TEXT_CLASS GTK_COMBO_BOX_CLASS
51 # define GTK_COMBO_BOX_TEXT_GET_CLASS GTK_COMBO_BOX_GET_CLASS
52 # define GTK_IS_COMBO_BOX_TEXT GTK_IS_COMBO_BOX
53 # define GTK_IS_COMBO_BOX_TEXT_CLASS GTK_IS_COMBO_BOX_CLASS
54 # define GTK_TYPE_COMBO_BOX_TEXT GTK_TYPE_COMBO_BOX
55 # define GtkComboBoxText GtkComboBox
56 # define gtk_combo_box_text_new gtk_combo_box_new_text
57 # define gtk_combo_box_text_new_with_entry gtk_combo_box_entry_new_text
58 # define gtk_combo_box_text_append_text gtk_combo_box_append_text
59 # define gtk_combo_box_text_insert_text gtk_combo_box_insert_text
60 # define gtk_combo_box_text_prepend_text gtk_combo_box_prepend_text
61 # define gtk_combo_box_text_remove gtk_combo_box_remove_text
62 # define gtk_combo_box_text_get_active_text gtk_combo_box_get_active_text
63 #endif
65 /* GtkWidget */
66 #if ! GTK_CHECK_VERSION(3, 0, 0)
67 # define gtk_widget_get_allocated_height(widget) (((GtkWidget *) (widget))->allocation.height)
68 # define gtk_widget_get_allocated_width(widget) (((GtkWidget *) (widget))->allocation.width)
69 #endif
72 /* Mappings below only prevent some deprecation warnings on GTK3 for things
73 * that didn't exist on GTK2. That's not future-proof. */
74 #if GTK_CHECK_VERSION(3, 0, 0)
75 /* Gtk[VH]Box */
76 # define compat_gtk_box_new(orientation, homogeneous, spacing) \
77 g_object_new(GTK_TYPE_BOX, \
78 "orientation", (orientation), \
79 "homogeneous", (homogeneous), \
80 "spacing", (spacing), \
81 NULL)
82 # define gtk_vbox_new(homogeneous, spacing) \
83 compat_gtk_box_new(GTK_ORIENTATION_VERTICAL, (homogeneous), (spacing))
84 # define gtk_hbox_new(homogeneous, spacing) \
85 compat_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, (homogeneous), (spacing))
86 /* Gtk[VH]ButtonBox */
87 # define gtk_vbutton_box_new() gtk_button_box_new(GTK_ORIENTATION_VERTICAL)
88 # define gtk_hbutton_box_new() gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL)
89 /* Gtk[VH]Separator */
90 # define gtk_vseparator_new() gtk_separator_new(GTK_ORIENTATION_VERTICAL)
91 # define gtk_hseparator_new() gtk_separator_new(GTK_ORIENTATION_HORIZONTAL)
92 /* Gtk[VH]Paned */
93 # define gtk_vpaned_new() gtk_paned_new(GTK_ORIENTATION_VERTICAL)
94 # define gtk_hpaned_new() gtk_paned_new(GTK_ORIENTATION_HORIZONTAL)
95 /* Gtk[VH]Scrollbar */
96 # define gtk_vscrollbar_new(adj) gtk_scrollbar_new(GTK_ORIENTATION_VERTICAL, (adj))
97 # define gtk_hscrollbar_new(adj) gtk_scrollbar_new(GTK_ORIENTATION_HORIZONTAL, (adj))
98 #endif
101 G_END_DECLS
103 #endif /* GTK_COMPAT_H */