]> git.0d.be Git - empathy.git/blob - libempathy/empathy-request-util.h
individual-menu: remove link-contacts-activated signal
[empathy.git] / libempathy / empathy-request-util.h
1 /*
2  * Copyright (C) 2007-2010 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Xavier Claessens <xclaesse@gmail.com>
19  */
20
21 #ifndef __EMPATHY_DISPATCHER_H__
22 #define __EMPATHY_DISPATCHER_H__
23
24 #include <glib.h>
25 #include <gio/gio.h>
26
27 #include <telepathy-glib/channel.h>
28
29 #include "empathy-contact.h"
30
31 G_BEGIN_DECLS
32
33 #define EMPATHY_CHAT_BUS_NAME_SUFFIX "Empathy.Chat"
34 #define EMPATHY_CHAT_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_CHAT_BUS_NAME_SUFFIX
35
36 #define EMPATHY_AV_BUS_NAME_SUFFIX "Empathy.AudioVideo"
37 #define EMPATHY_AV_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_AV_BUS_NAME_SUFFIX
38
39 #define EMPATHY_CALL_BUS_NAME_SUFFIX "Empathy.Call"
40 #define EMPATHY_CALL_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_CALL_BUS_NAME_SUFFIX
41
42 #define EMPATHY_FT_BUS_NAME_SUFFIX "Empathy.FileTransfer"
43 #define EMPATHY_FT_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_FT_BUS_NAME_SUFFIX
44
45 /* Requesting 1 to 1 text channels */
46 void empathy_chat_with_contact_id (TpAccount *account,
47   const gchar *contact_id,
48   gint64 timestamp,
49   GAsyncReadyCallback callback,
50   gpointer user_data);
51
52 void empathy_chat_with_contact (EmpathyContact *contact,
53   gint64 timestamp);
54
55 /* Request a muc channel */
56 void empathy_join_muc (TpAccount *account,
57   const gchar *roomname,
58   gint64 timestamp);
59
60 /* Request a sms channel */
61 void empathy_sms_contact_id (TpAccount *account,
62   const gchar *contact_id,
63   gint64 timestamp,
64   GAsyncReadyCallback callback,
65   gpointer user_data);
66
67 G_END_DECLS
68
69 #endif /* __EMPATHY_DISPATCHER_H__ */