Top |
gboolean | gimp_config_serialize () |
gboolean | gimp_config_serialize_to_file () |
gboolean | gimp_config_serialize_to_gfile () |
gboolean | gimp_config_serialize_to_stream () |
gboolean | gimp_config_serialize_to_fd () |
gchar * | gimp_config_serialize_to_string () |
gboolean | gimp_config_deserialize () |
gboolean | gimp_config_deserialize_file () |
gboolean | gimp_config_deserialize_gfile () |
gboolean | gimp_config_deserialize_stream () |
gboolean | gimp_config_deserialize_string () |
gboolean | gimp_config_deserialize_return () |
gpointer | gimp_config_duplicate () |
gboolean | gimp_config_is_equal_to () |
void | gimp_config_reset () |
gboolean | gimp_config_copy () |
gboolean gimp_config_serialize (GimpConfig *config
,GimpConfigWriter *writer
,gpointer data
);
Serialize the GimpConfig object.
config |
a GObject that implements the GimpConfigInterface. |
|
writer |
the GimpConfigWriter to use. |
|
data |
client data |
Since: 2.8
gboolean gimp_config_serialize_to_file (GimpConfig *config
,const gchar *filename
,const gchar *header
,const gchar *footer
,gpointer data
,GError **error
);
Serializes the object properties of config
to the file specified
by filename
. If a file with that name already exists, it is
overwritten. Basically this function opens filename
for you and
calls the serialize function of the config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
filename |
the name of the file to write the configuration to. |
|
header |
optional file header (must be ASCII only) |
|
footer |
optional file footer (must be ASCII only) |
|
data |
user data passed to the serialize implementation. |
|
error |
return location for a possible error |
Since: 2.4
gboolean gimp_config_serialize_to_gfile (GimpConfig *config
,GFile *file
,const gchar *header
,const gchar *footer
,gpointer data
,GError **error
);
Serializes the object properties of config
to the file specified
by file
. If a file with that name already exists, it is
overwritten. Basically this function opens file
for you and calls
the serialize function of the config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
file |
the GFile to write the configuration to. |
|
header |
optional file header (must be ASCII only) |
|
footer |
optional file footer (must be ASCII only) |
|
data |
user data passed to the serialize implementation. |
|
error |
return location for a possible error |
Since: 2.10
gboolean gimp_config_serialize_to_stream (GimpConfig *config
,GOutputStream *output
,const gchar *header
,const gchar *footer
,gpointer data
,GError **error
);
Serializes the object properties of config
to the stream specified
by output
.
config |
a GObject that implements the GimpConfigInterface. |
|
output |
the GOutputStream to write the configuration to. |
|
header |
optional file header (must be ASCII only) |
|
footer |
optional file footer (must be ASCII only) |
|
data |
user data passed to the serialize implementation. |
|
error |
return location for a possible error |
Since: 2.10
gboolean gimp_config_serialize_to_fd (GimpConfig *config
,gint fd
,gpointer data
);
Serializes the object properties of config
to the given file
descriptor.
config |
a GObject that implements the GimpConfigInterface. |
|
fd |
a file descriptor, opened for writing |
|
data |
user data passed to the serialize implementation. |
Since: 2.4
gchar * gimp_config_serialize_to_string (GimpConfig *config
,gpointer data
);
Serializes the object properties of config
to a string.
config |
a GObject that implements the GimpConfigInterface. |
|
data |
user data passed to the serialize implementation. |
Since: 2.4
gboolean gimp_config_deserialize (GimpConfig *config
,GScanner *scanner
,gint nest_level
,gpointer data
);
Deserialize the GimpConfig object.
config |
a GObject that implements the GimpConfigInterface. |
|
scanner |
the GScanner to use. |
|
nest_level |
the nest level. |
|
data |
client data. |
Since: 2.8
gboolean gimp_config_deserialize_file (GimpConfig *config
,const gchar *filename
,gpointer data
,GError **error
);
Opens the file specified by filename
, reads configuration data
from it and configures config
accordingly. Basically this function
creates a properly configured GScanner for you and calls the
deserialize function of the config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
filename |
the name of the file to read configuration from. |
|
data |
user data passed to the deserialize implementation. |
|
error |
return location for a possible error |
Since: 2.4
gboolean gimp_config_deserialize_gfile (GimpConfig *config
,GFile *file
,gpointer data
,GError **error
);
Opens the file specified by file
, reads configuration data from it
and configures config
accordingly. Basically this function creates
a properly configured GScanner for you and calls the deserialize
function of the config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
file |
the GFile to read configuration from. |
|
data |
user data passed to the deserialize implementation. |
|
error |
return location for a possible error |
Since: 2.10
gboolean gimp_config_deserialize_stream (GimpConfig *config
,GInputStream *input
,gpointer data
,GError **error
);
Reads configuration data from input
and configures config
accordingly. Basically this function creates a properly configured
GScanner for you and calls the deserialize function of the
config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
input |
the GInputStream to read configuration from. |
|
data |
user data passed to the deserialize implementation. |
|
error |
return location for a possible error |
Since: 2.10
gboolean gimp_config_deserialize_string (GimpConfig *config
,const gchar *text
,gint text_len
,gpointer data
,GError **error
);
Configures config
from text
. Basically this function creates a
properly configured GScanner for you and calls the deserialize
function of the config
's GimpConfigInterface.
config |
a GObject that implements the GimpConfigInterface. |
|
text |
string to deserialize (in UTF-8 encoding) |
|
text_len |
length of |
|
data |
client data |
|
error |
return location for a possible error |
Since: 2.4
gboolean gimp_config_deserialize_return (GScanner *scanner
,GTokenType expected_token
,gint nest_level
);
Since: 2.4
gpointer
gimp_config_duplicate (GimpConfig *config
);
Creates a copy of the passed object by copying all object properties. The default implementation of the GimpConfigInterface only works for objects that are completely defined by their properties.
Since: 2.4
gboolean gimp_config_is_equal_to (GimpConfig *a
,GimpConfig *b
);
Compares the two objects. The default implementation of the GimpConfigInterface compares the object properties and thus only works for objects that are completely defined by their properties.
a |
a GObject that implements the GimpConfigInterface. |
|
b |
another GObject of the same type as |
Since: 2.4
void
gimp_config_reset (GimpConfig *config
);
Resets the object to its default state. The default implementation of the GimpConfigInterface only works for objects that are completely defined by their properties.
Since: 2.4
gboolean gimp_config_copy (GimpConfig *src
,GimpConfig *dest
,GParamFlags flags
);
Compares all read- and write-able properties from src
and dest
that have all flags
set. Differing values are then copied from
src
to dest
. If flags
is 0, all differing read/write properties.
Properties marked as "construct-only" are not touched.
src |
a GObject that implements the GimpConfigInterface. |
|
dest |
another GObject of the same type as |
|
flags |
a mask of GParamFlags |
Since: 2.6