After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 530748 - Document migration from libglade better
Document migration from libglade better
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Documentation
2.12.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks: 530740
 
 
Reported: 2008-04-30 15:40 UTC by Jaap A. Haitsma
Modified: 2008-06-01 20:56 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jaap A. Haitsma 2008-04-30 15:40:42 UTC
I've been looking into migrating anjuta to gtkbuilder. anjuta uses a couple of functions from libglade which don't have a counterpart in gtkbuilder which makes it less trivial to do the migration

Functions that are missing are

glade_xml_get_widget_prefix
glade_get_widget_name
Comment 1 Johan (not receiving bugmail) Dahlin 2008-04-30 15:52:02 UTC
glade_xml_get_widget_prefix is gone, it's replaced by gtk_builder_get_objects.
If you want to do prefix filtering you can do it yourself.

glade_get_widget_name is replaced by gtk_buildable_get_name().

This should be clarified in the documentation, how to port an application from libglade to gtkbuilder.
Comment 2 Jaap A. Haitsma 2008-04-30 15:57:07 UTC
Thanks for the info
Comment 3 Jaap A. Haitsma 2008-06-01 20:56:22 UTC
Changing the summary based on comment #1