~ubuntu-branches/ubuntu/precise/empathy/precise

« back to all changes in this revision

Viewing changes to libempathy/empathy-conf.h

Tags: upstream-0.21.90
ImportĀ upstreamĀ versionĀ 0.21.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 __EMPATHY_CONF_H__
22
 
#define __EMPATHY_CONF_H__
23
 
 
24
 
#include <glib-object.h>
25
 
 
26
 
G_BEGIN_DECLS
27
 
 
28
 
#define EMPATHY_TYPE_CONF         (empathy_conf_get_type ())
29
 
#define EMPATHY_CONF(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONF, EmpathyConf))
30
 
#define EMPATHY_CONF_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_CONF, EmpathyConfClass))
31
 
#define EMPATHY_IS_CONF(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONF))
32
 
#define EMPATHY_IS_CONF_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CONF))
33
 
#define EMPATHY_CONF_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CONF, EmpathyConfClass))
34
 
 
35
 
typedef struct _EmpathyConf      EmpathyConf;
36
 
typedef struct _EmpathyConfClass EmpathyConfClass;
37
 
 
38
 
struct _EmpathyConf  {
39
 
        GObject parent;
40
 
};
41
 
 
42
 
struct _EmpathyConfClass {
43
 
        GObjectClass parent_class;
44
 
};
45
 
 
46
 
typedef void (*EmpathyConfNotifyFunc) (EmpathyConf  *conf, 
47
 
                                      const gchar *key,
48
 
                                      gpointer     user_data);
49
 
 
50
 
GType       empathy_conf_get_type        (void) G_GNUC_CONST;
51
 
EmpathyConf *empathy_conf_get             (void);
52
 
void        empathy_conf_shutdown        (void);
53
 
guint       empathy_conf_notify_add      (EmpathyConf            *conf,
54
 
                                         const gchar           *key,
55
 
                                         EmpathyConfNotifyFunc   func,
56
 
                                         gpointer               data);
57
 
gboolean    empathy_conf_notify_remove   (EmpathyConf            *conf,
58
 
                                         guint                  id);
59
 
gboolean    empathy_conf_set_int         (EmpathyConf            *conf,
60
 
                                         const gchar           *key,
61
 
                                         gint                   value);
62
 
gboolean    empathy_conf_get_int         (EmpathyConf            *conf,
63
 
                                         const gchar           *key,
64
 
                                         gint                  *value);
65
 
gboolean    empathy_conf_set_bool        (EmpathyConf            *conf,
66
 
                                         const gchar           *key,
67
 
                                         gboolean               value);
68
 
gboolean    empathy_conf_get_bool        (EmpathyConf            *conf,
69
 
                                         const gchar           *key,
70
 
                                         gboolean              *value);
71
 
gboolean    empathy_conf_set_string      (EmpathyConf            *conf,
72
 
                                         const gchar           *key,
73
 
                                         const gchar           *value);
74
 
gboolean    empathy_conf_get_string      (EmpathyConf            *conf,
75
 
                                         const gchar           *key,
76
 
                                         gchar                **value);
77
 
gboolean    empathy_conf_set_string_list (EmpathyConf            *conf,
78
 
                                         const gchar           *key,
79
 
                                         GSList                *value);
80
 
gboolean    empathy_conf_get_string_list (EmpathyConf            *conf,
81
 
                                         const gchar           *key,
82
 
                                         GSList              **value);
83
 
 
84
 
G_END_DECLS
85
 
 
86
 
#endif /* __EMPATHY_CONF_H__ */
87