]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-contact-list.h
Rename all filenames starting with "gossip" by "empathy", change namespace
[empathy.git] / libempathy / empathy-tp-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_TP_CONTACT_LIST_H__
25 #define __EMPATHY_TP_CONTACT_LIST_H__
26
27 #include <glib.h>
28 #include <libmissioncontrol/mc-account.h>
29
30 #include "empathy-contact.h"
31
32 G_BEGIN_DECLS
33
34 #define EMPATHY_TYPE_TP_CONTACT_LIST         (empathy_tp_contact_list_get_type ())
35 #define EMPATHY_TP_CONTACT_LIST(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactList))
36 #define EMPATHY_TP_CONTACT_LIST_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
37 #define EMPATHY_IS_TP_CONTACT_LIST(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
38 #define EMPATHY_IS_TP_CONTACT_LIST_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CONTACT_LIST))
39 #define EMPATHY_TP_CONTACT_LIST_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
40
41 typedef struct _EmpathyTpContactList      EmpathyTpContactList;
42 typedef struct _EmpathyTpContactListClass EmpathyTpContactListClass;
43 typedef struct _EmpathyTpContactListPriv  EmpathyTpContactListPriv;
44
45 struct _EmpathyTpContactList {
46         GObject      parent;
47 };
48
49 struct _EmpathyTpContactListClass {
50         GObjectClass parent_class;
51 };
52
53 GType                  empathy_tp_contact_list_get_type         (void) G_GNUC_CONST;
54 EmpathyTpContactList * empathy_tp_contact_list_new              (McAccount            *account);
55 McAccount *            empathy_tp_contact_list_get_account      (EmpathyTpContactList *list);
56 EmpathyContact *        empathy_tp_contact_list_get_user         (EmpathyTpContactList *list);
57 EmpathyContact *        empathy_tp_contact_list_get_from_id      (EmpathyTpContactList *list,
58                                                                  const gchar          *id);
59 EmpathyContact *        empathy_tp_contact_list_get_from_handle  (EmpathyTpContactList *list,
60                                                                  guint                 handle);
61 GList *                empathy_tp_contact_list_get_from_handles (EmpathyTpContactList *list,
62                                                                  GArray               *handles);
63 void                   empathy_tp_contact_list_rename_group     (EmpathyTpContactList *list,
64                                                                  const gchar          *old_group,
65                                                                  const gchar          *new_group);
66 GList *                empathy_tp_contact_list_get_groups       (EmpathyTpContactList *list);
67
68 G_END_DECLS
69
70 #endif /* __EMPATHY_TP_CONTACT_LIST_H__ */