]> git.0d.be Git - empathy.git/blob - src/empathy-call-window.h
Move should_create_salut_account to local-xmpp-assistant-widget
[empathy.git] / src / empathy-call-window.h
1 /*
2  * empathy-call-window.h - Header for EmpathyCallWindow
3  * Copyright (C) 2008-2011 Collabora Ltd.
4  * @author Sjoerd Simons <sjoerd.simons@collabora.co.uk>
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
21 #ifndef __EMPATHY_CALL_WINDOW_H__
22 #define __EMPATHY_CALL_WINDOW_H__
23
24 #include <glib-object.h>
25 #include <gtk/gtk.h>
26
27 #include "empathy-call-handler.h"
28 #include "empathy-audio-src.h"
29 #include "empathy-video-src.h"
30
31 G_BEGIN_DECLS
32
33 typedef struct _EmpathyCallWindow EmpathyCallWindow;
34 typedef struct _EmpathyCallWindowPriv EmpathyCallWindowPriv;
35 typedef struct _EmpathyCallWindowClass EmpathyCallWindowClass;
36
37 struct _EmpathyCallWindowClass {
38     GtkWindowClass parent_class;
39 };
40
41 struct _EmpathyCallWindow {
42     GtkWindow parent;
43     EmpathyCallWindowPriv *priv;
44 };
45
46 GType empathy_call_window_get_type (void);
47
48 /* TYPE MACROS */
49 #define EMPATHY_TYPE_CALL_WINDOW \
50   (empathy_call_window_get_type ())
51 #define EMPATHY_CALL_WINDOW(obj) \
52   (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALL_WINDOW, \
53     EmpathyCallWindow))
54 #define EMPATHY_CALL_WINDOW_CLASS(klass) \
55   (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CALL_WINDOW, \
56     EmpathyCallWindowClass))
57 #define EMPATHY_IS_CALL_WINDOW(obj) \
58   (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CALL_WINDOW))
59 #define EMPATHY_IS_CALL_WINDOW_CLASS(klass) \
60   (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CALL_WINDOW))
61 #define EMPATHY_CALL_WINDOW_GET_CLASS(obj) \
62   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CALL_WINDOW, \
63     EmpathyCallWindowClass))
64
65 EmpathyCallWindow *empathy_call_window_new (EmpathyCallHandler *handler);
66 void empathy_call_window_present (EmpathyCallWindow *window,
67   EmpathyCallHandler *handler);
68 void empathy_call_window_start_ringing (EmpathyCallWindow *self,
69   TpyCallChannel *channel,
70   TpChannelDispatchOperation *dispatch_operation,
71   TpAddDispatchOperationContext *context);
72
73 GtkUIManager *empathy_call_window_get_ui_manager (EmpathyCallWindow *window);
74
75 EmpathyGstAudioSrc *empathy_call_window_get_audio_src (EmpathyCallWindow *window);
76 EmpathyGstVideoSrc *empathy_call_window_get_video_src (EmpathyCallWindow *window);
77
78 void empathy_call_window_play_camera (EmpathyCallWindow *self,
79     gboolean play);
80
81 void empathy_call_window_change_webcam (EmpathyCallWindow *self,
82     const gchar *device);
83
84 G_END_DECLS
85
86 #endif /* #ifndef __EMPATHY_CALL_WINDOW_H__*/