]> git.0d.be Git - empathy.git/blob - libempathy/empathy-request-util.h
497c65ee5b02d365972a225cfaff9466b695c5fc
[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/telepathy-glib.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_CALL_BUS_NAME_SUFFIX "Empathy.Call"
37 #define EMPATHY_CALL_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_CALL_BUS_NAME_SUFFIX
38
39 #define EMPATHY_FT_BUS_NAME_SUFFIX "Empathy.FileTransfer"
40 #define EMPATHY_FT_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_FT_BUS_NAME_SUFFIX
41
42 /* Requesting 1 to 1 text channels */
43 void empathy_chat_with_contact_id (TpAccount *account,
44   const gchar *contact_id,
45   gint64 timestamp,
46   GAsyncReadyCallback callback,
47   gpointer user_data);
48
49 void empathy_chat_with_contact (EmpathyContact *contact,
50   gint64 timestamp);
51
52 /* Request a muc channel */
53 void empathy_join_muc (TpAccount *account,
54   const gchar *roomname,
55   gint64 timestamp);
56
57 /* Request a sms channel */
58 void empathy_sms_contact_id (TpAccount *account,
59   const gchar *contact_id,
60   gint64 timestamp,
61   GAsyncReadyCallback callback,
62   gpointer user_data);
63
64 G_END_DECLS
65
66 #endif /* __EMPATHY_DISPATCHER_H__ */