aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-config-listener.h
blob: b83565d85f2cfded022e8d2535aa2e4e270b1546 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Configuration component listener
 *
 * Author:
 *   Rodrigo Moya <rodrigo@ximian.com>
 *
 * Copyright 2002, Ximian, Inc.
 */

#ifndef __E_CONFIG_LISTENER_H__
#define __E_CONFIG_LISTENER_H__

#include <gtk/gtkobject.h>
#include <libgnome/gnome-defs.h>
#include <bonobo-conf/bonobo-config-database.h>

BEGIN_GNOME_DECLS

#define E_CONFIG_LISTENER_TYPE        (e_config_listener_get_type ())
#define E_CONFIG_LISTENER(o)          (GTK_CHECK_CAST ((o), E_CONFIG_LISTENER_TYPE, EConfigListener))
#define E_CONFIG_LISTENER_CLASS(k)    (GTK_CHECK_CLASS_CAST((k), E_CONFIG_LISTENER_TYPE, EConfigListenerClass))
#define E_IS_CONFIG_LISTENER(o)       (GTK_CHECK_TYPE ((o), E_CONFIG_LISTENER_TYPE))
#define E_IS_CONFIG_LISTENER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CONFIG_LISTENER_TYPE))

typedef struct _EConfigListenerPrivate EConfigListenerPrivate;

typedef struct {
    GtkObject object;
    EConfigListenerPrivate *priv;
} EConfigListener;

typedef struct {
    GtkObjectClass parent_class;
} EConfigListenerClass;

GtkType               e_config_listener_get_type (void);
EConfigListener      *e_config_listener_new (void);

char                 *e_config_listener_get_string_with_default (EConfigListener *cl,
                                 const char *key,
                                 const char *def,
                                 gboolean *used_default);
gboolean              e_config_listener_get_boolean_with_default (EConfigListener *cl,
                                  const char *key,
                                  gboolean def,
                                  gboolean *used_default);

Bonobo_ConfigDatabase e_config_listener_get_db (EConfigListener *cl);

END_GNOME_DECLS

#endif