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