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
|
/* GConf
* Copyright (C) 1999, 2000 Red Hat 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, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef GCONF_GCONF_LISTENERS_H
#define GCONF_GCONF_LISTENERS_H
#include <glib.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* The listeners object is used to store listeners who want notification
* of changes in a namespace section.
*
* It's shared between gconfd and the GtkObject convenience wrapper.
* It's also a public API.
*/
typedef struct _GConfListeners GConfListeners;
typedef void (*GConfListenersCallback)(GConfListeners* listeners,
const gchar* all_above_key,
guint cnxn_id,
gpointer listener_data,
gpointer user_data);
typedef void (*GConfListenersForeach) (const gchar* location,
guint cnxn_id,
gpointer listener_data,
gpointer user_data);
typedef gboolean (*GConfListenersPredicate) (const gchar* location,
guint cnxn_id,
gpointer listener_data,
gpointer user_data);
GConfListeners* gconf_listeners_new (void);
void gconf_listeners_free (GConfListeners* listeners);
guint gconf_listeners_add (GConfListeners* listeners,
const gchar* listen_point,
gpointer listener_data,
/* can be NULL */
GFreeFunc destroy_notify);
/* Safe on nonexistent listeners, for robustness against broken
* clients
*/
void gconf_listeners_remove (GConfListeners *listeners,
guint cnxn_id);
void gconf_listeners_notify (GConfListeners *listeners,
const gchar *all_above,
GConfListenersCallback callback,
gpointer user_data);
guint gconf_listeners_count (GConfListeners *listeners);
void gconf_listeners_foreach (GConfListeners *listeners,
GConfListenersForeach callback,
gpointer user_data);
gboolean gconf_listeners_get_data (GConfListeners *listeners,
guint cnxn_id,
gpointer *listener_data_p,
const gchar **location_p);
void gconf_listeners_remove_if (GConfListeners *listeners,
GConfListenersPredicate predicate,
gpointer user_data);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
|