]> git.0d.be Git - empathy.git/blob - libempathy/empathy-contact-list.h
0e1d6a85007c58ca2cdba9bd48bb91162bd7c45f
[empathy.git] / libempathy / empathy-contact-list.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #ifndef __EMPATHY_CONTACT_LIST_H__
23 #define __EMPATHY_CONTACT_LIST_H__
24
25 #include <glib-object.h>
26
27 #include "empathy-types.h"
28 #include "empathy-contact.h"
29
30 G_BEGIN_DECLS
31
32 #define EMPATHY_TYPE_CONTACT_LIST         (empathy_contact_list_get_type ())
33 #define EMPATHY_CONTACT_LIST(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactList))
34 #define EMPATHY_IS_CONTACT_LIST(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
35 #define EMPATHY_CONTACT_LIST_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactListIface))
36
37 typedef enum {
38         EMPATHY_CONTACT_LIST_CAN_ADD            = 1 << 0,
39         EMPATHY_CONTACT_LIST_CAN_REMOVE         = 1 << 1,
40         EMPATHY_CONTACT_LIST_CAN_ALIAS          = 1 << 2,
41         EMPATHY_CONTACT_LIST_CAN_GROUP          = 1 << 3,
42         EMPATHY_CONTACT_LIST_CAN_BLOCK          = 1 << 4,
43         EMPATHY_CONTACT_LIST_CAN_REPORT_ABUSIVE = 1 << 5,
44         EMPATHY_CONTACT_LIST_MESSAGE_ADD        = 1 << 6,
45 } EmpathyContactListFlags;
46
47 typedef struct _EmpathyContactListIface EmpathyContactListIface;
48
49 struct _EmpathyContactListIface {
50         GTypeInterface   base_iface;
51
52         /* VTabled */
53         void             (*add)               (EmpathyContactList *list,
54                                                EmpathyContact     *contact,
55                                                const gchar        *message);
56         void             (*remove)            (EmpathyContactList *list,
57                                                EmpathyContact     *contact,
58                                                const gchar        *message);
59         GList *          (*get_members)       (EmpathyContactList *list);
60         GList *          (*get_pendings)      (EmpathyContactList *list);
61         GList *          (*get_all_groups)    (EmpathyContactList *list);
62         GList *          (*get_groups)        (EmpathyContactList *list,
63                                                EmpathyContact     *contact);
64         void             (*add_to_group)      (EmpathyContactList *list,
65                                                EmpathyContact     *contact,
66                                                const gchar        *group);
67         void             (*remove_from_group) (EmpathyContactList *list,
68                                                EmpathyContact     *contact,
69                                                const gchar        *group);
70         void             (*rename_group)      (EmpathyContactList *list,
71                                                const gchar        *old_group,
72                                                const gchar        *new_group);
73         void             (*remove_group)      (EmpathyContactList *list,
74                                                const gchar        *group);
75         EmpathyContactListFlags
76                          (*get_flags)         (EmpathyContactList *list);
77         void             (*set_blocked)       (EmpathyContactList *list,
78                                                EmpathyContact     *contact,
79                                                gboolean            blocked,
80                                                gboolean            abusive);
81         gboolean         (*get_blocked)       (EmpathyContactList *list,
82                                                EmpathyContact     *contact);
83 };
84
85 GType    empathy_contact_list_get_type          (void) G_GNUC_CONST;
86 void     empathy_contact_list_add               (EmpathyContactList *list,
87                                                  EmpathyContact     *contact,
88                                                  const gchar        *message);
89 void     empathy_contact_list_remove            (EmpathyContactList *list,
90                                                  EmpathyContact     *contact,
91                                                  const gchar        *message);
92 GList *  empathy_contact_list_get_members       (EmpathyContactList *list);
93 GList *  empathy_contact_list_get_pendings      (EmpathyContactList *list);
94 GList *  empathy_contact_list_get_all_groups    (EmpathyContactList *list);
95 GList *  empathy_contact_list_get_groups        (EmpathyContactList *list,
96                                                  EmpathyContact     *contact);
97 void     empathy_contact_list_add_to_group      (EmpathyContactList *list,
98                                                  EmpathyContact     *contact,
99                                                  const gchar        *group);
100 void     empathy_contact_list_remove_from_group (EmpathyContactList *list,
101                                                  EmpathyContact     *contact,
102                                                  const gchar        *group);
103 void     empathy_contact_list_rename_group      (EmpathyContactList *list,
104                                                  const gchar        *old_group,
105                                                  const gchar        *new_group);
106 void     empathy_contact_list_remove_group      (EmpathyContactList *list,
107                                                  const gchar        *group);
108
109 EmpathyContactListFlags
110          empathy_contact_list_get_flags         (EmpathyContactList *list);
111
112 void     empathy_contact_list_set_blocked       (EmpathyContactList *list,
113                                                  EmpathyContact     *contact,
114                                                  gboolean            blocked,
115                                                  gboolean            abusive);
116 gboolean empathy_contact_list_get_blocked       (EmpathyContactList *list,
117                                                  EmpathyContact     *contact);
118
119
120 G_END_DECLS
121
122 #endif /* __EMPATHY_CONTACT_LIST_H__ */
123