+// ----------------------------------------------------------------------------
+// the following were introduced in GTK+ 3.0
+
+static inline void wx_gdk_window_get_geometry(GdkWindow* window, gint* x, gint* y, gint* width, gint* height)
+{
+ gdk_window_get_geometry(window, x, y, width, height, NULL);
+}
+#define gdk_window_get_geometry wx_gdk_window_get_geometry
+
+static inline GtkWidget* wx_gtk_tree_view_column_get_button(GtkTreeViewColumn* tree_column)
+{
+ return tree_column->button;
+}
+#define gtk_tree_view_column_get_button wx_gtk_tree_view_column_get_button
+
+static inline GtkWidget* wx_gtk_box_new(GtkOrientation orientation, gint spacing)
+{
+ GtkWidget* widget;
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ widget = gtk_hbox_new(false, spacing);
+ else
+ widget = gtk_vbox_new(false, spacing);
+ return widget;
+}
+#define gtk_box_new wx_gtk_box_new
+
+static inline GtkWidget* wx_gtk_button_box_new(GtkOrientation orientation)
+{
+ GtkWidget* widget;
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ widget = gtk_hbutton_box_new();
+ else
+ widget = gtk_vbutton_box_new();
+ return widget;
+}
+#define gtk_button_box_new wx_gtk_button_box_new
+
+static inline GtkWidget* wx_gtk_scale_new(GtkOrientation orientation, GtkAdjustment* adjustment)
+{
+ GtkWidget* widget;
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ widget = gtk_hscale_new(adjustment);
+ else
+ widget = gtk_vscale_new(adjustment);
+ return widget;
+}
+#define gtk_scale_new wx_gtk_scale_new
+
+static inline GtkWidget* wx_gtk_scrollbar_new(GtkOrientation orientation, GtkAdjustment* adjustment)
+{
+ GtkWidget* widget;
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ widget = gtk_hscrollbar_new(adjustment);
+ else
+ widget = gtk_vscrollbar_new(adjustment);
+ return widget;
+}
+#define gtk_scrollbar_new wx_gtk_scrollbar_new
+
+static inline GtkWidget* wx_gtk_separator_new(GtkOrientation orientation)
+{
+ GtkWidget* widget;
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ widget = gtk_hseparator_new();
+ else
+ widget = gtk_vseparator_new();
+ return widget;
+}
+#define gtk_separator_new wx_gtk_separator_new
+
+static inline void wx_gtk_widget_get_preferred_height(GtkWidget* widget, gint* minimum, gint* natural)
+{
+ GtkRequisition req;
+ gtk_widget_size_request(widget, &req);
+ if (minimum)
+ *minimum = req.height;
+ if (natural)
+ *natural = req.height;
+}
+#define gtk_widget_get_preferred_height wx_gtk_widget_get_preferred_height
+
+static inline void wx_gtk_widget_get_preferred_width(GtkWidget* widget, gint* minimum, gint* natural)
+{
+ GtkRequisition req;
+ gtk_widget_size_request(widget, &req);
+ if (minimum)
+ *minimum = req.width;
+ if (natural)
+ *natural = req.width;
+}
+#define gtk_widget_get_preferred_width wx_gtk_widget_get_preferred_width
+
+static inline void wx_gtk_widget_get_preferred_size(GtkWidget* widget, GtkRequisition* minimum, GtkRequisition* natural)
+{
+ GtkRequisition* req = minimum;
+ if (req == NULL)
+ req = natural;
+ gtk_widget_size_request(widget, req);
+}
+#define gtk_widget_get_preferred_size wx_gtk_widget_get_preferred_size
+
+#endif // !__WXGTK3__
+#endif // _WX_GTK_PRIVATE_COMPAT_H_