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
|
/* * Copyright (C) 2009 Collabora Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
*/
#include <config.h>
#include <string.h>
#include <libnotify/notification.h>
#include <libnotify/notify.h>
#include <telepathy-glib/telepathy-glib.h>
#include <libempathy-gtk/empathy-notify-manager.h>
#include "empathy-event-manager.h"
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
#include <libempathy/empathy-debug.h>
#include "empathy-notifications-approver.h"
struct _EmpathyNotificationsApproverPrivate
{
EmpathyEventManager *event_mgr;
EmpathyNotifyManager *notify_mgr;
};
G_DEFINE_TYPE (EmpathyNotificationsApprover, empathy_notifications_approver,
G_TYPE_OBJECT);
static EmpathyNotificationsApprover *notifications_approver = NULL;
static GObject *
notifications_approver_constructor (GType type,
guint n_construct_params,
GObjectConstructParam *construct_params)
{
GObject *retval;
if (notifications_approver != NULL)
return g_object_ref (notifications_approver);
retval = G_OBJECT_CLASS (empathy_notifications_approver_parent_class)->
constructor (type, n_construct_params, construct_params);
notifications_approver = EMPATHY_NOTIFICATIONS_APPROVER (retval);
g_object_add_weak_pointer (retval, (gpointer) ¬ifications_approver);
return retval;
}
static void
notifications_approver_dispose (GObject *object)
{
EmpathyNotificationsApprover *self = (EmpathyNotificationsApprover *) object;
tp_clear_object (&self->priv->event_mgr);
tp_clear_object (&self->priv->notify_mgr);
G_OBJECT_CLASS (empathy_notifications_approver_parent_class)->dispose (
object);
}
static void
empathy_notifications_approver_class_init (
EmpathyNotificationsApproverClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose = notifications_approver_dispose;
object_class->constructor = notifications_approver_constructor;
g_type_class_add_private (object_class,
sizeof (EmpathyNotificationsApproverPrivate));
}
static void
empathy_notifications_approver_init (EmpathyNotificationsApprover *self)
{
EmpathyNotificationsApproverPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
EMPATHY_TYPE_NOTIFICATIONS_APPROVER, EmpathyNotificationsApproverPrivate);
self->priv = priv;
self->priv->event_mgr = empathy_event_manager_dup_singleton ();
self->priv->notify_mgr = empathy_notify_manager_dup_singleton ();
}
EmpathyNotificationsApprover *
empathy_notifications_approver_dup_singleton (void)
{
return g_object_new (EMPATHY_TYPE_NOTIFICATIONS_APPROVER, NULL);
}
|