diff options
author | jtellier <jtellier@Jospin.localdomain> | 2009-05-08 03:13:04 +0800 |
---|---|---|
committer | jtellier <jtellier@Jospin.localdomain> | 2009-05-08 03:13:04 +0800 |
commit | 10686010ed50b5f39dc0abf000c66577dbff2ff9 (patch) | |
tree | 5eac52145ac7b640c9020955f91268064480b84d /src/empathy-call-window-fullscreen.h | |
parent | 4aa24ac253f4bb11dafc41e40cbb9f3913ac7812 (diff) | |
download | gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar.gz gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar.bz2 gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar.lz gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar.xz gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.tar.zst gsoc2013-empathy-10686010ed50b5f39dc0abf000c66577dbff2ff9.zip |
Video playback fullscreen mode
See http://bugzilla.gnome.org/show_bug.cgi?id=580771
Diffstat (limited to 'src/empathy-call-window-fullscreen.h')
-rw-r--r-- | src/empathy-call-window-fullscreen.h | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/empathy-call-window-fullscreen.h b/src/empathy-call-window-fullscreen.h new file mode 100644 index 000000000..543f7acda --- /dev/null +++ b/src/empathy-call-window-fullscreen.h @@ -0,0 +1,82 @@ +/* + * empathy-call-window.c - Source for EmpathyCallWindow + * Copyright (C) 2009 Collabora Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __EMPATHY_CALL_WINDOW_FULLSCREEN_H__ +#define __EMPATHY_CALL_WINDOW_FULLSCREEN_H__ + +#include <glib-object.h> +#include <gtk/gtk.h> + +#include "empathy-call-window.h" + +G_BEGIN_DECLS + +typedef struct _EmpathyCallWindowFullscreen EmpathyCallWindowFullscreen; +typedef struct _EmpathyCallWindowFullscreenClass EmpathyCallWindowFullscreenClass; + +struct _EmpathyCallWindowFullscreenClass { + GtkWindowClass parent_class; +}; + +struct _EmpathyCallWindowFullscreen { + GtkWindow parent; + gboolean is_fullscreen; + + GtkWidget *leave_fullscreen_button; + + /* Those fields represent the state of the parent empathy_call_window before + it actually was in fullscreen mode. */ + gboolean sidebar_was_visible; + gint original_width; + gint original_height; +}; + +GType empathy_call_window_fullscreen_get_type(void); + +/* TYPE MACROS */ +#define EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN \ + (empathy_call_window_fullscreen_get_type()) +#define EMPATHY_CALL_WINDOW_FULLSCREEN(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN, \ + EmpathyCallWindowFullscreen)) +#define EMPATHY_CALL_WINDOW_FULLSCREEN_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN, \ + EmpathyCallWindowClassFullscreen)) +#define EMPATHY_IS_CALL_WINDOW_FULLSCREEN(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN)) +#define EMPATHY_IS_CALL_WINDOW_FULLSCREEN_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN)) +#define EMPATHY_CALL_WINDOW_FULLSCREEN_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN, \ + EmpathyCallWindowFullscreenClass)) + +EmpathyCallWindowFullscreen * +empathy_call_window_fullscreen_new (EmpathyCallWindow *parent); + +void empathy_call_window_fullscreen_set_fullscreen (EmpathyCallWindowFullscreen *fs, + gboolean sidebar_was_visible, + gint original_width, + gint original_height); +void empathy_call_window_fullscreen_unset_fullscreen (EmpathyCallWindowFullscreen *fs); +void empathy_call_window_fullscreen_set_video_widget (EmpathyCallWindowFullscreen *fs, + GtkWidget *video_widget); + +G_END_DECLS + +#endif /* #ifndef __EMPATHY_CALL_WINDOW_FULLSCREEN_H__*/
\ No newline at end of file |