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
|
/*
* empathy-roster-model.c
*
* Copyright (C) 2012 Collabora Ltd. <http://www.collabora.co.uk/>
*
* 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
*/
#include "config.h"
#include "empathy-roster-model.h"
G_DEFINE_INTERFACE (EmpathyRosterModel, empathy_roster_model, G_TYPE_OBJECT)
enum
{
SIG_INDIVIDUAL_ADDED,
SIG_INDIVIDUAL_REMOVED,
LAST_SIGNAL
};
static guint signals[LAST_SIGNAL];
static void
empathy_roster_model_default_init (EmpathyRosterModelInterface *iface)
{
signals[SIG_INDIVIDUAL_ADDED] =
g_signal_new ("individual-added",
EMPATHY_TYPE_ROSTER_MODEL,
G_SIGNAL_RUN_LAST,
0, NULL, NULL, NULL,
G_TYPE_NONE, 1,
FOLKS_TYPE_INDIVIDUAL);
signals[SIG_INDIVIDUAL_REMOVED] =
g_signal_new ("individual-removed",
EMPATHY_TYPE_ROSTER_MODEL,
G_SIGNAL_RUN_LAST,
0, NULL, NULL, NULL,
G_TYPE_NONE, 1,
FOLKS_TYPE_INDIVIDUAL);
}
/***** Restricted *****/
void
empathy_roster_model_fire_individual_added (EmpathyRosterModel *self,
FolksIndividual *individual)
{
g_signal_emit (self, signals[SIG_INDIVIDUAL_ADDED], 0, individual);
}
void
empathy_roster_model_fire_individual_removed (EmpathyRosterModel *self,
FolksIndividual *individual)
{
g_signal_emit (self, signals[SIG_INDIVIDUAL_REMOVED], 0, individual);
}
/***** Public *****/
GList *
empathy_roster_model_get_individuals (EmpathyRosterModel *self)
{
EmpathyRosterModelInterface *iface;
g_return_val_if_fail (EMPATHY_IS_ROSTER_MODEL (self), NULL);
iface = EMPATHY_ROSTER_MODEL_GET_IFACE (self);
g_return_val_if_fail (iface->get_individuals != NULL, NULL);
return (* iface->get_individuals) (self);
}
|