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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#include <glib.h>
#include <glib-object.h>
#include <libindicator/indicator.h>
#include <libindicator/indicator-object.h>
#include <libindicator/indicator-service-manager.h>
#include "dbus-shared.h"
#define INDICATOR_CUSTOM_TYPE (indicator_custom_get_type ())
#define INDICATOR_CUSTOM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), INDICATOR_CUSTOM_TYPE, IndicatorCustom))
#define INDICATOR_CUSTOM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), INDICATOR_CUSTOM_TYPE, IndicatorCustomClass))
#define IS_INDICATOR_CUSTOM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INDICATOR_CUSTOM_TYPE))
#define IS_INDICATOR_CUSTOM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INDICATOR_CUSTOM_TYPE))
#define INDICATOR_CUSTOM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), INDICATOR_CUSTOM_TYPE, IndicatorCustomClass))
typedef struct _IndicatorCustom IndicatorCustom;
typedef struct _IndicatorCustomClass IndicatorCustomClass;
struct _IndicatorCustomClass {
IndicatorObjectClass parent_class;
};
struct _IndicatorCustom {
IndicatorObject parent;
};
GType indicator_custom_get_type (void);
INDICATOR_SET_VERSION
INDICATOR_SET_TYPE(INDICATOR_CUSTOM_TYPE)
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
typedef struct _IndicatorCustomPrivate IndicatorCustomPrivate;
struct _IndicatorCustomPrivate
{
IndicatorServiceManager * sm;
};
#define INDICATOR_CUSTOM_GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), INDICATOR_CUSTOM_TYPE, IndicatorCustomPrivate))
static void indicator_custom_class_init (IndicatorCustomClass *klass);
static void indicator_custom_init (IndicatorCustom *self);
static void indicator_custom_dispose (GObject *object);
static void indicator_custom_finalize (GObject *object);
GList * get_entries (IndicatorObject * io);
void connected (IndicatorServiceManager * sm, gboolean connected, IndicatorCustom * custom);
G_DEFINE_TYPE (IndicatorCustom, indicator_custom, INDICATOR_OBJECT_TYPE);
static void
indicator_custom_class_init (IndicatorCustomClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
g_type_class_add_private (klass, sizeof (IndicatorCustomPrivate));
object_class->dispose = indicator_custom_dispose;
object_class->finalize = indicator_custom_finalize;
IndicatorObjectClass * io_class = INDICATOR_OBJECT_CLASS(klass);
io_class->get_entries = get_entries;
return;
}
static void
indicator_custom_init (IndicatorCustom *self)
{
IndicatorCustomPrivate * priv = INDICATOR_CUSTOM_GET_PRIVATE(self);
priv->sm = indicator_service_manager_new(INDICATOR_CUSTOM_DBUS_ADDR);
g_signal_connect(G_OBJECT(priv->sm), INDICATOR_SERVICE_MANAGER_SIGNAL_CONNECTION_CHANGE, G_CALLBACK(connected), self);
return;
}
static void
indicator_custom_dispose (GObject *object)
{
IndicatorCustomPrivate * priv = INDICATOR_CUSTOM_GET_PRIVATE(object);
if (priv->sm != NULL) {
g_object_unref(priv->sm);
priv->sm = NULL;
}
G_OBJECT_CLASS (indicator_custom_parent_class)->dispose (object);
return;
}
static void
indicator_custom_finalize (GObject *object)
{
G_OBJECT_CLASS (indicator_custom_parent_class)->finalize (object);
return;
}
void
connected (IndicatorServiceManager * sm, gboolean connected, IndicatorCustom * custom)
{
return;
}
GList *
get_entries (IndicatorObject * io)
{
return NULL;
}
|