[gtk+] mir: synthesize resize events
- From: William Hua <williamhua src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] mir: synthesize resize events
- Date: Mon, 13 Mar 2017 07:49:49 +0000 (UTC)
commit 3914bcd6781eef8c7cfe03073fcb8117b6951f22
Author: William Hua <william hua canonical com>
Date: Mon Mar 13 02:52:15 2017 -0400
mir: synthesize resize events
gdk/mir/gdkmirwindowimpl.c | 40 +++++++++++++++++++++++++---------------
1 files changed, 25 insertions(+), 15 deletions(-)
---
diff --git a/gdk/mir/gdkmirwindowimpl.c b/gdk/mir/gdkmirwindowimpl.c
index 0b7a80b..0c737e3 100644
--- a/gdk/mir/gdkmirwindowimpl.c
+++ b/gdk/mir/gdkmirwindowimpl.c
@@ -536,6 +536,28 @@ generate_configure_event (GdkWindow *window,
}
static void
+maybe_synthesize_resize (GdkWindow *window)
+{
+ GdkMirWindowImpl *impl = GDK_MIR_WINDOW_IMPL (window->impl);
+ MirWindowParameters params;
+
+ if (!impl->mir_window)
+ return;
+
+ mir_window_get_parameters (impl->mir_window, ¶ms);
+
+ if (params.width != window->width || params.height != window->height)
+ {
+ window->width = params.width;
+ window->height = params.height;
+
+ _gdk_window_update_size (window);
+
+ generate_configure_event (window, window->width, window->height);
+ }
+}
+
+static void
ensure_mir_window_full (GdkWindow *window,
MirBufferUsage buffer_usage)
{
@@ -568,21 +590,7 @@ ensure_mir_window_full (GdkWindow *window,
impl->pending_spec_update = FALSE;
impl->buffer_stream = mir_window_get_buffer_stream (impl->mir_window);
- /* FIXME: can't make an initial resize event */
- // MirEvent *resize_event;
-
- /* Send the initial configure with the size the server gave... */
- /* FIXME: can't make an initial resize event */
- /*
- resize_event.resize.type = mir_event_type_resize;
- resize_event.resize.surface_id = 0;
- resize_event.resize.width = window->width;
- resize_event.resize.height = window->height;
-
- _gdk_mir_event_source_queue (window_ref, &resize_event);
- */
-
- generate_configure_event (window, window->width, window->height);
+ maybe_synthesize_resize (window);
/* FIXME: Ignore some events until shown */
mir_window_set_event_handler (impl->mir_window, event_cb, window_ref);
@@ -644,6 +652,8 @@ send_buffer (GdkWindow *window)
update_window_spec (window);
impl->pending_spec_update = FALSE;
+
+ maybe_synthesize_resize (window);
}
static cairo_surface_t *
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]