Fix broken markup in Finnish user docs translation
[empathy-mirror.git] / src / empathy-call-window.h
blobad7b1f26237b5c7863a7242b9052d52cad871f5a
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>
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.
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.
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
21 #ifndef __EMPATHY_CALL_WINDOW_H__
22 #define __EMPATHY_CALL_WINDOW_H__
24 #include <gtk/gtk.h>
26 #include "empathy-audio-src.h"
27 #include "empathy-call-handler.h"
28 #include "empathy-video-src.h"
30 G_BEGIN_DECLS
32 typedef struct _EmpathyCallWindow EmpathyCallWindow;
33 typedef struct _EmpathyCallWindowPriv EmpathyCallWindowPriv;
34 typedef struct _EmpathyCallWindowClass EmpathyCallWindowClass;
36 struct _EmpathyCallWindowClass {
37 GtkWindowClass parent_class;
40 struct _EmpathyCallWindow {
41 GtkWindow parent;
42 EmpathyCallWindowPriv *priv;
45 GType empathy_call_window_get_type (void);
47 /* TYPE MACROS */
48 #define EMPATHY_TYPE_CALL_WINDOW \
49 (empathy_call_window_get_type ())
50 #define EMPATHY_CALL_WINDOW(obj) \
51 (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALL_WINDOW, \
52 EmpathyCallWindow))
53 #define EMPATHY_CALL_WINDOW_CLASS(klass) \
54 (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CALL_WINDOW, \
55 EmpathyCallWindowClass))
56 #define EMPATHY_IS_CALL_WINDOW(obj) \
57 (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CALL_WINDOW))
58 #define EMPATHY_IS_CALL_WINDOW_CLASS(klass) \
59 (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CALL_WINDOW))
60 #define EMPATHY_CALL_WINDOW_GET_CLASS(obj) \
61 (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CALL_WINDOW, \
62 EmpathyCallWindowClass))
64 EmpathyCallWindow *empathy_call_window_new (EmpathyCallHandler *handler);
65 void empathy_call_window_new_handler (EmpathyCallWindow *window,
66 EmpathyCallHandler *handler,
67 gboolean present,
68 guint32 x11_time);
69 void empathy_call_window_start_ringing (EmpathyCallWindow *self,
70 TpCallChannel *channel,
71 TpChannelDispatchOperation *dispatch_operation,
72 TpAddDispatchOperationContext *context);
74 GtkUIManager *empathy_call_window_get_ui_manager (EmpathyCallWindow *window);
76 EmpathyGstAudioSrc *empathy_call_window_get_audio_src (EmpathyCallWindow *window);
77 EmpathyGstVideoSrc *empathy_call_window_get_video_src (EmpathyCallWindow *window);
79 void empathy_call_window_play_camera (EmpathyCallWindow *self,
80 gboolean play);
82 void empathy_call_window_change_webcam (EmpathyCallWindow *self,
83 const gchar *device);
85 G_END_DECLS
87 #endif /* #ifndef __EMPATHY_CALL_WINDOW_H__*/