]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-call.h
Merge call branch from Elliot Fairweather with cleanups from Xavier Claessens.
[empathy.git] / libempathy / empathy-tp-call.h
1 /*
2  *  Copyright (C) 2007 Elliot Fairweather
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: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
19  */
20
21 #ifndef __EMPATHY_TP_CALL_H__
22 #define __EMPATHY_TP_CALL_H__
23
24 #include <libtelepathy/tp-chan.h>
25 #include <libtelepathy/tp-conn.h>
26
27 #include <libmissioncontrol/mission-control.h>
28
29 #include <libempathy/empathy-chandler.h>
30 #include <libempathy/empathy-contact.h>
31 #include <libempathy/empathy-tp-group.h>
32
33 G_BEGIN_DECLS
34
35 #define EMPATHY_TYPE_TP_CALL (empathy_tp_call_get_type ())
36 #define EMPATHY_TP_CALL(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), \
37     EMPATHY_TYPE_TP_CALL, EmpathyTpCall))
38 #define EMPATHY_TP_CALL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
39     EMPATHY_TYPE_TP_CALL, EmpathyTpCallClass))
40 #define EMPATHY_IS_TP_CALL(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), \
41     EMPATHY_TYPE_TP_CALL))
42 #define EMPATHY_IS_TP_CALL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
43     EMPATHY_TYPE_TP_CALL))
44 #define EMPATHY_TP_CALL_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), \
45     EMPATHY_TYPE_TP_CALL, EmpathyTpCallClass))
46
47 typedef struct _EmpathyTpCall EmpathyTpCall;
48 typedef struct _EmpathyTpCallClass EmpathyTpCallClass;
49
50 struct _EmpathyTpCall {
51     GObject parent;
52 };
53
54 struct _EmpathyTpCallClass {
55     GObjectClass parent_class;
56 };
57
58 typedef enum
59 {
60   EMPATHY_TP_CALL_STATUS_READYING,
61   EMPATHY_TP_CALL_STATUS_PENDING,
62   EMPATHY_TP_CALL_STATUS_ACCEPTED,
63   EMPATHY_TP_CALL_STATUS_CLOSED
64 } EmpathyTpCallStatus;
65
66 typedef struct
67 {
68   gboolean exists;
69   guint id;
70   guint state;
71   guint direction;
72 } EmpathyTpCallStream;
73
74 GType empathy_tp_call_get_type (void) G_GNUC_CONST;
75 EmpathyTpCall *empathy_tp_call_new (TpConn *connection, TpChan *channel);
76
77 void empathy_tp_call_accept_incoming_call (EmpathyTpCall *call);
78 void empathy_tp_call_close_channel (EmpathyTpCall *call);
79 void empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call,
80     gboolean is_sending);
81 void empathy_tp_call_add_preview_video (guint preview_video_socket_id);
82 void empathy_tp_call_remove_preview_video (guint preview_video_socket_id);
83 void empathy_tp_call_add_output_video (EmpathyTpCall *call,
84     guint output_video_socket_id);
85 void empathy_tp_call_set_output_volume (EmpathyTpCall *call, guint volume);
86 void empathy_tp_call_mute_output (EmpathyTpCall *call, gboolean is_muted);
87 void empathy_tp_call_mute_input (EmpathyTpCall *call, gboolean is_muted);
88
89 G_END_DECLS
90
91 #endif /* __EMPATHY_TP_CALL_H__ */