/usr/lib/perl5/Gnome2/GConf/Entry.pod is in libgnome2-gconf-perl 1.044-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | =head1 NAME
Gnome2::GConf::Entry - Container Objects for key/value pairs
=cut
=for position SYNOPSIS
=head1 SYNOPSIS
$client = Gnome2::GConf::Client->get_default;
$client->notify_add($config_key, sub {
my ($client, $cnxn_id, $entry) = @_;
return unless $entry;
unless ($entry->{value})
{
$label->set_text('');
}
elsif ($entry->{value}->{type} eq 'string')
{
$label->set_text($entry->{value}->{value});
}
else
{
$label->set_text('!type error!');
}
});
=cut
=for position DESCRIPTION
=head1 DESCRIPTION
In C, C<GConfEntry> is a opaque container for the key string and for the
C<GConfValue> bound to that key. In perl, it's a blessed reference
to L<Gnome2::GConf::Entry>, holding these keys:
=over
=item B<key>
The key that is being monitored.
=item B<value>
An hashref, representing a C<GConfValue> (see L<Gnome2::GConf::Value>), which
contains the type and the value of the key; it may be undef if the key has been
unset. Every method of the C API is replaced by standard perl functions that
operate on hashrefs.
=item B<is_default>
Whether the L<Gnome2::GConf::Value> held by this entry is the default value
provided by the schema attached to the key.
=item B<is_writable>
Whether the key is stored in a writable source inside the GConf database.
=item B<schema_name>
The name of the schema key bound to this key.
=back
=cut
=for object Gnome2::GConf::Entry Container Objects for key/value pairs
=cut
=for see_also
=head1 SEE ALSO
L<Gnome2::GConf>(3pm), L<Gnome2::GConf::Value>(3pm).
=cut
=head1 SEE ALSO
L<Gnome2::GConf>
=cut
=head1 COPYRIGHT
Copyright (C) 2003-2006 by the gtk2-perl team.
This software is licensed under the LGPL. See L<Gnome2::GConf> for a full
notice.
=cut
|