account-widget: hide advanced section for GTalk accounts
[empathy-mirror.git] / libempathy / empathy-tp-contact-factory.h
blob29146cb32d07d4ebecb8253a24f2e654d8e0a691
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2007-2009 Collabora Ltd.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library 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 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Authors: Xavier Claessens <xclaesse@gmail.com>
22 #ifndef __EMPATHY_TP_CONTACT_FACTORY_H__
23 #define __EMPATHY_TP_CONTACT_FACTORY_H__
25 #include <glib.h>
27 #include <telepathy-glib/connection.h>
29 #include "empathy-contact.h"
31 G_BEGIN_DECLS
33 typedef void (*EmpathyTpContactFactoryContactsByIdCb) (TpConnection *connection,
34 guint n_contacts,
35 EmpathyContact * const * contacts,
36 const gchar * const * requested_ids,
37 GHashTable *failed_id_errors,
38 const GError *error,
39 gpointer user_data,
40 GObject *weak_object);
42 typedef void (*EmpathyTpContactFactoryContactsByHandleCb) (TpConnection *connection,
43 guint n_contacts,
44 EmpathyContact * const * contacts,
45 guint n_failed,
46 const TpHandle *failed,
47 const GError *error,
48 gpointer user_data,
49 GObject *weak_object);
51 typedef void (*EmpathyTpContactFactoryContactCb) (TpConnection *connection,
52 EmpathyContact *contact,
53 const GError *error,
54 gpointer user_data,
55 GObject *weak_object);
57 void empathy_tp_contact_factory_get_from_ids (TpConnection *connection,
58 guint n_ids,
59 const gchar * const *ids,
60 EmpathyTpContactFactoryContactsByIdCb callback,
61 gpointer user_data,
62 GDestroyNotify destroy,
63 GObject *weak_object);
64 void empathy_tp_contact_factory_get_from_handles (TpConnection *connection,
65 guint n_handles,
66 const TpHandle *handles,
67 EmpathyTpContactFactoryContactsByHandleCb callback,
68 gpointer user_data,
69 GDestroyNotify destroy,
70 GObject *weak_object);
71 void empathy_tp_contact_factory_get_from_id (TpConnection *connection,
72 const gchar *id,
73 EmpathyTpContactFactoryContactCb callback,
74 gpointer user_data,
75 GDestroyNotify destroy,
76 GObject *weak_object);
77 void empathy_tp_contact_factory_get_from_handle (TpConnection *connection,
78 TpHandle handle,
79 EmpathyTpContactFactoryContactCb callback,
80 gpointer user_data,
81 GDestroyNotify destroy,
82 GObject *weak_object);
83 G_END_DECLS
85 #endif /* __EMPATHY_TP_CONTACT_FACTORY_H__ */