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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Libglade SAX Parser</title><meta name="generator" content="DocBook XSL Stylesheets V1.66.1"><link rel="start" href="index.html" title="Libglade Reference Manual"><link rel="up" href="libglade-lib.html" title="PartI.Libglade Library Reference"><link rel="prev" href="GladeXML.html" title="GladeXML"><link rel="next" href="libglade-Libglade-Build.html" title="Libglade Build"><meta name="generator" content="GTK-Doc V1.3 (XML mode)"><link rel="stylesheet" href="style.css" type="text/css"><link rel="chapter" href="libglade-notes.html" title="Libglade Programming Notes"><link rel="chapter" href="libglade-dtd.html" title="Glade 2.0 File Format"><link rel="part" href="libglade-lib.html" title="PartI.Libglade Library Reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"><td><a accesskey="p" href="GladeXML.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td><td><a accesskey="u" href="libglade-lib.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td><td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td><th width="100%" align="center">Libglade Reference Manual</th><td><a accesskey="n" href="libglade-Libglade-Build.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td></tr></table><div class="refentry" lang="en"><a name="libglade-Libglade-SAX-Parser"></a><div class="titlepage"></div><div class="refnamediv"><table width="100%"><tr><td valign="top"><h2><span class="refentrytitle">Libglade SAX Parser</span></h2><p>Libglade SAX Parser — Declarations and routines for accessing the SAX based parser.</p></td><td valign="top" align="right"></td></tr></table></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
#include <glade/glade-parser.h>
<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeWidgetInfo">GladeWidgetInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeChildInfo">GladeChildInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeProperty">GladeProperty</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeSignalInfo">GladeSignalInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeAccelInfo">GladeAccelInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeAtkActionInfo">GladeAtkActionInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeAtkRelationInfo">GladeAtkRelationInfo</a>;
<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a>* <a href="libglade-Libglade-SAX-Parser.html#glade-parser-parse-file">glade_parser_parse_file</a> (const gchar *file,
const gchar *domain);
<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a>* <a href="libglade-Libglade-SAX-Parser.html#glade-parser-parse-buffer">glade_parser_parse_buffer</a> (const gchar *buffer,
gint len,
const gchar *domain);
void <a href="libglade-Libglade-SAX-Parser.html#glade-interface-destroy">glade_interface_destroy</a> (<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a> *interface);
void <a href="libglade-Libglade-SAX-Parser.html#glade-interface-dump">glade_interface_dump</a> (<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a> *interface,
const gchar *filename);
</pre></div><div class="refsect1" lang="en"><a name="id301040"></a><h2>Description</h2><p>
The structures described here are the output of libglade's XML parser.
These structures are really only useful for people who are extending
libglade to handle other widget sets, but it could also be useful for
other applications that need to read glade XML files.
</p><p>If you only wish to use libglade, you don't need to worry about
these functions and structures.
</p></div><div class="refsect1" lang="en"><a name="id301056"></a><h2>Details</h2><div class="refsect2" lang="en"><a name="id301062"></a><h3><a name="GladeInterface"></a>GladeInterface</h3><a class="indexterm" name="id301070"></a><pre class="programlisting">typedef struct {
gchar **requires;
guint n_requires;
GladeWidgetInfo **toplevels;
guint n_toplevels;
GHashTable *names;
GHashTable *strings;
} GladeInterface;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id301081"></a><h3><a name="GladeWidgetInfo"></a>GladeWidgetInfo</h3><a class="indexterm" name="id290559"></a><pre class="programlisting">typedef struct {
GladeWidgetInfo *parent;
gchar *classname;
gchar *name;
GladeProperty *properties;
guint n_properties;
GladeProperty *atk_props;
guint n_atk_props;
GladeSignalInfo *signals;
guint n_signals;
GladeAtkActionInfo *atk_actions;
guint n_atk_actions;
GladeAtkRelationInfo *relations;
guint n_relations;
GladeAccelInfo *accels;
guint n_accels;
GladeChildInfo *children;
guint n_children;
} GladeWidgetInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id300030"></a><h3><a name="GladeChildInfo"></a>GladeChildInfo</h3><a class="indexterm" name="id295635"></a><pre class="programlisting">typedef struct {
GladeProperty *properties;
guint n_properties;
GladeWidgetInfo *child;
gchar *internal_child;
} GladeChildInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id318706"></a><h3><a name="GladeProperty"></a>GladeProperty</h3><a class="indexterm" name="id291501"></a><pre class="programlisting">typedef struct {
gchar *name;
gchar *value;
} GladeProperty;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id335550"></a><h3><a name="GladeSignalInfo"></a>GladeSignalInfo</h3><a class="indexterm" name="id295498"></a><pre class="programlisting">typedef struct {
gchar *name;
gchar *handler;
gchar *object; /* NULL if this isn't a connect_object signal */
guint after : 1;
} GladeSignalInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id300445"></a><h3><a name="GladeAccelInfo"></a>GladeAccelInfo</h3><a class="indexterm" name="id290571"></a><pre class="programlisting">typedef struct {
guint key;
GdkModifierType modifiers;
gchar *signal;
} GladeAccelInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id290581"></a><h3><a name="GladeAtkActionInfo"></a>GladeAtkActionInfo</h3><a class="indexterm" name="id290588"></a><pre class="programlisting">typedef struct {
gchar *action_name;
gchar *description;
} GladeAtkActionInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id290598"></a><h3><a name="GladeAtkRelationInfo"></a>GladeAtkRelationInfo</h3><a class="indexterm" name="id290606"></a><pre class="programlisting">typedef struct {
gchar *target;
gchar *type;
} GladeAtkRelationInfo;
</pre><p>
</p></div><hr><div class="refsect2" lang="en"><a name="id290615"></a><h3><a name="glade-parser-parse-file"></a>glade_parser_parse_file ()</h3><a class="indexterm" name="id290623"></a><pre class="programlisting"><a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a>* glade_parser_parse_file (const gchar *file,
const gchar *domain);</pre><p>
This function parses a Glade XML interface file to a GladeInterface
object (which is libglade's internal representation of the
interface data).
</p><p>
Generally, user code won't need to call this function. Instead, it
should go through the GladeXML interfaces.</p><p>
</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><i class="parameter"><tt>file</tt></i>:</span></td><td> the filename of the glade XML file.
</td></tr><tr><td><span class="term"><i class="parameter"><tt>domain</tt></i>:</span></td><td> the translation domain for the XML file.
</td></tr><tr><td><span class="term"><span class="emphasis"><em>Returns</em></span>:</span></td><td> the GladeInterface structure for the XML file.
</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id327866"></a><h3><a name="glade-parser-parse-buffer"></a>glade_parser_parse_buffer ()</h3><a class="indexterm" name="id327873"></a><pre class="programlisting"><a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a>* glade_parser_parse_buffer (const gchar *buffer,
gint len,
const gchar *domain);</pre><p>
This function is similar to glade_parser_parse_file, except that it
parses XML data from a buffer in memory. This could be used to
embed an interface into the executable, for instance.
</p><p>
Generally, user code won't need to call this function. Instead, it
should go through the GladeXML interfaces.</p><p>
</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><i class="parameter"><tt>buffer</tt></i>:</span></td><td> a buffer in memory containing XML data.
</td></tr><tr><td><span class="term"><i class="parameter"><tt>len</tt></i>:</span></td><td> the length of <i class="parameter"><tt>buffer</tt></i>.
</td></tr><tr><td><span class="term"><i class="parameter"><tt>domain</tt></i>:</span></td><td> the translation domain for the XML file.
</td></tr><tr><td><span class="term"><span class="emphasis"><em>Returns</em></span>:</span></td><td> the GladeInterface structure for the XML buffer.
</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id327957"></a><h3><a name="glade-interface-destroy"></a>glade_interface_destroy ()</h3><a class="indexterm" name="id327964"></a><pre class="programlisting">void glade_interface_destroy (<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a> *interface);</pre><p>
Frees a GladeInterface structure.</p><p>
</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><i class="parameter"><tt>interface</tt></i>:</span></td><td> the GladeInterface structure.
</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id327998"></a><h3><a name="glade-interface-dump"></a>glade_interface_dump ()</h3><a class="indexterm" name="id328007"></a><pre class="programlisting">void glade_interface_dump (<a href="libglade-Libglade-SAX-Parser.html#GladeInterface">GladeInterface</a> *interface,
const gchar *filename);</pre><p>
This function dumps the contents of a GladeInterface into a file as
XML. It is intended mainly as a debugging tool.</p><p>
</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><i class="parameter"><tt>interface</tt></i>:</span></td><td> the GladeInterface
</td></tr><tr><td><span class="term"><i class="parameter"><tt>filename</tt></i>:</span></td><td> the filename to write the interface data to.
</td></tr></tbody></table></div></div></div></div><table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle"><td align="left"><a accesskey="p" href="GladeXML.html"><b><<GladeXML</b></a></td><td align="right"><a accesskey="n" href="libglade-Libglade-Build.html"><b>Libglade Build>></b></a></td></tr></table></body></html>
|