]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-contact-list.h
e8edcfacee8d21f9d63d744dd9984b2271688542
[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-2008 Collabora Ltd.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #ifndef __EMPATHY_TP_CONTACT_LIST_H__
24 #define __EMPATHY_TP_CONTACT_LIST_H__
25
26 #include <glib.h>
27 #include <libmissioncontrol/mc-account.h>
28
29
30 G_BEGIN_DECLS
31
32 #define EMPATHY_TYPE_TP_CONTACT_LIST         (empathy_tp_contact_list_get_type ())
33 #define EMPATHY_TP_CONTACT_LIST(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactList))
34 #define EMPATHY_TP_CONTACT_LIST_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
35 #define EMPATHY_IS_TP_CONTACT_LIST(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
36 #define EMPATHY_IS_TP_CONTACT_LIST_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CONTACT_LIST))
37 #define EMPATHY_TP_CONTACT_LIST_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
38
39 typedef struct _EmpathyTpContactList      EmpathyTpContactList;
40 typedef struct _EmpathyTpContactListClass EmpathyTpContactListClass;
41
42 struct _EmpathyTpContactList {
43         GObject parent;
44         gpointer priv;
45 };
46
47 struct _EmpathyTpContactListClass {
48         GObjectClass parent_class;
49 };
50
51 GType                  empathy_tp_contact_list_get_type    (void) G_GNUC_CONST;
52 EmpathyTpContactList * empathy_tp_contact_list_new         (McAccount            *account);
53 McAccount *            empathy_tp_contact_list_get_account (EmpathyTpContactList *list);
54 gboolean               empathy_tp_contact_list_can_add     (EmpathyTpContactList *list);
55
56 G_END_DECLS
57
58 #endif /* __EMPATHY_TP_CONTACT_LIST_H__ */