hindi update
[empathy-mirror.git] / src / empathy-call-window.h
blobeebb55f69e051a55402cb7a0fcd0d0d0562e58d7
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 <glib-object.h>
25 #include <gtk/gtk.h>
27 #include "empathy-call-handler.h"
28 #include "empathy-audio-src.h"
29 #include "empathy-video-src.h"
31 G_BEGIN_DECLS
33 typedef struct _EmpathyCallWindow EmpathyCallWindow;
34 typedef struct _EmpathyCallWindowPriv EmpathyCallWindowPriv;
35 typedef struct _EmpathyCallWindowClass EmpathyCallWindowClass;
37 struct _EmpathyCallWindowClass {
38 GtkWindowClass parent_class;
41 struct _EmpathyCallWindow {
42 GtkWindow parent;
43 EmpathyCallWindowPriv *priv;
46 GType empathy_call_window_get_type (void);
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))
65 EmpathyCallWindow *empathy_call_window_new (EmpathyCallHandler *handler);
67 GtkUIManager *empathy_call_window_get_ui_manager (EmpathyCallWindow *window);
69 EmpathyGstAudioSrc *empathy_call_window_get_audio_src (EmpathyCallWindow *window);
70 EmpathyGstVideoSrc *empathy_call_window_get_video_src (EmpathyCallWindow *window);
72 void empathy_call_window_play_camera (EmpathyCallWindow *self,
73 gboolean play);
75 G_END_DECLS
77 #endif /* #ifndef __EMPATHY_CALL_WINDOW_H__*/