Next: Gnome2::GConf::Engine | Previous: Gnome2::GConf::ChangeSet | [Gtk2-Perl - Table of Contents] | [Gtk2-Perl - Index] |
Gnome2::GConf::Client
Gnome2::GConf::Client is a commodity class based on GObject
used to access
the default GConfEngine
provided by the GConf daemon. It has a cache,
finer-grained notification of changes and a default error handling mechanism.
In C, each fallible function has a GError
optional argument: by setting it
to a valid GError
structure, the function will fill it in case of error; by
passing a NULL value, the function will silently fail.
In Perl, each fallible method has a boolean check_error
argument; by setting
this argument to TRUE
, the method will croak con failure, otherwise it will
silently fail.
NOTE: To retain backward compatibility, the default behaviour is to check
each error; that is, the check_error
argument silently is set to TRUE.
In order to catch an error, you might use eval as a try...catch equivalent:
eval { $s = $client->get_string($some_key); 1; }; if (Glib::Error::matches($@, 'Gnome2::GConf::Error', 'bad-key')) { # recover from a bad-key error. }
On failure, if the error is unchecked, the unreturned_error
signal will be
fired by the Gnome2::GConf::Client object; the error
signal will always
be fired, whether the error is checked or not.
If you want to let the global error handler function catch just the unchecked
error, use the Gnome2::GConf::Client::set_error_handling
method, and attach
a callback to the unreturned_error
signal:
$client->set_error_handling('handle-unreturned'); $client->signal_connect(unreturned_error => sub { my ($client, $error) = @_; warn $error; # is a Glib::Error });
Glib::Object +----Gnome2::GConf::Client
This method returns an array containing all the directories in a given directory.
This method returns an array containing all the entries (as Gnome2::GConf::Entry) of a given directory.
Returns FALSE on failure.
Create a Gnome2::GConf::ChangeSet from a list of keys inside the GConf database.
Commit a given Gnome2::GConf::ChangeSet. In scalar context, or if $remove_committed is FALSE, return a boolean value; otherwise, return the boolean value and the Gnome2::GConf::ChangeSet $cs, pruned of the successfully committed changes.
You should not use this method. This method emits the "error" signal.
Returns FALSE on failure.
Fetch the GConfValue
bound to the give $key.
Set the GConfValue
$val bound to the given $key.
Returns FALSE on failure.
Since: gconf 2.3
Reverse the given Gnome2::GConf::ChangeSet.
Returns FALSE on failure
You should not use this method. This method emits the "unreturned-error" signal.
You should not use this method. This method emits the "value-changed" signal.
'handle-none' / 'GCONF_CLIENT_HANDLE_NONE'
'handle-unreturned' / 'GCONF_CLIENT_HANDLE_UNRETURNED'
'handle-all' / 'GCONF_CLIENT_HANDLE_ALL'
'preload-none' / 'GCONF_CLIENT_PRELOAD_NONE'
'preload-onelevel' / 'GCONF_CLIENT_PRELOAD_ONELEVEL'
'preload-recursive' / 'GCONF_CLIENT_PRELOAD_RECURSIVE'
Copyright (C) 2003-2006 by the gtk2-perl team.
This software is licensed under the LGPL. See Gnome2::GConf for a full notice.