2 * empathy-call-window-fullscreen.c - Source for EmpathyCallWindowFullscreen
3 * Copyright (C) 2009-2011 Collabora Ltd.
5 * Some code is based on the Totem Movie Player, especially
6 * totem-fullscreen.c which has the following copyright:
7 * Copyright (C) 2001-2007 Bastien Nocera <hadess@hadess.net>
8 * Copyright (C) 2007 Sunil Mohan Adapa <sunilmohan@gnu.org.in>
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "empathy-call-window-fullscreen.h"
28 #include <tp-account-widgets/tpaw-builder.h>
30 #include "empathy-ui-utils.h"
31 #include "empathy-utils.h"
33 /* The number of seconds for which the "leave fullscreen" popup should
35 #define FULLSCREEN_POPUP_TIMEOUT 5
37 G_DEFINE_TYPE (EmpathyCallWindowFullscreen
, empathy_call_window_fullscreen
,
40 /* private structure */
41 typedef struct _EmpathyCallWindowFullscreenPriv
42 EmpathyCallWindowFullscreenPriv
;
44 struct _EmpathyCallWindowFullscreenPriv
46 EmpathyCallWindow
*parent_window
;
48 GtkWidget
*leave_fullscreen_popup
;
49 GtkWidget
*video_widget
;
52 gboolean popup_creation_in_progress
;
53 gboolean dispose_has_run
;
57 (G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN, \
58 EmpathyCallWindowFullscreenPriv))
60 static void empathy_call_window_fullscreen_dispose (GObject
*object
);
61 static void empathy_call_window_fullscreen_finalize (GObject
*object
);
63 static gboolean
empathy_call_window_fullscreen_hide_popup (
64 EmpathyCallWindowFullscreen
*fs
);
67 empathy_call_window_fullscreen_set_cursor_visible (
68 EmpathyCallWindowFullscreen
*fs
,
71 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (fs
);
74 if (priv
->video_widget
== NULL
)
77 window
= gtk_widget_get_window (priv
->video_widget
);
80 gdk_window_set_cursor (window
, gdk_cursor_new (GDK_BLANK_CURSOR
));
82 gdk_window_set_cursor (window
, NULL
);
86 empathy_call_window_fullscreen_add_popup_timeout (
87 EmpathyCallWindowFullscreen
*self
)
89 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
91 if (priv
->popup_timeout
== 0)
93 priv
->popup_timeout
= g_timeout_add_seconds (FULLSCREEN_POPUP_TIMEOUT
,
94 (GSourceFunc
) empathy_call_window_fullscreen_hide_popup
, self
);
99 empathy_call_window_fullscreen_remove_popup_timeout (
100 EmpathyCallWindowFullscreen
*self
)
102 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
104 if (priv
->popup_timeout
!= 0)
106 g_source_remove (priv
->popup_timeout
);
107 priv
->popup_timeout
= 0;
112 empathy_call_window_fullscreen_show_popup (EmpathyCallWindowFullscreen
*self
)
114 gint leave_fullscreen_width
, leave_fullscreen_height
;
116 GdkRectangle fullscreen_rect
;
117 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
119 g_assert (self
->is_fullscreen
);
121 g_return_if_fail (priv
->parent_window
!= NULL
);
123 if (priv
->popup_creation_in_progress
)
126 if (!gtk_window_is_active (GTK_WINDOW (priv
->parent_window
)))
129 priv
->popup_creation_in_progress
= TRUE
;
131 empathy_call_window_fullscreen_set_cursor_visible (self
, TRUE
);
133 /* Obtaining the screen rectangle */
134 screen
= gtk_window_get_screen (GTK_WINDOW (priv
->parent_window
));
135 gdk_screen_get_monitor_geometry (screen
,
136 gdk_screen_get_monitor_at_window (screen
,
137 gtk_widget_get_window (GTK_WIDGET (priv
->parent_window
))),
140 /* Getting the popup window sizes */
141 gtk_window_get_size (GTK_WINDOW (priv
->leave_fullscreen_popup
),
142 &leave_fullscreen_width
, &leave_fullscreen_height
);
144 /* Moving the popup to the top-right corner (if the direction is LTR) or the
145 top-left corner (if the direction is RTL).*/
146 if (gtk_widget_get_direction (priv
->leave_fullscreen_popup
)
149 gtk_window_move (GTK_WINDOW (priv
->leave_fullscreen_popup
),
150 fullscreen_rect
.width
+ fullscreen_rect
.x
- leave_fullscreen_width
,
156 gtk_window_move (GTK_WINDOW (priv
->leave_fullscreen_popup
),
157 fullscreen_rect
.x
, fullscreen_rect
.y
);
160 gtk_widget_show_all (priv
->leave_fullscreen_popup
);
161 empathy_call_window_fullscreen_add_popup_timeout (self
);
163 priv
->popup_creation_in_progress
= FALSE
;
167 empathy_call_window_fullscreen_hide_popup (EmpathyCallWindowFullscreen
*fs
)
169 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (fs
);
171 if (priv
->video_widget
== NULL
|| !fs
->is_fullscreen
)
174 gtk_widget_hide (priv
->leave_fullscreen_popup
);
175 empathy_call_window_fullscreen_remove_popup_timeout (fs
);
177 empathy_call_window_fullscreen_set_cursor_visible (fs
, FALSE
);
183 empathy_call_window_fullscreen_init (EmpathyCallWindowFullscreen
*self
)
185 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
189 filename
= empathy_file_lookup ("empathy-call-window-fullscreen.ui", "src");
190 gui
= tpaw_builder_get_file (filename
,
191 "leave_fullscreen_window", &priv
->leave_fullscreen_popup
,
192 "leave_fullscreen_button", &self
->leave_fullscreen_button
,
195 gtk_widget_add_events (priv
->leave_fullscreen_popup
, GDK_POINTER_MOTION_MASK
);
197 g_object_unref (gui
);
202 empathy_call_window_fullscreen_class_init (
203 EmpathyCallWindowFullscreenClass
*klass
)
205 GObjectClass
*object_class
= G_OBJECT_CLASS (klass
);
207 g_type_class_add_private (klass
, sizeof (EmpathyCallWindowFullscreenPriv
));
209 object_class
->dispose
= empathy_call_window_fullscreen_dispose
;
210 object_class
->finalize
= empathy_call_window_fullscreen_finalize
;
214 empathy_call_window_fullscreen_dispose (GObject
*object
)
216 EmpathyCallWindowFullscreen
*self
= EMPATHY_CALL_WINDOW_FULLSCREEN (object
);
217 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
219 if (priv
->dispose_has_run
)
222 priv
->dispose_has_run
= TRUE
;
224 if (priv
->leave_fullscreen_popup
!= NULL
)
225 gtk_widget_destroy (priv
->leave_fullscreen_popup
);
226 priv
->leave_fullscreen_popup
= NULL
;
228 if (G_OBJECT_CLASS (empathy_call_window_fullscreen_parent_class
)->dispose
)
231 empathy_call_window_fullscreen_parent_class
)->dispose (object
);
236 empathy_call_window_fullscreen_finalize (GObject
*object
)
238 EmpathyCallWindowFullscreen
*self
= EMPATHY_CALL_WINDOW_FULLSCREEN (object
);
240 empathy_call_window_fullscreen_remove_popup_timeout (self
);
243 empathy_call_window_fullscreen_parent_class
)->finalize (object
);
247 empathy_call_window_fullscreen_parent_window_notify (GtkWidget
*parent_window
,
248 GParamSpec
*property
, EmpathyCallWindowFullscreen
*fs
)
250 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (fs
);
252 if (!fs
->is_fullscreen
)
255 if (parent_window
== GTK_WIDGET (priv
->parent_window
) &&
256 !gtk_window_is_active (GTK_WINDOW (parent_window
)))
258 empathy_call_window_fullscreen_hide_popup (fs
);
259 empathy_call_window_fullscreen_set_cursor_visible (fs
, TRUE
);
263 EmpathyCallWindowFullscreen
*
264 empathy_call_window_fullscreen_new (EmpathyCallWindow
*parent_window
)
266 EmpathyCallWindowFullscreen
*self
= EMPATHY_CALL_WINDOW_FULLSCREEN (
267 g_object_new (EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN
, NULL
));
268 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
270 priv
->parent_window
= parent_window
;
271 g_signal_connect (G_OBJECT (priv
->parent_window
), "notify::is-active",
272 G_CALLBACK (empathy_call_window_fullscreen_parent_window_notify
), self
);
278 empathy_call_window_fullscreen_set_fullscreen (EmpathyCallWindowFullscreen
*fs
,
279 gboolean set_fullscreen
)
283 empathy_call_window_fullscreen_remove_popup_timeout (fs
);
285 empathy_call_window_fullscreen_hide_popup (fs
);
287 empathy_call_window_fullscreen_set_cursor_visible (fs
, !set_fullscreen
);
288 fs
->is_fullscreen
= set_fullscreen
;
292 video_widget_destroy_cb (GtkWidget
*widget
,
293 EmpathyCallWindowFullscreen
*self
)
295 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (self
);
297 priv
->video_widget
= NULL
;
301 empathy_call_window_fullscreen_set_video_widget (
302 EmpathyCallWindowFullscreen
*fs
,
303 GtkWidget
*video_widget
)
305 EmpathyCallWindowFullscreenPriv
*priv
= GET_PRIV (fs
);
306 priv
->video_widget
= video_widget
;
308 tp_g_signal_connect_object (video_widget
, "destroy",
309 G_CALLBACK (video_widget_destroy_cb
), fs
, 0);