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
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "libcustomindicator/custom-indicator.h"
#include "libcustomindicator/custom-indicator-enum-types.h"
typedef struct _CustomIndicatorPrivate CustomIndicatorPrivate;
struct _CustomIndicatorPrivate {
int placeholder;
};
enum properties {
PROP_0,
PROP_ID,
PROP_CATEGORY,
PROP_STATUS,
PROP_ICON_NAME,
PROP_ATTENTION_ICON_NAME,
PROP_MENU
};
#define CUSTOM_INDICATOR_GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), CUSTOM_INDICATOR_TYPE, CustomIndicatorPrivate))
static void custom_indicator_class_init (CustomIndicatorClass *klass);
static void custom_indicator_init (CustomIndicator *self);
static void custom_indicator_dispose (GObject *object);
static void custom_indicator_finalize (GObject *object);
static void custom_indicator_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec);
static void custom_indicator_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec);
G_DEFINE_TYPE (CustomIndicator, custom_indicator, G_TYPE_OBJECT);
static void
custom_indicator_class_init (CustomIndicatorClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
g_type_class_add_private (klass, sizeof (CustomIndicatorPrivate));
object_class->dispose = custom_indicator_dispose;
object_class->finalize = custom_indicator_finalize;
object_class->set_property = custom_indicator_set_property;
object_class->get_property = custom_indicator_get_property;
g_object_class_install_property(object_class, PROP_STATUS,
g_param_spec_enum("status",
"Indicator Status",
"Whether the indicator is shown or requests attention.",
CUSTOM_INDICATOR_TYPE_CUSTOM_INDICATOR_STATUS_T,
CUSTOM_INDICATOR_STATUS_OFF,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
return;
}
static void
custom_indicator_init (CustomIndicator *self)
{
return;
}
static void
custom_indicator_dispose (GObject *object)
{
G_OBJECT_CLASS (custom_indicator_parent_class)->dispose (object);
return;
}
static void
custom_indicator_finalize (GObject *object)
{
G_OBJECT_CLASS (custom_indicator_parent_class)->finalize (object);
return;
}
static void
custom_indicator_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
{
CustomIndicator * self = CUSTOM_INDICATOR(object);
g_return_if_fail(self != NULL);
CustomIndicatorPrivate * priv = CUSTOM_INDICATOR_GET_PRIVATE(self);
g_return_if_fail(priv != NULL);
return;
}
static void
custom_indicator_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
{
return;
}
|