Index: MANIFEST =================================================================== --- MANIFEST (revision 2104) +++ MANIFEST (working copy) @@ -151,6 +151,7 @@ t/GtkAspectFrame.t t/GtkAssistant.t t/GtkBin.t +t/GtkBindings.t t/GtkBox.t t/GtkBuildable.t t/GtkBuildableIface.t @@ -371,6 +372,7 @@ xs/GtkAspectFrame.xs xs/GtkAssistant.xs xs/GtkBin.xs +xs/GtkBindings.xs xs/GtkBox.xs xs/GtkBuildable.xs xs/GtkBuilder.xs Index: xs_files-2.0 =================================================================== --- xs_files-2.0 (revision 2104) +++ xs_files-2.0 (working copy) @@ -51,6 +51,7 @@ xs/GtkArrow.xs xs/GtkAspectFrame.xs xs/GtkBin.xs +xs/GtkBindings.xs xs/GtkBox.xs xs/GtkButton.xs xs/GtkButtonBox.xs Index: maps-2.0 =================================================================== --- maps-2.0 (revision 2104) +++ maps-2.0 (working copy) @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2004 by the gtk2-perl team (see the file AUTHORS for the +# Copyright (C) 2003-2004, 2009 by the gtk2-perl team (see the file AUTHORS for the # full list) # # This library is free software; you can redistribute it and/or modify it under @@ -340,3 +340,5 @@ # not really defined by GTK+, but we'll use it for ourselves. GDK_TYPE_REGION GdkRegion GBoxed Gtk2::Gdk::Region + +GTK_TYPE_BINDING_SET GtkBindingSet GBoxed Gtk2::BindingSet Index: gtk2perl.h =================================================================== --- gtk2perl.h (revision 2104) +++ gtk2perl.h (working copy) @@ -1,6 +1,6 @@ /* * - * Copyright (C) 2003-2004 by the gtk2-perl team (see the file AUTHORS for the + * Copyright (C) 2003-2004, 2009 by the gtk2-perl team (see the file AUTHORS for the * full list) * * This library is free software; you can redistribute it and/or modify it @@ -30,6 +30,12 @@ #include "gtk2perl-versions.h" +/* custom GType for GtkBindingSet */ +#ifndef GTK_TYPE_BINDING_SET +# define GTK_TYPE_BINDING_SET (gtk2perl_binding_set_get_type ()) + GType gtk2perl_binding_set_get_type (void) G_GNUC_CONST; +#endif + /* custom GType for GdkRegion */ #ifndef GDK_TYPE_REGION # define GDK_TYPE_REGION (gtk2perl_gdk_region_get_type ())