]> git.0d.be Git - empathy.git/blob - libempathy/gossip-conf.h
[darcs-to-svn @ Handling /say msg and remove useless debug messages]
[empathy.git] / libempathy / gossip-conf.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2006 Imendio AB
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GOSSIP_CONF_H__
22 #define __GOSSIP_CONF_H__
23
24 #include <glib-object.h>
25
26 G_BEGIN_DECLS
27
28 #define GOSSIP_TYPE_CONF         (gossip_conf_get_type ())
29 #define GOSSIP_CONF(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GOSSIP_TYPE_CONF, GossipConf))
30 #define GOSSIP_CONF_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), GOSSIP_TYPE_CONF, GossipConfClass))
31 #define GOSSIP_IS_CONF(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOSSIP_TYPE_CONF))
32 #define GOSSIP_IS_CONF_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GOSSIP_TYPE_CONF))
33 #define GOSSIP_CONF_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GOSSIP_TYPE_CONF, GossipConfClass))
34
35 typedef struct _GossipConf      GossipConf;
36 typedef struct _GossipConfClass GossipConfClass;
37
38 struct _GossipConf  {
39         GObject parent;
40 };
41
42 struct _GossipConfClass {
43         GObjectClass parent_class;
44 };
45
46 typedef void (*GossipConfNotifyFunc) (GossipConf  *conf, 
47                                       const gchar *key,
48                                       gpointer     user_data);
49
50 GType       gossip_conf_get_type        (void) G_GNUC_CONST;
51 GossipConf *gossip_conf_get             (void);
52 void        gossip_conf_shutdown        (void);
53 guint       gossip_conf_notify_add      (GossipConf            *conf,
54                                          const gchar           *key,
55                                          GossipConfNotifyFunc   func,
56                                          gpointer               data);
57 gboolean    gossip_conf_notify_remove   (GossipConf            *conf,
58                                          guint                  id);
59 gboolean    gossip_conf_set_int         (GossipConf            *conf,
60                                          const gchar           *key,
61                                          gint                   value);
62 gboolean    gossip_conf_get_int         (GossipConf            *conf,
63                                          const gchar           *key,
64                                          gint                  *value);
65 gboolean    gossip_conf_set_bool        (GossipConf            *conf,
66                                          const gchar           *key,
67                                          gboolean               value);
68 gboolean    gossip_conf_get_bool        (GossipConf            *conf,
69                                          const gchar           *key,
70                                          gboolean              *value);
71 gboolean    gossip_conf_set_string      (GossipConf            *conf,
72                                          const gchar           *key,
73                                          const gchar           *value);
74 gboolean    gossip_conf_get_string      (GossipConf            *conf,
75                                          const gchar           *key,
76                                          gchar                **value);
77 gboolean    gossip_conf_set_string_list (GossipConf            *conf,
78                                          const gchar           *key,
79                                          GSList                *value);
80 gboolean    gossip_conf_get_string_list (GossipConf            *conf,
81                                          const gchar           *key,
82                                          GSList              **value);
83
84 G_END_DECLS
85
86 #endif /* __GOSSIP_CONF_H__ */
87