plugins: plugin loader redesign
[geany-mirror.git] / src / gtkcompat.h
blob2c17ffe361e3f4cf1aec9271477fd1ff67669aec
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 /* GtkDialog */
66 /* GTK 2.22 deprecated dialog separators and 3.0 removed them
67 * We keep those however in case 2.16 has separators by default */
68 #if GTK_CHECK_VERSION(3, 0, 0)
69 # define gtk_dialog_set_has_separator(dialog, setting) /* nothing */
70 # define GTK_DIALOG_NO_SEPARATOR 0
71 #endif
73 /* GtkWidget */
74 #if ! GTK_CHECK_VERSION(3, 0, 0)
75 # define gtk_widget_get_allocated_height(widget) (((GtkWidget *) (widget))->allocation.height)
76 # define gtk_widget_get_allocated_width(widget) (((GtkWidget *) (widget))->allocation.width)
77 #endif
80 /* Mappings below only prevent some deprecation warnings on GTK3 for things
81 * that didn't exist on GTK2. That's not future-proof. */
82 #if GTK_CHECK_VERSION(3, 0, 0)
83 /* Gtk[VH]Box */
84 # define compat_gtk_box_new(orientation, homogeneous, spacing) \
85 g_object_new(GTK_TYPE_BOX, \
86 "orientation", (orientation), \
87 "homogeneous", (homogeneous), \
88 "spacing", (spacing), \
89 NULL)
90 # define gtk_vbox_new(homogeneous, spacing) \
91 compat_gtk_box_new(GTK_ORIENTATION_VERTICAL, (homogeneous), (spacing))
92 # define gtk_hbox_new(homogeneous, spacing) \
93 compat_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, (homogeneous), (spacing))
94 /* Gtk[VH]ButtonBox */
95 # define gtk_vbutton_box_new() gtk_button_box_new(GTK_ORIENTATION_VERTICAL)
96 # define gtk_hbutton_box_new() gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL)
97 /* Gtk[VH]Separator */
98 # define gtk_vseparator_new() gtk_separator_new(GTK_ORIENTATION_VERTICAL)
99 # define gtk_hseparator_new() gtk_separator_new(GTK_ORIENTATION_HORIZONTAL)
100 /* Gtk[VH]Paned */
101 # define gtk_vpaned_new() gtk_paned_new(GTK_ORIENTATION_VERTICAL)
102 # define gtk_hpaned_new() gtk_paned_new(GTK_ORIENTATION_HORIZONTAL)
103 /* Gtk[VH]Scrollbar */
104 # define gtk_vscrollbar_new(adj) gtk_scrollbar_new(GTK_ORIENTATION_VERTICAL, (adj))
105 # define gtk_hscrollbar_new(adj) gtk_scrollbar_new(GTK_ORIENTATION_HORIZONTAL, (adj))
106 #endif
109 G_END_DECLS
111 #endif /* GTK_COMPAT_H */