source: trunk/third/libglade2/README @ 18268

Revision 18268, 2.1 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18267, which included commits to RCS files with non-trunk default branches.
Line 
1LIBGLADE
2========
3
4Author: James Henstridge <james@daa.com.au>
5
6This library allows you to load glade interface files in a program at
7runtime.  It doesn't require GLADE to be used, but GLADE is by far the
8easiest way to create the interface files.
9
10For an idea of how to use the library, see test-libglade.c and
11glade/glade-xml.h.
12
13To compile, you will need the libxml2 package (aka the gnome-xml
14module in CVS) which can be found on the GNOME FTP site or its
15mirrors.  If you want GNOME support, you will also need the gnome-libs
16package installed.
17
18
19LIBGLADE INTERNALS
20==================
21
22If you are interested in how libglade works, here is a small
23description:
24
25When glade_xml_new is called, the XML file is loaded using libxml.
26Libglade uses the SAX interface because it is faster and allows me to
27store the data in a more compact representation.  The data in the XML
28file is cached, so that if you load the interface again, the file does
29not need to be reparsed.  If the file has changed though, it will be
30reparsed.
31
32Now glade_xml_build_widget is called for all the toplevel widgets in
33the interface (or if the second argument to glade_xml_new was non
34NULL, the widget it refers to is treated as the toplevel).
35
36For each of these widgets, they are created by a function specific to
37the widget type, and then glade_xml_build_widget is called for each
38child widget, which is then packed into its parent.  This is done
39recursively, so the whole interface is constructed.
40
41New widget types are added to the widget class hash with the
42glade_register_widgets function.  For an example, see the end of
43glade-gtk.c.
44
45The automatic signal connection system uses the introspective
46capabilities of dynamic linking.  By openning a handle on NULL, we can
47get at all the global symbols (global functions, global variables) in
48the executable, and the libraries it is linked against.  This is used
49to find the address of a signal handler from its name, so that
50gtk_signal_connect can be called automatically for you.
51
52Of course, there are other ways of connecting the signals if your
53platform doesn't support this feature.
Note: See TracBrowser for help on using the repository browser.