Glade::PerlGenerate (GPG) Gtk-Perl-Glade UI builder and source generator
--------------------------------------------------------------------
TO INSTALL
----------
There is a standard Makefile.PL to handle some checks and install the package

To install
    perl Makefile.PL
    make
    make test
    make install (if test was OK)
        
TO RUN FROM GLADE
-----------------
If you use Glade >= 0.5.0 you can set the project language to Perl and copy
the supplied script called 'glade2perl' to a directory in your path . Then 
when you click the 'Build' button or menu item the script will generate Perl 
sources for you.

We use options files to store information about such things as existing signal 
handler modules and so on. This means that signal handler stubs are only 
specified if they are not available at Build time even though Glade knows 
nothing about them. This approach also allows you to control other options
for the Glade build phase.

TO RUN MANUALLY
---------------
You need Perl, Glib/Gtk+, Gtk-Perl and XML::Parser packages and of course
Glade if you want to edit the interface files.

    glade2perl Project1.glade
    
    perl -e 'use src::Project1; window1->run'
OR  perl -e 'use src::SubProject1; Subwindow1->run'

(Obviously change the project name and window name to whatever you defined
in your Glade project)

To build a UI from an XML string. Look at the file $DIST_DIR/test.pl for an
example of doing this using a call to Glade::PerlGenerate->Form_from_XML to 
show a Glade UI.

