.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "Gnome2::GConf::Client 3pm" .TH Gnome2::GConf::Client 3pm "2017-07-22" "perl v5.26.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Gnome2::GConf::Client \- client module for GConf .SH "DESCRIPTION" .IX Header "DESCRIPTION" Gnome2::GConf::Client is a commodity class based on \f(CW\*(C`GObject\*(C'\fR used to access the default \f(CW\*(C`GConfEngine\*(C'\fR provided by the GConf daemon. It has a cache, finer-grained notification of changes and a default error handling mechanism. .SH "ERROR HANDLING" .IX Header "ERROR HANDLING" In C, each fallible function has a \f(CW\*(C`GError\*(C'\fR optional argument: by setting it to a valid \f(CW\*(C`GError\*(C'\fR structure, the function will fill it in case of error; by passing a \s-1NULL\s0 value, the function will silently fail. .PP In Perl, each fallible method has a boolean \f(CW\*(C`check_error\*(C'\fR argument; by setting this argument to \f(CW\*(C`TRUE\*(C'\fR, the method will croak con failure, otherwise it will silently fail. .PP \&\fB\s-1NOTE\s0\fR: To retain backward compatibility, the default behaviour is to check each error; that is, the \f(CW\*(C`check_error\*(C'\fR argument silently is set to \s-1TRUE.\s0 .PP In order to catch an error, you might use eval as a try...catch equivalent: .PP .Vb 5 \& eval { $s = $client\->get_string($some_key); 1; }; \& if (Glib::Error::matches($@, \*(AqGnome2::GConf::Error\*(Aq, \*(Aqbad\-key\*(Aq)) \& { \& # recover from a bad\-key error. \& } .Ve .PP On failure, if the error is unchecked, the \f(CW\*(C`unreturned_error\*(C'\fR signal will be fired by the Gnome2::GConf::Client object; the \f(CW\*(C`error\*(C'\fR signal will \fBalways\fR be fired, whether the error is checked or not. .PP If you want to let the global error handler function catch just the unchecked error, use the \f(CW\*(C`Gnome2::GConf::Client::set_error_handling\*(C'\fR method, and attach a callback to the \f(CW\*(C`unreturned_error\*(C'\fR signal: .PP .Vb 5 \& $client\->set_error_handling(\*(Aqhandle\-unreturned\*(Aq); \& $client\->signal_connect(unreturned_error => sub { \& my ($client, $error) = @_; \& warn $error; # is a Glib::Error \& }); .Ve .SH "HIERARCHY" .IX Header "HIERARCHY" .Vb 2 \& Glib::Object \& +\-\-\-\-Gnome2::GConf::Client .Ve .SH "METHODS" .IX Header "METHODS" .ie n .SS "$client\->\fBadd_dir\fP ($dir, $preload, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBadd_dir\fP ($dir, \f(CW$preload\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->add_dir ($dir, $preload, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dir\fR (string) .IP "\(bu" 4 \&\f(CW$preload\fR (Gnome2::GConf::ClientPreloadType) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "list = $client\->\fBall_dirs\fP($dir, $check_error=TRUE)" .el .SS "list = \f(CW$client\fP\->\fBall_dirs\fP($dir, \f(CW$check_error\fP=TRUE)" .IX Subsection "list = $client->all_dirs($dir, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dir\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP This method returns an array containing all the directories in a given directory. .ie n .SS "list = $client\->\fBall_entries\fP($dir, $check_error=TRUE)" .el .SS "list = \f(CW$client\fP\->\fBall_entries\fP($dir, \f(CW$check_error\fP=TRUE)" .IX Subsection "list = $client->all_entries($dir, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dir\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP This method returns an array containing all the entries (as Gnome2::GConf::Entry) of a given directory. .ie n .SS "boolean = $client\->\fBget_bool\fP ($key, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBget_bool\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->get_bool ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_bool\fP ($key, $val, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_bool\fP ($key, \f(CW$val\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_bool ($key, $val, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$val\fR (boolean) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Returns \s-1FALSE\s0 on failure. .ie n .SS "changeset = $client\->\fBchange_set_from_current\fP ($check_error=TRUE, $key, ...)" .el .SS "changeset = \f(CW$client\fP\->\fBchange_set_from_current\fP ($check_error=TRUE, \f(CW$key\fP, ...)" .IX Subsection "changeset = $client->change_set_from_current ($check_error=TRUE, $key, ...)" .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .IP "\(bu" 4 \&... (list) list of keys to add to the changeset .PP Create a Gnome2::GConf::ChangeSet from a list of keys inside the GConf database. .ie n .SS "$client\->\fBclear_cache\fP" .el .SS "\f(CW$client\fP\->\fBclear_cache\fP" .IX Subsection "$client->clear_cache" .ie n .SS "boolean = $client\->\fBcommit_change_set\fP ($cs, $remove_committed, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBcommit_change_set\fP ($cs, \f(CW$remove_committed\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->commit_change_set ($cs, $remove_committed, $check_error=TRUE)" .ie n .SS "(boolean, changeset) = $client\->\fBcommit_change_set\fP ($cs, $remove_committed, $check_error=TRUE)" .el .SS "(boolean, changeset) = \f(CW$client\fP\->\fBcommit_change_set\fP ($cs, \f(CW$remove_committed\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "(boolean, changeset) = $client->commit_change_set ($cs, $remove_committed, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$cs\fR (changeset) .IP "\(bu" 4 \&\f(CW$remove_committed\fR (boolean) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Commit a given Gnome2::GConf::ChangeSet. In scalar context, or if \&\fI\f(CI$remove_committed\fI\fR is \s-1FALSE,\s0 return a boolean value; otherwise, return the boolean value and the Gnome2::GConf::ChangeSet \fI\f(CI$cs\fI\fR, pruned of the successfully committed changes. .ie n .SS "value = $client\->\fBget_default_from_schema\fP ($key, $check_error=TRUE)" .el .SS "value = \f(CW$client\fP\->\fBget_default_from_schema\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "value = $client->get_default_from_schema ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .SS "client = Gnome2::GConf::Client\->\fBget_default\fP" .IX Subsection "client = Gnome2::GConf::Client->get_default" .ie n .SS "boolean = $client\->\fBdir_exists\fP ($dir, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBdir_exists\fP ($dir, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->dir_exists ($dir, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dir\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "entry = $client\->\fBget_entry\fP ($key, $locale, $use_schema_default, $check_error=TRUE)" .el .SS "entry = \f(CW$client\fP\->\fBget_entry\fP ($key, \f(CW$locale\fP, \f(CW$use_schema_default\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "entry = $client->get_entry ($key, $locale, $use_schema_default, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$locale\fR (string) .IP "\(bu" 4 \&\f(CW$use_schema_default\fR (boolean) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "list = $client\->\fBerror\fP ($error)" .el .SS "list = \f(CW$client\fP\->\fBerror\fP ($error)" .IX Subsection "list = $client->error ($error)" .IP "\(bu" 4 \&\f(CW$error\fR (scalar) a Glib::Error .PP You should not use this method. This method emits the \*(L"error\*(R" signal. .ie n .SS "$client\->\fBset_error_handling\fP ($mode)" .el .SS "\f(CW$client\fP\->\fBset_error_handling\fP ($mode)" .IX Subsection "$client->set_error_handling ($mode)" .IP "\(bu" 4 \&\f(CW$mode\fR (Gnome2::GConf::ClientErrorHandlingMode) .ie n .SS "double = $client\->\fBget_float\fP ($key, $check_error=TRUE)" .el .SS "double = \f(CW$client\fP\->\fBget_float\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "double = $client->get_float ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_float\fP ($key, $val, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_float\fP ($key, \f(CW$val\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_float ($key, $val, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$val\fR (double) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Returns \s-1FALSE\s0 on failure. .SS "client = Gnome2::GConf::Client\->\fBget_for_engine\fP ($engine)" .IX Subsection "client = Gnome2::GConf::Client->get_for_engine ($engine)" .IP "\(bu" 4 \&\f(CW$engine\fR (engine) .ie n .SS "value = $client\->\fBget\fP ($key, $check_error=TRUE)" .el .SS "value = \f(CW$client\fP\->\fBget\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "value = $client->get ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Fetch the \f(CW\*(C`GConfValue\*(C'\fR bound to the give \fI\f(CI$key\fI\fR. .ie n .SS "$client\->\fBset\fP ($key, $value, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBset\fP ($key, \f(CW$value\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->set ($key, $value, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$value\fR (value) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Set the \f(CW\*(C`GConfValue\*(C'\fR \fI\f(CI$val\fI\fR bound to the given \fI\f(CI$key\fI\fR. .ie n .SS "integer = $client\->\fBget_int\fP ($key, $check_error=TRUE)" .el .SS "integer = \f(CW$client\fP\->\fBget_int\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "integer = $client->get_int ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_int\fP ($key, $val, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_int\fP ($key, \f(CW$val\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_int ($key, $val, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$val\fR (integer) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Returns \s-1FALSE\s0 on failure. .ie n .SS "boolean = $client\->\fBkey_is_writable\fP ($key, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBkey_is_writable\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->key_is_writable ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "$client\->\fBget_list\fP ($key, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBget_list\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->get_list ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_list\fP ($key, $list_type, $list, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_list\fP ($key, \f(CW$list_type\fP, \f(CW$list\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_list ($key, $list_type, $list, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$list_type\fR (string) .IP "\(bu" 4 \&\f(CW$list\fR (scalar) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "integer = $client\->\fBnotify_add\fP ($namespace_section, $func, $data=undef, $check_error=TRUE)" .el .SS "integer = \f(CW$client\fP\->\fBnotify_add\fP ($namespace_section, \f(CW$func\fP, \f(CW$data\fP=undef, \f(CW$check_error\fP=TRUE)" .IX Subsection "integer = $client->notify_add ($namespace_section, $func, $data=undef, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$namespace_section\fR (string) .IP "\(bu" 4 \&\f(CW$func\fR (scalar) .IP "\(bu" 4 \&\f(CW$data\fR (scalar) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "$client\->\fBnotify_remove\fP ($cnxn_id)" .el .SS "\f(CW$client\fP\->\fBnotify_remove\fP ($cnxn_id)" .IX Subsection "$client->notify_remove ($cnxn_id)" .IP "\(bu" 4 \&\f(CW$cnxn_id\fR (integer) .ie n .SS "$client\->\fBget_pair\fP ($key, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBget_pair\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->get_pair ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_pair\fP ($key, $car, $cdr, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_pair\fP ($key, \f(CW$car\fP, \f(CW$cdr\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_pair ($key, $car, $cdr, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$car\fR (value) .IP "\(bu" 4 \&\f(CW$cdr\fR (value) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "$client\->\fBpreload\fP ($dirname, $type, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBpreload\fP ($dirname, \f(CW$type\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->preload ($dirname, $type, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dirname\fR (string) .IP "\(bu" 4 \&\f(CW$type\fR (Gnome2::GConf::ClientPreloadType) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBrecursive_unset\fP ($key, $flags=0, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBrecursive_unset\fP ($key, \f(CW$flags\fP=0, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->recursive_unset ($key, $flags=0, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$flags\fR (Gnome2::GConf::UnsetFlags) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Since: gconf 2.3 .ie n .SS "$client\->\fBremove_dir\fP ($dir, $check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBremove_dir\fP ($dir, \f(CW$check_error\fP=TRUE)" .IX Subsection "$client->remove_dir ($dir, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$dir\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "changeset = $client\->\fBreverse_change_set\fP ($cs, $check_error=TRUE)" .el .SS "changeset = \f(CW$client\fP\->\fBreverse_change_set\fP ($cs, \f(CW$check_error\fP=TRUE)" .IX Subsection "changeset = $client->reverse_change_set ($cs, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$cs\fR (changeset) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Reverse the given Gnome2::GConf::ChangeSet. .ie n .SS "schema = $client\->\fBget_schema\fP ($key)" .el .SS "schema = \f(CW$client\fP\->\fBget_schema\fP ($key)" .IX Subsection "schema = $client->get_schema ($key)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .ie n .SS "boolean = $client\->\fBset_schema\fP ($key, $schema, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_schema\fP ($key, \f(CW$schema\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_schema ($key, $schema, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$schema\fR (schema) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "string = $client\->\fBget_string\fP ($key, $check_error=TRUE)" .el .SS "string = \f(CW$client\fP\->\fBget_string\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "string = $client->get_string ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "boolean = $client\->\fBset_string\fP ($key, $val, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBset_string\fP ($key, \f(CW$val\fP, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->set_string ($key, $val, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$val\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .PP Returns \s-1FALSE\s0 on failure .ie n .SS "$client\->\fBsuggest_sync\fP ($check_error=TRUE)" .el .SS "\f(CW$client\fP\->\fBsuggest_sync\fP ($check_error=TRUE)" .IX Subsection "$client->suggest_sync ($check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "list = $client\->\fBunreturned_error\fP ($error)" .el .SS "list = \f(CW$client\fP\->\fBunreturned_error\fP ($error)" .IX Subsection "list = $client->unreturned_error ($error)" .IP "\(bu" 4 \&\f(CW$error\fR (scalar) a Glib::Error .PP You should not use this method. This method emits the \*(L"unreturned-error\*(R" signal. .ie n .SS "boolean = $client\->\fBunset\fP ($key, $check_error=TRUE)" .el .SS "boolean = \f(CW$client\fP\->\fBunset\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "boolean = $client->unset ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .ie n .SS "list = $client\->\fBvalue_changed\fP ($key, $value)" .el .SS "list = \f(CW$client\fP\->\fBvalue_changed\fP ($key, \f(CW$value\fP)" .IX Subsection "list = $client->value_changed ($key, $value)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$value\fR (value) .PP You should not use this method. This method emits the \*(L"value-changed\*(R" signal. .ie n .SS "value = $client\->\fBget_without_default\fP ($key, $check_error=TRUE)" .el .SS "value = \f(CW$client\fP\->\fBget_without_default\fP ($key, \f(CW$check_error\fP=TRUE)" .IX Subsection "value = $client->get_without_default ($key, $check_error=TRUE)" .IP "\(bu" 4 \&\f(CW$key\fR (string) .IP "\(bu" 4 \&\f(CW$check_error\fR (boolean) .SH "SIGNALS" .IX Header "SIGNALS" .IP "\fBerror\fR (Gnome2::GConf::Client, gpointer)" 4 .IX Item "error (Gnome2::GConf::Client, gpointer)" .PD 0 .IP "\fBunreturned-error\fR (Gnome2::GConf::Client, gpointer)" 4 .IX Item "unreturned-error (Gnome2::GConf::Client, gpointer)" .IP "\fBvalue-changed\fR (Gnome2::GConf::Client, string, gpointer)" 4 .IX Item "value-changed (Gnome2::GConf::Client, string, gpointer)" .PD .SH "ENUMS AND FLAGS" .IX Header "ENUMS AND FLAGS" .SS "enum Gnome2::GConf::ClientErrorHandlingMode" .IX Subsection "enum Gnome2::GConf::ClientErrorHandlingMode" .IP "\(bu" 4 \&'handle\-none' / '\s-1GCONF_CLIENT_HANDLE_NONE\s0' .IP "\(bu" 4 \&'handle\-unreturned' / '\s-1GCONF_CLIENT_HANDLE_UNRETURNED\s0' .IP "\(bu" 4 \&'handle\-all' / '\s-1GCONF_CLIENT_HANDLE_ALL\s0' .SS "enum Gnome2::GConf::ClientPreloadType" .IX Subsection "enum Gnome2::GConf::ClientPreloadType" .IP "\(bu" 4 \&'preload\-none' / '\s-1GCONF_CLIENT_PRELOAD_NONE\s0' .IP "\(bu" 4 \&'preload\-onelevel' / '\s-1GCONF_CLIENT_PRELOAD_ONELEVEL\s0' .IP "\(bu" 4 \&'preload\-recursive' / '\s-1GCONF_CLIENT_PRELOAD_RECURSIVE\s0' .SS "flags Gnome2::GConf::UnsetFlags" .IX Subsection "flags Gnome2::GConf::UnsetFlags" .IP "\(bu" 4 \&'names' / '\s-1GCONF_UNSET_INCLUDING_SCHEMA_NAMES\s0' .SH "SEE ALSO" .IX Header "SEE ALSO" Gnome2::GConf, Glib::Object .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (C) 2003\-2006 by the gtk2\-perl team. .PP This software is licensed under the \s-1LGPL.\s0 See Gnome2::GConf for a full notice.