GNOME Bugzilla – Bug 318796
IconView: add get/set reorderable
Last modified: 2009-08-15 18:40:50 UTC
Add the java methods to interface with the c functions for gtk_icon_view_set_reorderable and gtk_icon_view_get_reorderable
Created attachment 53430 [details] [review] Modifications to the class IconView Added the methods: public void setReorderable(boolean reorderable) public boolean getReorderable() native static final protected boolean gtk_icon_view_get_reorderable(Handle view); native static final protected void gtk_icon_view_set_reorderable(Handle view, boolean reorderable);
Created attachment 53431 [details] [review] Modifications to org_gnu_gtk_IconView.c Added the methods: Java_org_gnu_gtk_IconView_gtk_1icon_1view_1set_1reorderable Java_org_gnu_gtk_IconView_gtk_1icon_1view_1get_1reorderable
Thanks for the patch. I've committed a slightly modified version (mostly formatting and comments) to CVS HEAD.