1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<?xml version="1.0"?>
<chapter id="GtkBuilder-module" xmlns:xi="http://www.w3.org/2003/XInclude">
<chapterinfo>
<author>
<firstname>Robert</firstname>
<surname>Carr</surname>
<affiliation>
<address>
<email>racarr@<parameter>gnome.org</parameter></email>
</address>
</affiliation>
</author>
</chapterinfo>
<title>GtkBuilder</title>
<refsect1>
<title>API Reference</title>
<para>
The GtkBuilder extends Gtk.GtkBuilder.prototype to implement a custom automatic signal connection function, which is useful in Seed. It does not provide any methods or types, so there is no need to save it's namespace, as of such it can be imported as follows.
<programlisting>
imports.gtkbuilder;
</programlisting>
</para>
<xi:include href="gtkbuilder-funcs.xml"/>
</refsect1>
<refsect1>
<title>Examples</title>
<para>Below are several examples of using the Seed GtkBuilder module. For additional resources, consult the examples/ folder of the Seed source</para>
<example id="GtkBuilder-xml-example">
<xi:include href="example.ui"/>
<xi:include href="example.js"/>
</example>
</refsect1>
</chapter>
|