X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/41a559d2b83413bc7d210aadaeb38048c22a72bb..3b8e5eb03e50ab6c83407de042c1134bf3702484:/gtk/alien/glue.c diff --git a/gtk/alien/glue.c b/gtk/alien/glue.c index c5e5972..a61a3b5 100644 --- a/gtk/alien/glue.c +++ b/gtk/alien/glue.c @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: glue.c,v 1.4 2004/12/20 20:00:46 espen Exp $ */ +/* $Id: glue.c,v 1.6 2004/12/29 21:17:37 espen Exp $ */ #include @@ -73,6 +73,12 @@ gtk_container_get_focus_child (GtkContainer *container) return container->focus_child; } +gboolean +gtk_container_get_reallocate_redraws (GtkContainer *container) +{ + return container->reallocate_redraws; +} + /* Dialog */ @@ -98,26 +104,30 @@ gtk_window_get_default (GtkWindow *window) return window->default_widget; } +GtkWindowGroup* +gtk_window_get_group (GtkWindow *window) +{ + return window->group; +} -/* Layout */ -GdkWindow* -gtk_layout_get_bin_window (GtkLayout *layout) + +/* Window */ + +GdkScreen* +gtk_menu_get_screen (GtkMenu *menu) { - return layout->bin_window; + return (GdkScreen*)g_object_get_data (G_OBJECT (menu), "gtk-menu-explicit-screen"); } -/* Drawing area */ -void -gtk_drawing_area_get_size (GtkDrawingArea *darea, gint *width, gint *height) -{ - GtkWidget *widget; +/* Layout */ - widget = GTK_WIDGET (darea); - *width = widget->allocation.width; - *height = widget->allocation.height; +GdkWindow* +gtk_layout_get_bin_window (GtkLayout *layout) +{ + return layout->bin_window; }