]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-contact-list.h
Merge call branch from Elliot Fairweather with cleanups from Xavier Claessens.
[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 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 #include "empathy-contact.h"
30
31 G_BEGIN_DECLS
32
33 #define EMPATHY_TYPE_TP_CONTACT_LIST         (empathy_tp_contact_list_get_type ())
34 #define EMPATHY_TP_CONTACT_LIST(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactList))
35 #define EMPATHY_TP_CONTACT_LIST_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
36 #define EMPATHY_IS_TP_CONTACT_LIST(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
37 #define EMPATHY_IS_TP_CONTACT_LIST_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CONTACT_LIST))
38 #define EMPATHY_TP_CONTACT_LIST_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyTpContactListClass))
39
40 typedef struct _EmpathyTpContactList      EmpathyTpContactList;
41 typedef struct _EmpathyTpContactListClass EmpathyTpContactListClass;
42 typedef struct _EmpathyTpContactListPriv  EmpathyTpContactListPriv;
43
44 struct _EmpathyTpContactList {
45         GObject      parent;
46 };
47
48 struct _EmpathyTpContactListClass {
49         GObjectClass parent_class;
50 };
51
52 GType                  empathy_tp_contact_list_get_type    (void) G_GNUC_CONST;
53 EmpathyTpContactList * empathy_tp_contact_list_new         (McAccount            *account);
54 McAccount *            empathy_tp_contact_list_get_account (EmpathyTpContactList *list);
55
56 G_END_DECLS
57
58 #endif /* __EMPATHY_TP_CONTACT_LIST_H__ */