#ifndef OBGTK_LAYOUT_H #define OBGTK_LAYOUT_H 1 #include #include #include #include @interface Gtk_Layout : Gtk_Container { @public GtkLayout *gtklayout; } - castGtkLayout : (GtkLayout *) castitem; + (id)makeGtkLayout : (GtkLayout *) castitem; - thaw; - set_size : (guint) width : (guint) height; - initWithLayoutInfo : (id) hadjustment : (id) vadjustment; - move : (id) widget : (gint) x : (gint) y; - set_vadjustment : (id) adjustment; - put : (id) widget : (gint) x : (gint) y; - set_hadjustment : (id) adjustment; - freeze; - (id) get_vadjustment; - (id) get_hadjustment; @end #endif /* OBGTK_LAYOUT_H */ .