[Geany-Devel] [PATCH geany] gtkcompat: Add gtk_widget_{set_can_default, get_allocation}

Quentin Glidic sardemff7+geany at xxxxx
Fri Apr 5 06:58:11 UTC 2013


From: Quentin Glidic <sardemff7+git at sardemff7.net>

Signed-off-by: Quentin Glidic <sardemff7+git at sardemff7.net>
---
 src/gtkcompat.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/gtkcompat.h b/src/gtkcompat.h
index ca1c187..7e0276c 100644
--- a/src/gtkcompat.h
+++ b/src/gtkcompat.h
@@ -92,6 +92,12 @@ G_BEGIN_DECLS
 		compat_widget_set_flag((widget), GTK_NO_WINDOW, !(has_window))
 #	define gtk_widget_set_can_focus(widget, can_focus) \
 		compat_widget_set_flag((widget), GTK_CAN_FOCUS, (can_focus))
+#	define gtk_widget_set_can_default(widget, can_default) \
+		compat_widget_set_flag((widget), GTK_CAN_DEFAULT, (can_default))
+#	define gtk_widget_get_allocation(widget, alloc) \
+		do { \
+			(alloc) = (((GtkWidget *) (widget))->allocation
+		} while (0)
 #endif
 #if ! GTK_CHECK_VERSION(2, 20, 0)
 #	define gtk_widget_get_mapped(widget)	GTK_WIDGET_MAPPED(widget)
-- 
1.8.2



More information about the Devel mailing list