chiark
/
gitweb
/
~mdw
/
clg
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bindings to lots of widgets updated and completed
[clg]
/
gtk
/
alien
/
glue.c
diff --git
a/gtk/alien/glue.c
b/gtk/alien/glue.c
index 43321580242387e66fde7f522c96c5b87a9eeb24..a61a3b50355df7d470a446999364340f9164406d 100644
(file)
--- 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
*/
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glue.c,v 1.
5 2004/12/26 11:51:21
espen Exp $ */
+/* $Id: glue.c,v 1.
6 2004/12/29 21:17:37
espen Exp $ */
#include <gtk/gtk.h>
#include <gtk/gtk.h>
@@
-73,6
+73,12
@@
gtk_container_get_focus_child (GtkContainer *container)
return container->focus_child;
}
return container->focus_child;
}
+gboolean
+gtk_container_get_reallocate_redraws (GtkContainer *container)
+{
+ return container->reallocate_redraws;
+}
+
/* Dialog */
/* Dialog */
@@
-106,25
+112,22
@@
gtk_window_get_group (GtkWindow *window)
-/*
Layout
*/
+/*
Window
*/
-Gdk
Window
*
-gtk_
layout_get_bin_window (GtkLayout *layout
)
+Gdk
Screen
*
+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;
}
}