From 3c57dd931145d43f2b0aef96c4d178135956bf91 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 05:13:10 +0200 Subject: Adding upstream version 2.10.36. Signed-off-by: Daniel Baumann --- .../html/libgimpconfig-GimpConfig-serialize.html | 296 +++++++++++++++++++++ 1 file changed, 296 insertions(+) create mode 100644 devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html (limited to 'devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html') diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html new file mode 100644 index 0000000..21e1cc4 --- /dev/null +++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html @@ -0,0 +1,296 @@ + + + + +GimpConfig-serialize: GIMP Config Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

GimpConfig-serialize

+

GimpConfig-serialize — Serializing for libgimpconfig.

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+gboolean + +gimp_config_serialize_properties () +
+gboolean + +gimp_config_serialize_changed_properties () +
+gboolean + +gimp_config_serialize_property () +
+gboolean + +gimp_config_serialize_property_by_name () +
+gboolean + +gimp_config_serialize_value () +
+
+
+

Description

+

Serializing interface for libgimpconfig.

+
+
+

Functions

+
+

gimp_config_serialize_properties ()

+
gboolean
+gimp_config_serialize_properties (GimpConfig *config,
+                                  GimpConfigWriter *writer);
+

This function writes all object properties to the writer +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

config

a GimpConfig.

 

writer

a GimpConfigWriter.

 
+
+
+

Returns

+

TRUE if serialization succeeded, FALSE otherwise

+
+

Since: 2.4

+
+
+
+

gimp_config_serialize_changed_properties ()

+
gboolean
+gimp_config_serialize_changed_properties
+                               (GimpConfig *config,
+                                GimpConfigWriter *writer);
+

This function writes all object properties that have been changed from +their default values to the writer +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

config

a GimpConfig.

 

writer

a GimpConfigWriter.

 
+
+
+

Returns

+

TRUE if serialization succeeded, FALSE otherwise

+
+

Since: 2.4

+
+
+
+

gimp_config_serialize_property ()

+
gboolean
+gimp_config_serialize_property (GimpConfig *config,
+                                GParamSpec *param_spec,
+                                GimpConfigWriter *writer);
+

This function serializes a single object property to the writer +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

config

a GimpConfig.

 

param_spec

a GParamSpec.

 

writer

a GimpConfigWriter.

 
+
+
+

Returns

+

TRUE if serialization succeeded, FALSE otherwise

+
+

Since: 2.4

+
+
+
+

gimp_config_serialize_property_by_name ()

+
gboolean
+gimp_config_serialize_property_by_name
+                               (GimpConfig *config,
+                                const gchar *prop_name,
+                                GimpConfigWriter *writer);
+

This function serializes a single object property to the writer +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

config

a GimpConfig.

 

prop_name

the property's name.

 

writer

a GimpConfigWriter.

 
+
+
+

Returns

+

TRUE if serialization succeeded, FALSE otherwise

+
+

Since: 2.6

+
+
+
+

gimp_config_serialize_value ()

+
gboolean
+gimp_config_serialize_value (const GValue *value,
+                             GString *str,
+                             gboolean escaped);
+

This utility function appends a string representation of GValue to str +.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

value

a GValue.

 

str

a GString.

 

escaped

whether to escape string values.

 
+
+
+

Returns

+

TRUE if serialization succeeded, FALSE otherwise.

+
+

Since: 2.4

+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3