This file is indexed.

/usr/include/gnome-panel-4.0/libpanel-applet/panel-applet-gconf.h is in libpanel-applet-4-dev 3.8.1-7+b1.

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
/*
 * panel-applet-gconf.h: panel applet preferences handling.
 *
 * Copyright (C) 2001-2003 Sun Microsystems, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *     Mark McLoughlin <mark@skynet.ie>
 */

#ifndef __PANEL_APPLET_GCONF_H__
#define __PANEL_APPLET_GCONF_H__

#include <glib.h>
#include <gconf/gconf-value.h>

#include "panel-applet.h"

G_BEGIN_DECLS

gchar       *panel_applet_gconf_get_full_key (PanelApplet     *applet,
					      const gchar     *key);

void         panel_applet_gconf_set_bool     (PanelApplet     *applet,
					      const gchar     *key,
					      gboolean         the_bool,
					      GError         **error);
void         panel_applet_gconf_set_int      (PanelApplet     *applet,
					      const gchar     *key,
					      gint             the_int,
					      GError         **error);
void         panel_applet_gconf_set_string   (PanelApplet     *applet,
					      const gchar     *key,
					      const gchar     *the_string,
					      GError         **error);
void         panel_applet_gconf_set_float    (PanelApplet     *applet,
					      const gchar     *key,
					      gdouble          the_float,
					      GError         **error);
void         panel_applet_gconf_set_list     (PanelApplet     *applet,
					      const gchar     *key,
					      GConfValueType   list_type,
					      GSList          *list,
					      GError         **error);
void         panel_applet_gconf_set_value    (PanelApplet     *applet,
					      const gchar     *key,
					      GConfValue      *value,
					      GError         **error);

gboolean     panel_applet_gconf_get_bool     (PanelApplet     *applet,
					      const gchar     *key,
					      GError         **error);
gint         panel_applet_gconf_get_int      (PanelApplet     *applet,
					      const gchar     *key,
					      GError         **error);
gchar       *panel_applet_gconf_get_string   (PanelApplet     *applet,
					      const gchar     *key,
					      GError         **error);
gdouble      panel_applet_gconf_get_float    (PanelApplet     *applet,
					      const gchar     *key,
					      GError         **error);
GSList      *panel_applet_gconf_get_list     (PanelApplet     *applet,
					      const gchar     *key,
					      GConfValueType   list_type,
					      GError         **error);
GConfValue  *panel_applet_gconf_get_value    (PanelApplet     *applet,
					      const gchar     *key,
					      GError         **error);

G_END_DECLS

#endif /* __PANEL_APPLET_GCONF_H__ */