Imported Upstream version 2.3.16
This commit is contained in:
@ -3,12 +3,12 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
<title>gimpconfig-utils</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.71.0">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.72.0">
|
||||
<link rel="start" href="index.html" title="GIMP Config Library Reference Manual">
|
||||
<link rel="up" href="libgimpconfig.html" title="Part I. GIMP Config Library">
|
||||
<link rel="prev" href="libgimpconfig-gimpconfig-path.html" title="gimpconfig-path">
|
||||
<link rel="next" href="libgimpconfig-GimpConfigWriter.html" title="gimpconfigwriter">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.8 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpconfig.html" title="Part I. GIMP Config Library">
|
||||
<link rel="chapter" href="libgimpconfig-hierarchy.html" title="Object Hierarchy">
|
||||
@ -25,16 +25,16 @@
|
||||
<th width="100%" align="center">GIMP Config Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpconfig-GimpConfigWriter.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2501208" class="shortcut">Top</a>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2577467" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2548739" class="shortcut">Description</a></nobr></td></tr>
|
||||
<a href="#id2570123" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpconfig-gimpconfig-utils"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2>
|
||||
<a name="id2501208"></a><span class="refentrytitle">gimpconfig-utils</span>
|
||||
<a name="id2577467"></a><span class="refentrytitle">gimpconfig-utils</span>
|
||||
</h2>
|
||||
<p>gimpconfig-utils — Miscellaneous utility functions for libgimpconfig.</p>
|
||||
</td>
|
||||
@ -46,35 +46,34 @@
|
||||
|
||||
|
||||
|
||||
GList* <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-diff">gimp_config_diff</a> (GObject *a,
|
||||
GObject *b,
|
||||
GParamFlags flags);
|
||||
gboolean <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-sync">gimp_config_sync</a> (GObject *src,
|
||||
GObject *dest,
|
||||
GParamFlags flags);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-reset-properties">gimp_config_reset_properties</a> (GObject *object);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-reset-property">gimp_config_reset_property</a> (GObject *object,
|
||||
const gchar *property_name);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-string-append-escaped">gimp_config_string_append_escaped</a>
|
||||
(GString *string,
|
||||
const gchar *val);
|
||||
GList* <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-diff">gimp_config_diff</a> (GObject *a,
|
||||
GObject *b,
|
||||
GParamFlags flags);
|
||||
gboolean <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-sync">gimp_config_sync</a> (GObject *src,
|
||||
GObject *dest,
|
||||
GParamFlags flags);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-reset-properties">gimp_config_reset_properties</a> (GObject *object);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-reset-property">gimp_config_reset_property</a> (GObject *object,
|
||||
const gchar *property_name);
|
||||
void <a href="libgimpconfig-gimpconfig-utils.html#gimp-config-string-append-escaped">gimp_config_string_append_escaped</a> (GString *string,
|
||||
const gchar *val);
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2548739"></a><h2>Description</h2>
|
||||
<a name="id2570123"></a><h2>Description</h2>
|
||||
<p>
|
||||
Miscellaneous utility functions for libgimpconfig.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2548756"></a><h2>Details</h2>
|
||||
<a name="id2570139"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2548766"></a><h3>
|
||||
<a name="id2570150"></a><h3>
|
||||
<a name="gimp-config-diff"></a>gimp_config_diff ()</h3>
|
||||
<a class="indexterm" name="id2564414"></a><pre class="programlisting">GList* gimp_config_diff (GObject *a,
|
||||
GObject *b,
|
||||
GParamFlags flags);</pre>
|
||||
<a class="indexterm" name="id2573205"></a><pre class="programlisting">GList* gimp_config_diff (GObject *a,
|
||||
GObject *b,
|
||||
GParamFlags flags);</pre>
|
||||
<p>
|
||||
Compares all properties of <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em> that have all <em class="parameter"><code>flags</code></em> set. If
|
||||
<em class="parameter"><code>flags</code></em> is 0, all properties are compared.
|
||||
@ -112,16 +111,16 @@ compared.</p>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
<p>Since GIMP 2.4
|
||||
<p class="since">Since GIMP 2.4
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564563"></a><h3>
|
||||
<a name="id2559312"></a><h3>
|
||||
<a name="gimp-config-sync"></a>gimp_config_sync ()</h3>
|
||||
<a class="indexterm" name="id2578499"></a><pre class="programlisting">gboolean gimp_config_sync (GObject *src,
|
||||
GObject *dest,
|
||||
GParamFlags flags);</pre>
|
||||
<a class="indexterm" name="id2559326"></a><pre class="programlisting">gboolean gimp_config_sync (GObject *src,
|
||||
GObject *dest,
|
||||
GParamFlags flags);</pre>
|
||||
<p>
|
||||
Compares all read- and write-able properties from <em class="parameter"><code>src</code></em> and <em class="parameter"><code>dest</code></em>
|
||||
that have all <em class="parameter"><code>flags</code></em> set. Differing values are then copied from
|
||||
@ -163,14 +162,14 @@ synchronized</p>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
<p>Since GIMP 2.4
|
||||
<p class="since">Since GIMP 2.4
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2578693"></a><h3>
|
||||
<a name="id2559524"></a><h3>
|
||||
<a name="gimp-config-reset-properties"></a>gimp_config_reset_properties ()</h3>
|
||||
<a class="indexterm" name="id2578707"></a><pre class="programlisting">void gimp_config_reset_properties (GObject *object);</pre>
|
||||
<a class="indexterm" name="id2559537"></a><pre class="programlisting">void gimp_config_reset_properties (GObject *object);</pre>
|
||||
<p>
|
||||
Resets all writable properties of <em class="parameter"><code>object</code></em> to the default values as
|
||||
defined in their <span class="type">GParamSpec</span>. Properties marked as "construct-only"
|
||||
@ -189,15 +188,15 @@ If you want to reset a <a href="libgimpconfig-GimpConfig.html#GimpConfig"><span
|
||||
</td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
<p>Since GIMP 2.4
|
||||
<p class="since">Since GIMP 2.4
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2554598"></a><h3>
|
||||
<a name="id2570368"></a><h3>
|
||||
<a name="gimp-config-reset-property"></a>gimp_config_reset_property ()</h3>
|
||||
<a class="indexterm" name="id2554612"></a><pre class="programlisting">void gimp_config_reset_property (GObject *object,
|
||||
const gchar *property_name);</pre>
|
||||
<a class="indexterm" name="id2570382"></a><pre class="programlisting">void gimp_config_reset_property (GObject *object,
|
||||
const gchar *property_name);</pre>
|
||||
<p>
|
||||
Resets the property named <em class="parameter"><code>property_name</code></em> to its default value. The
|
||||
property must be writable and must not be marked as "construct-only".</p>
|
||||
@ -219,16 +218,15 @@ property must be writable and must not be marked as "construct-only".</p>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
<p>Since GIMP 2.4
|
||||
<p class="since">Since GIMP 2.4
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2554701"></a><h3>
|
||||
<a name="id2570474"></a><h3>
|
||||
<a name="gimp-config-string-append-escaped"></a>gimp_config_string_append_escaped ()</h3>
|
||||
<a class="indexterm" name="id2554716"></a><pre class="programlisting">void gimp_config_string_append_escaped
|
||||
(GString *string,
|
||||
const gchar *val);</pre>
|
||||
<a class="indexterm" name="id2570488"></a><pre class="programlisting">void gimp_config_string_append_escaped (GString *string,
|
||||
const gchar *val);</pre>
|
||||
<p>
|
||||
Escapes and quotes <em class="parameter"><code>val</code></em> and appends it to <em class="parameter"><code>string</code></em>. The escape
|
||||
algorithm is different from the one used by <code class="function">g_strescape()</code> since it
|
||||
@ -252,7 +250,7 @@ strings. Only control characters and quotes are being escaped.</p>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
<p>Since GIMP 2.4
|
||||
<p class="since">Since GIMP 2.4
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user