]> git.0d.be Git - empathy.git/blob - libempathy/empathy-contact-list.h
[darcs-to-svn @ Adding salut profile]
[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 Xavier Claessens <xclaesse@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program 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  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __EMPATHY_CONTACT_LIST_H__
22 #define __EMPATHY_CONTACT_LIST_H__
23
24 #include <glib.h>
25 #include <libmissioncontrol/mc-account.h>
26
27 #include "gossip-contact.h"
28
29 G_BEGIN_DECLS
30
31 #define EMPATHY_TYPE_CONTACT_LIST         (empathy_contact_list_get_type ())
32 #define EMPATHY_CONTACT_LIST(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactList))
33 #define EMPATHY_CONTACT_LIST_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactListClass))
34 #define EMPATHY_IS_CONTACT_LIST(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
35 #define EMPATHY_IS_CONTACT_LIST_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CONTACT_LIST))
36 #define EMPATHY_CONTACT_LIST_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactListClass))
37
38 typedef struct _EmpathyContactList      EmpathyContactList;
39 typedef struct _EmpathyContactListClass EmpathyContactListClass;
40 typedef struct _EmpathyContactListPriv  EmpathyContactListPriv;
41
42 struct _EmpathyContactList {
43         GObject      parent;
44 };
45
46 struct _EmpathyContactListClass {
47         GObjectClass parent_class;
48 };
49
50 GType                empathy_contact_list_get_type         (void) G_GNUC_CONST;
51 EmpathyContactList * empathy_contact_list_new              (McAccount          *account);
52 void                 empathy_contact_list_setup            (EmpathyContactList *list);
53 McAccount *          empathy_contact_list_get_account      (EmpathyContactList *list);
54 GossipContact *      empathy_contact_list_get_own          (EmpathyContactList *list);
55 GossipContact *      empathy_contact_list_find             (EmpathyContactList *list,
56                                                             const gchar        *id);
57 void                 empathy_contact_list_add              (EmpathyContactList *list,
58                                                             guint               handle,
59                                                             const gchar        *message);
60 void                 empathy_contact_list_remove           (EmpathyContactList *list,
61                                                             guint               handle);
62 GossipContact *      empathy_contact_list_get_from_id      (EmpathyContactList *list,
63                                                             const gchar        *id);
64 GossipContact *      empathy_contact_list_get_from_handle  (EmpathyContactList *list,
65                                                             guint               handle);
66 GList *              empathy_contact_list_get_from_handles (EmpathyContactList *list,
67                                                             GArray             *handles);
68 void                 empathy_contact_list_rename_group     (EmpathyContactList *list,
69                                                             const gchar        *old_group,
70                                                             const gchar        *new_group);
71 GList *              empathy_contact_list_get_groups       (EmpathyContactList *list);
72 GList *              empathy_contact_list_get_contacts     (EmpathyContactList *list);
73
74 G_END_DECLS
75
76 #endif /* __EMPATHY_CONTACT_LIST_H__ */