2010-11-12 12:18:58 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-2007 Peter Mattis, Spencer Kimball,
|
|
|
|
* Josh MacDonald, Ryan Lortie
|
|
|
|
*
|
|
|
|
* 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 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-11-12 12:18:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdksurface-broadway.h"
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2014-10-25 14:31:31 +00:00
|
|
|
#include "gdkbroadwaydisplay.h"
|
|
|
|
#include "gdkdisplay.h"
|
2019-04-22 01:14:46 +00:00
|
|
|
#include "gdksurfaceprivate.h"
|
2010-11-12 12:18:58 +00:00
|
|
|
#include "gdkdisplay-broadway.h"
|
|
|
|
#include "gdkprivate-broadway.h"
|
|
|
|
#include "gdkinternals.h"
|
|
|
|
#include "gdkdeviceprivate.h"
|
|
|
|
#include "gdkeventsource.h"
|
2019-04-22 01:14:46 +00:00
|
|
|
#include "gdktextureprivate.h"
|
|
|
|
#include "gdkframeclockidleprivate.h"
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* Forward declarations */
|
2019-04-22 01:14:46 +00:00
|
|
|
static void gdk_broadway_surface_finalize (GObject *object);
|
2010-12-04 21:28:31 +00:00
|
|
|
|
2019-03-22 18:24:39 +00:00
|
|
|
#define SURFACE_IS_TOPLEVEL(surface) TRUE
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
G_DEFINE_TYPE (GdkBroadwaySurface, gdk_broadway_surface, GDK_TYPE_SURFACE)
|
2011-01-06 22:36:44 +00:00
|
|
|
|
2013-03-28 18:22:42 +00:00
|
|
|
/* We need to flush in an idle rather than AFTER_PAINT, as the clock
|
2018-03-21 08:17:50 +00:00
|
|
|
is frozen during e.g. surface resizes so the paint will not happen
|
|
|
|
and the surface resize request is never flushed. */
|
2010-11-16 21:11:53 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
queue_flush (GdkSurface *surface)
|
2010-11-16 21:11:53 +00:00
|
|
|
{
|
2019-03-29 10:13:24 +00:00
|
|
|
gdk_broadway_display_flush_in_idle (gdk_surface_get_display (surface));
|
2010-11-16 21:11:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_init (GdkBroadwaySurface *impl)
|
2010-11-16 21:11:53 +00:00
|
|
|
{
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_finalize (GObject *object)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
g_return_if_fail (GDK_IS_BROADWAY_SURFACE (object));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (object);
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
_gdk_broadway_surface_grab_check_destroy (GDK_SURFACE (impl));
|
2011-04-15 14:17:27 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (GDK_SURFACE (impl)));
|
2010-11-25 19:07:26 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
g_hash_table_remove (broadway_display->id_ht, GINT_TO_POINTER(impl->id));
|
2010-11-20 21:38:34 +00:00
|
|
|
|
2010-12-04 21:28:31 +00:00
|
|
|
if (impl->cursor)
|
2011-10-15 12:35:28 +00:00
|
|
|
g_object_unref (impl->cursor);
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
broadway_display->toplevels = g_list_remove (broadway_display->toplevels, impl);
|
2010-11-15 20:44:38 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
G_OBJECT_CLASS (gdk_broadway_surface_parent_class)->finalize (object);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-23 09:22:23 +00:00
|
|
|
static gboolean
|
2019-06-28 16:45:44 +00:00
|
|
|
thaw_updates_cb (GdkSurface *surface)
|
2017-11-23 09:22:23 +00:00
|
|
|
{
|
2019-06-28 16:45:44 +00:00
|
|
|
gdk_surface_thaw_updates (surface);
|
|
|
|
g_object_unref (surface);
|
2017-11-23 09:22:23 +00:00
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-21 08:17:50 +00:00
|
|
|
_gdk_broadway_roundtrip_notify (GdkSurface *surface,
|
2019-04-22 01:14:46 +00:00
|
|
|
guint32 tag,
|
|
|
|
gboolean local_reply)
|
2017-11-23 09:22:23 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl = GDK_BROADWAY_SURFACE (surface);
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkFrameClock *clock = gdk_surface_get_frame_clock (surface);
|
2019-03-29 11:31:42 +00:00
|
|
|
GdkFrameTimings *timings;
|
|
|
|
|
|
|
|
timings = gdk_frame_clock_get_timings (clock, impl->pending_frame_counter);
|
|
|
|
impl->pending_frame_counter = 0;
|
2017-11-23 09:22:23 +00:00
|
|
|
|
2019-05-24 11:18:31 +00:00
|
|
|
/* If there is no remote web client, rate limit update to once a second */
|
2017-11-23 09:22:23 +00:00
|
|
|
if (local_reply)
|
2019-06-28 16:45:44 +00:00
|
|
|
g_timeout_add_seconds (1, (GSourceFunc)thaw_updates_cb, g_object_ref (surface));
|
2017-11-23 09:22:23 +00:00
|
|
|
else
|
2019-06-28 16:45:44 +00:00
|
|
|
gdk_surface_thaw_updates (surface);
|
2019-03-29 11:31:42 +00:00
|
|
|
|
|
|
|
if (timings)
|
|
|
|
{
|
|
|
|
timings->refresh_interval = 33333; /* default to 1/30th of a second */
|
|
|
|
// This isn't quite right, since we've done a rountrip back too, can we do better?
|
|
|
|
timings->presentation_time = g_get_monotonic_time ();
|
|
|
|
timings->complete = TRUE;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
if ((_gdk_debug_flags & GDK_DEBUG_FRAMES) != 0)
|
|
|
|
_gdk_frame_clock_debug_print_timings (clock, timings);
|
2019-05-24 11:18:31 +00:00
|
|
|
|
|
|
|
if (gdk_profiler_is_running ())
|
|
|
|
_gdk_frame_clock_add_timings_to_profiler (clock, timings);
|
2019-03-29 11:31:42 +00:00
|
|
|
#endif
|
|
|
|
}
|
2017-11-23 09:22:23 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 18:22:42 +00:00
|
|
|
static void
|
|
|
|
on_frame_clock_after_paint (GdkFrameClock *clock,
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkSurface *surface)
|
2013-03-28 18:22:42 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkDisplay *display = gdk_surface_get_display (surface);
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl = GDK_BROADWAY_SURFACE (surface);
|
2017-11-23 09:22:23 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
|
|
|
|
2019-03-29 11:31:42 +00:00
|
|
|
impl->pending_frame_counter = gdk_frame_clock_get_frame_counter (clock);
|
2019-06-28 16:45:44 +00:00
|
|
|
gdk_surface_freeze_updates (surface);
|
2017-11-23 09:22:23 +00:00
|
|
|
|
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (display);
|
|
|
|
|
|
|
|
_gdk_broadway_server_roundtrip (broadway_display->server, impl->id, _gdk_display_get_next_serial (display));
|
|
|
|
|
|
|
|
gdk_display_flush (display);
|
2013-03-28 18:22:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 11:31:42 +00:00
|
|
|
static void
|
|
|
|
on_frame_clock_before_paint (GdkFrameClock *clock,
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkSurface *surface)
|
2019-03-29 11:31:42 +00:00
|
|
|
{
|
|
|
|
GdkFrameTimings *timings = gdk_frame_clock_get_current_timings (clock);
|
|
|
|
gint64 presentation_time;
|
|
|
|
gint64 refresh_interval;
|
|
|
|
|
|
|
|
if (surface->update_freeze_count > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gdk_frame_clock_get_refresh_info (clock,
|
|
|
|
timings->frame_time,
|
|
|
|
&refresh_interval, &presentation_time);
|
|
|
|
if (presentation_time != 0)
|
|
|
|
{
|
|
|
|
timings->predicted_presentation_time = presentation_time + refresh_interval;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
timings->predicted_presentation_time = timings->frame_time + refresh_interval / 2 + refresh_interval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 18:22:42 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
connect_frame_clock (GdkSurface *surface)
|
2013-03-28 18:22:42 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkFrameClock *frame_clock = gdk_surface_get_frame_clock (surface);
|
2013-03-28 18:22:42 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
g_signal_connect (frame_clock, "before-paint",
|
|
|
|
G_CALLBACK (on_frame_clock_before_paint), surface);
|
|
|
|
g_signal_connect (frame_clock, "after-paint",
|
|
|
|
G_CALLBACK (on_frame_clock_after_paint), surface);
|
2013-03-28 18:22:42 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 01:55:23 +00:00
|
|
|
static void
|
|
|
|
disconnect_frame_clock (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkFrameClock *frame_clock = gdk_surface_get_frame_clock (surface);
|
|
|
|
|
|
|
|
g_signal_handlers_disconnect_by_func (frame_clock,
|
|
|
|
on_frame_clock_before_paint, surface);
|
|
|
|
g_signal_handlers_disconnect_by_func (frame_clock,
|
|
|
|
on_frame_clock_after_paint, surface);
|
|
|
|
}
|
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkSurface *
|
|
|
|
_gdk_broadway_display_create_surface (GdkDisplay *display,
|
|
|
|
GdkSurfaceType surface_type,
|
|
|
|
GdkSurface *parent,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkFrameClock *frame_clock;
|
|
|
|
GdkSurface *surface;
|
|
|
|
GdkBroadwaySurface *impl;
|
|
|
|
|
|
|
|
frame_clock = _gdk_frame_clock_idle_new ();
|
|
|
|
|
|
|
|
surface = g_object_new (GDK_TYPE_BROADWAY_SURFACE,
|
2019-05-22 22:35:09 +00:00
|
|
|
"surface-type", surface_type,
|
2019-04-22 01:14:46 +00:00
|
|
|
"display", display,
|
|
|
|
"frame-clock", frame_clock,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_object_unref (frame_clock);
|
|
|
|
|
2019-04-22 14:21:17 +00:00
|
|
|
surface->parent = parent;
|
2019-04-22 01:14:46 +00:00
|
|
|
surface->x = x;
|
|
|
|
surface->y = y;
|
|
|
|
surface->width = width;
|
|
|
|
surface->height = height;
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (display);
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2017-12-05 13:38:57 +00:00
|
|
|
impl->id = _gdk_broadway_server_new_surface (broadway_display->server,
|
2018-03-21 08:17:50 +00:00
|
|
|
surface->x,
|
|
|
|
surface->y,
|
|
|
|
surface->width,
|
|
|
|
surface->height,
|
|
|
|
surface->surface_type == GDK_SURFACE_TEMP);
|
|
|
|
g_hash_table_insert (broadway_display->id_ht, GINT_TO_POINTER(impl->id), surface);
|
|
|
|
|
2019-04-22 20:27:08 +00:00
|
|
|
if (!surface->parent)
|
|
|
|
broadway_display->toplevels = g_list_prepend (broadway_display->toplevels, impl);
|
2013-03-28 18:22:42 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
connect_frame_clock (surface);
|
2019-04-22 01:14:46 +00:00
|
|
|
|
|
|
|
return surface;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2010-12-04 21:28:31 +00:00
|
|
|
static cairo_surface_t *
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_ref_cairo_surface (GdkSurface *surface)
|
2010-12-04 21:28:31 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
if (GDK_IS_BROADWAY_SURFACE (surface) &&
|
|
|
|
GDK_SURFACE_DESTROYED (surface))
|
2010-12-04 21:28:31 +00:00
|
|
|
return NULL;
|
|
|
|
|
2017-12-04 14:04:48 +00:00
|
|
|
return cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 1, 1);
|
2010-12-04 21:28:31 +00:00
|
|
|
}
|
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
_gdk_broadway_surface_destroy (GdkSurface *surface,
|
2019-04-22 01:14:46 +00:00
|
|
|
gboolean foreign_destroy)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2010-11-16 21:11:53 +00:00
|
|
|
|
2019-05-24 01:55:23 +00:00
|
|
|
disconnect_frame_clock (surface);
|
|
|
|
|
2017-11-21 18:33:12 +00:00
|
|
|
if (impl->node_data)
|
|
|
|
g_array_unref (impl->node_data);
|
|
|
|
if (impl->node_data_textures)
|
|
|
|
g_ptr_array_unref (impl->node_data_textures);
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
_gdk_broadway_surface_grab_check_destroy (surface);
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2017-11-07 02:11:16 +00:00
|
|
|
g_hash_table_remove (broadway_display->id_ht, GINT_TO_POINTER (impl->id));
|
2011-04-15 14:18:11 +00:00
|
|
|
|
2017-12-05 13:38:57 +00:00
|
|
|
_gdk_broadway_server_destroy_surface (broadway_display->server, impl->id);
|
2017-11-18 19:36:57 +00:00
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-21 18:33:12 +00:00
|
|
|
void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_nodes (GdkSurface *surface,
|
2019-04-22 01:14:46 +00:00
|
|
|
GArray *nodes,
|
|
|
|
GPtrArray *node_textures)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2017-11-21 18:33:12 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2017-11-21 18:33:12 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2017-11-21 18:33:12 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2017-11-21 18:33:12 +00:00
|
|
|
|
|
|
|
if (nodes)
|
|
|
|
g_array_ref (nodes);
|
|
|
|
if (impl->node_data)
|
|
|
|
g_array_unref (impl->node_data);
|
|
|
|
impl->node_data = nodes;
|
|
|
|
|
|
|
|
if (node_textures)
|
|
|
|
g_ptr_array_ref (node_textures);
|
|
|
|
if (impl->node_data_textures)
|
|
|
|
g_ptr_array_unref (impl->node_data_textures);
|
|
|
|
impl->node_data_textures = node_textures;
|
|
|
|
|
2017-12-05 13:38:57 +00:00
|
|
|
gdk_broadway_server_surface_set_nodes (broadway_display->server, impl->id, impl->node_data);
|
2017-11-21 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
/* This function is called when the XSurface is really gone.
|
2010-11-12 12:18:58 +00:00
|
|
|
*/
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_destroy_notify (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (surface))
|
|
|
|
_gdk_surface_destroy (surface, TRUE);
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_object_unref (surface);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_show (GdkSurface *surface,
|
|
|
|
gboolean already_mapped)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2010-11-15 21:12:04 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2011-04-11 09:56:22 +00:00
|
|
|
impl->visible = TRUE;
|
2010-11-15 21:12:04 +00:00
|
|
|
|
2018-07-15 18:23:54 +00:00
|
|
|
/* FIXME: update state ? */
|
2010-11-15 21:12:04 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2017-12-05 13:38:57 +00:00
|
|
|
if (_gdk_broadway_server_surface_show (broadway_display->server, impl->id))
|
2018-03-21 08:17:50 +00:00
|
|
|
queue_flush (surface);
|
2012-12-19 11:37:02 +00:00
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_hide (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2011-04-11 09:56:22 +00:00
|
|
|
impl->visible = FALSE;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-07-15 18:23:54 +00:00
|
|
|
/* FIXME: update state ? */
|
2010-11-15 21:12:04 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2013-04-05 15:06:09 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
_gdk_broadway_surface_grab_check_unmap (surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
_gdk_broadway_server_get_next_serial (broadway_display->server));
|
2013-04-05 15:06:09 +00:00
|
|
|
|
2017-12-05 13:38:57 +00:00
|
|
|
if (_gdk_broadway_server_surface_hide (broadway_display->server, impl->id))
|
2018-03-21 08:17:50 +00:00
|
|
|
queue_flush (surface);
|
2010-11-25 19:07:26 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
_gdk_surface_clear_update_area (surface);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_withdraw (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_hide (surface);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2010-11-21 19:46:50 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_move_resize (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl = GDK_BROADWAY_SURFACE (surface);
|
2011-01-06 22:36:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2013-01-08 16:33:29 +00:00
|
|
|
gboolean size_changed;
|
2010-11-23 11:52:10 +00:00
|
|
|
|
2013-01-08 16:33:29 +00:00
|
|
|
size_changed = FALSE;
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2010-11-21 19:46:50 +00:00
|
|
|
if (width > 0 || height > 0)
|
|
|
|
{
|
|
|
|
if (width < 1)
|
2017-11-21 18:33:12 +00:00
|
|
|
width = 1;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2010-11-21 19:46:50 +00:00
|
|
|
if (height < 1)
|
2017-11-21 18:33:12 +00:00
|
|
|
height = 1;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (width != surface->width ||
|
|
|
|
height != surface->height)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
|
|
|
size_changed = TRUE;
|
|
|
|
|
|
|
|
/* Resize clears the content */
|
|
|
|
impl->dirty = TRUE;
|
|
|
|
impl->last_synced = FALSE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
surface->width = width;
|
|
|
|
surface->height = height;
|
2017-11-21 18:33:12 +00:00
|
|
|
}
|
2010-11-23 11:52:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 20:27:08 +00:00
|
|
|
if (surface->parent)
|
|
|
|
{
|
|
|
|
impl->offset_x = x - surface->parent->x;
|
|
|
|
impl->offset_y = y - surface->parent->y;
|
|
|
|
}
|
|
|
|
|
2017-12-05 13:38:57 +00:00
|
|
|
_gdk_broadway_server_surface_move_resize (broadway_display->server,
|
|
|
|
impl->id,
|
|
|
|
with_move,
|
|
|
|
x, y,
|
2018-03-21 08:17:50 +00:00
|
|
|
surface->width, surface->height);
|
|
|
|
queue_flush (surface);
|
2013-01-08 16:33:29 +00:00
|
|
|
if (size_changed)
|
2018-04-24 12:31:24 +00:00
|
|
|
{
|
|
|
|
surface->resize_count++;
|
|
|
|
_gdk_surface_update_size (surface);
|
|
|
|
}
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 08:54:44 +00:00
|
|
|
static void
|
|
|
|
gdk_broadway_surface_toplevel_resize (GdkSurface *surface,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
gdk_broadway_surface_move_resize (surface, FALSE, 0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
2019-07-15 09:32:35 +00:00
|
|
|
static void
|
|
|
|
gdk_broadway_surface_move (GdkSurface *surface,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
gdk_broadway_surface_move_resize (surface, TRUE, x, y, -1, -1);
|
|
|
|
}
|
|
|
|
|
2019-07-15 09:35:24 +00:00
|
|
|
static void
|
|
|
|
gdk_broadway_surface_moved_to_rect (GdkSurface *surface,
|
|
|
|
GdkRectangle final_rect)
|
|
|
|
{
|
|
|
|
GdkSurface *toplevel;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
if (surface->surface_type == GDK_SURFACE_POPUP)
|
|
|
|
toplevel = surface->parent;
|
|
|
|
else
|
|
|
|
toplevel = surface->transient_for;
|
|
|
|
|
|
|
|
gdk_surface_get_origin (toplevel, &x, &y);
|
|
|
|
x += final_rect.x;
|
|
|
|
y += final_rect.y;
|
|
|
|
|
|
|
|
if (final_rect.width != surface->width ||
|
|
|
|
final_rect.height != surface->height)
|
|
|
|
{
|
|
|
|
gdk_broadway_surface_move_resize (surface,
|
|
|
|
TRUE,
|
|
|
|
x, y,
|
|
|
|
final_rect.width, final_rect.height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_broadway_surface_move (surface, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_broadway_surface_move_to_rect (GdkSurface *surface,
|
|
|
|
const GdkRectangle *rect,
|
|
|
|
GdkGravity rect_anchor,
|
|
|
|
GdkGravity surface_anchor,
|
|
|
|
GdkAnchorHints anchor_hints,
|
|
|
|
gint rect_anchor_dx,
|
|
|
|
gint rect_anchor_dy)
|
|
|
|
{
|
|
|
|
gdk_surface_move_to_rect_helper (surface,
|
|
|
|
rect,
|
|
|
|
rect_anchor,
|
|
|
|
surface_anchor,
|
|
|
|
anchor_hints,
|
|
|
|
rect_anchor_dx,
|
|
|
|
rect_anchor_dy,
|
|
|
|
gdk_broadway_surface_moved_to_rect);
|
|
|
|
}
|
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_raise (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_restack_toplevel (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkSurface *sibling,
|
|
|
|
gboolean above)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_lower (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_focus (GdkSurface *surface,
|
|
|
|
guint32 timestamp)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2013-11-12 11:03:50 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2013-11-12 11:03:50 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!surface->accept_focus)
|
2013-11-12 11:03:50 +00:00
|
|
|
return;
|
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2018-03-21 08:17:50 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2017-12-05 13:38:57 +00:00
|
|
|
_gdk_broadway_server_surface_focus (broadway_display->server,
|
|
|
|
impl->id);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_type_hint (GdkSurface *surface,
|
|
|
|
GdkSurfaceTypeHint hint)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurfaceTypeHint
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_get_type_hint (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
return GDK_SURFACE_TYPE_HINT_NORMAL;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_modal_hint (GdkSurface *surface,
|
|
|
|
gboolean modal)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_set_geometry_hints (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
const GdkGeometry *geometry,
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkSurfaceHints geom_mask)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2013-03-28 19:03:13 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2013-03-28 19:03:13 +00:00
|
|
|
|
|
|
|
impl->geometry_hints = *geometry;
|
|
|
|
impl->geometry_hints_mask = geom_mask;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_set_title (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
const gchar *title)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2010-11-15 19:08:18 +00:00
|
|
|
}
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_set_startup_id (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
const gchar *startup_id)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_transient_for (GdkSurface *surface,
|
|
|
|
GdkSurface *parent)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2011-04-05 10:02:46 +00:00
|
|
|
GdkBroadwayDisplay *display;
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2011-04-05 10:02:46 +00:00
|
|
|
int parent_id;
|
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2011-04-05 10:02:46 +00:00
|
|
|
|
|
|
|
parent_id = 0;
|
|
|
|
if (parent)
|
2019-04-22 01:14:46 +00:00
|
|
|
parent_id = GDK_BROADWAY_SURFACE (parent)->id;
|
2011-04-05 10:02:46 +00:00
|
|
|
|
|
|
|
impl->transient_for = parent_id;
|
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
display = GDK_BROADWAY_DISPLAY (gdk_surface_get_display (surface));
|
2017-12-05 13:38:57 +00:00
|
|
|
_gdk_broadway_server_surface_set_transient_for (display->server, impl->id, impl->transient_for);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_get_geometry (GdkSurface *surface,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2011-03-14 10:22:12 +00:00
|
|
|
|
|
|
|
/* TODO: These should really roundtrip to the client to get the current data */
|
|
|
|
|
|
|
|
if (x)
|
2019-04-22 01:14:46 +00:00
|
|
|
*x = surface->x;
|
2011-03-14 10:22:12 +00:00
|
|
|
if (y)
|
2019-04-22 01:14:46 +00:00
|
|
|
*y = surface->y;
|
2011-03-14 10:22:12 +00:00
|
|
|
if (width)
|
2019-04-22 01:14:46 +00:00
|
|
|
*width = surface->width;
|
2011-03-14 10:22:12 +00:00
|
|
|
if (height)
|
2019-04-22 01:14:46 +00:00
|
|
|
*height = surface->height;
|
2011-03-14 10:22:12 +00:00
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 01:58:13 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_get_root_coords (GdkSurface *surface,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint *root_x,
|
|
|
|
gint *root_y)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
if (root_x)
|
2019-04-22 01:14:46 +00:00
|
|
|
*root_x = x + surface->x;
|
2010-11-12 12:18:58 +00:00
|
|
|
if (root_y)
|
2019-04-22 01:14:46 +00:00
|
|
|
*root_y = y + surface->y;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_get_device_state (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gdouble *x,
|
|
|
|
gdouble *y,
|
|
|
|
GdkModifierType *mask)
|
2010-11-24 20:28:38 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *child;
|
2011-03-11 07:26:37 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_val_if_fail (surface == NULL || GDK_IS_SURFACE (surface), FALSE);
|
2011-03-11 07:26:37 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2011-03-11 07:26:37 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
GDK_DEVICE_GET_CLASS (device)->query_state (device, surface,
|
2017-08-15 12:57:53 +00:00
|
|
|
&child,
|
2011-03-11 07:26:37 +00:00
|
|
|
NULL, NULL,
|
|
|
|
x, y, mask);
|
|
|
|
return child != NULL;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2010-11-15 19:08:18 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_input_shape_combine_region (GdkSurface *surface,
|
2018-03-21 08:17:50 +00:00
|
|
|
const cairo_region_t *shape_region,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_accept_focus (GdkSurface *surface,
|
|
|
|
gboolean accept_focus)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
accept_focus = accept_focus != FALSE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (surface->accept_focus != accept_focus)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
surface->accept_focus = accept_focus;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_focus_on_map (GdkSurface *surface,
|
|
|
|
gboolean focus_on_map)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
|
|
|
focus_on_map = focus_on_map != FALSE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (surface->focus_on_map != focus_on_map)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
surface->focus_on_map = focus_on_map;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_icon_list (GdkSurface *surface,
|
|
|
|
GList *surfaces)
|
2010-11-15 19:08:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_icon_name (GdkSurface *surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
const gchar *name)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_object_set_qdata (G_OBJECT (surface), g_quark_from_static_string ("gdk-icon-name-set"),
|
2017-11-21 18:33:12 +00:00
|
|
|
GUINT_TO_POINTER (name != NULL));
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_iconify (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_deiconify (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_stick (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_unstick (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_maximize (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2016-09-09 12:53:18 +00:00
|
|
|
GdkDisplay *display;
|
|
|
|
GdkMonitor *monitor;
|
|
|
|
GdkRectangle geom;
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2015-06-26 11:49:23 +00:00
|
|
|
|
|
|
|
if (impl->maximized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
impl->maximized = TRUE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_synthesize_surface_state (surface, 0, GDK_SURFACE_STATE_MAXIMIZED);
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
impl->pre_maximize_x = surface->x;
|
|
|
|
impl->pre_maximize_y = surface->y;
|
|
|
|
impl->pre_maximize_width = surface->width;
|
|
|
|
impl->pre_maximize_height = surface->height;
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
display = gdk_surface_get_display (surface);
|
2016-09-09 12:53:18 +00:00
|
|
|
monitor = gdk_display_get_primary_monitor (display);
|
|
|
|
gdk_monitor_get_geometry (monitor, &geom);
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_move_resize (surface,
|
2016-09-09 12:53:18 +00:00
|
|
|
geom.x, geom.y,
|
|
|
|
geom.width, geom.height);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_unmaximize (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2015-06-26 11:49:23 +00:00
|
|
|
|
|
|
|
if (!impl->maximized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
impl->maximized = FALSE;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_synthesize_surface_state (surface, GDK_SURFACE_STATE_MAXIMIZED, 0);
|
2015-06-26 11:49:23 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_move_resize (surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
impl->pre_maximize_x,
|
|
|
|
impl->pre_maximize_y,
|
|
|
|
impl->pre_maximize_width,
|
|
|
|
impl->pre_maximize_height);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_fullscreen (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2010-11-15 19:08:18 +00:00
|
|
|
}
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_unfullscreen (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_keep_above (GdkSurface *surface,
|
|
|
|
gboolean setting)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_keep_below (GdkSurface *surface, gboolean setting)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_decorations (GdkSurface *surface,
|
|
|
|
GdkWMDecoration decorations)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
|
|
|
}
|
2010-11-15 19:08:18 +00:00
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static gboolean
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_get_decorations (GdkSurface *surface,
|
|
|
|
GdkWMDecoration *decorations)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2010-11-15 19:08:18 +00:00
|
|
|
gboolean result = FALSE;
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2010-11-15 19:08:18 +00:00
|
|
|
return result;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_functions (GdkSurface *surface,
|
|
|
|
GdkWMFunction functions)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-15 19:08:18 +00:00
|
|
|
return;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 20:27:08 +00:00
|
|
|
void
|
|
|
|
gdk_broadway_surface_update_popups (GdkSurface *parent)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
2019-05-22 22:04:45 +00:00
|
|
|
for (l = parent ->children; l; l = l->next)
|
2019-04-22 20:27:08 +00:00
|
|
|
{
|
|
|
|
GdkBroadwaySurface *popup_impl = l->data;
|
|
|
|
GdkSurface *popup = GDK_SURFACE (popup_impl);
|
|
|
|
int new_x = parent->x + popup_impl->offset_x;
|
|
|
|
int new_y = parent->y + popup_impl->offset_y;
|
|
|
|
|
|
|
|
if (new_x != popup->x || new_y != popup->y)
|
|
|
|
gdk_broadway_surface_move_resize (popup, TRUE, new_x, new_y, popup->width, popup->height);
|
|
|
|
gdk_broadway_surface_restack_toplevel (popup, parent, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-15 14:31:56 +00:00
|
|
|
typedef struct _MoveResizeData MoveResizeData;
|
|
|
|
|
|
|
|
struct _MoveResizeData
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkSurface *moveresize_surface;
|
|
|
|
GdkSurface *moveresize_emulation_surface;
|
2011-04-15 14:31:56 +00:00
|
|
|
gboolean is_resize;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceEdge resize_edge;
|
2011-04-15 14:31:56 +00:00
|
|
|
gint moveresize_button;
|
|
|
|
gint moveresize_x;
|
|
|
|
gint moveresize_y;
|
|
|
|
gint moveresize_orig_x;
|
|
|
|
gint moveresize_orig_y;
|
|
|
|
gint moveresize_orig_width;
|
|
|
|
gint moveresize_orig_height;
|
|
|
|
long moveresize_process_time;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceHints moveresize_geom_mask;
|
2013-03-28 19:03:13 +00:00
|
|
|
GdkGeometry moveresize_geometry;
|
2011-04-15 14:31:56 +00:00
|
|
|
BroadwayInputMsg *moveresize_pending_event;
|
|
|
|
};
|
|
|
|
|
|
|
|
static MoveResizeData *
|
|
|
|
get_move_resize_data (GdkDisplay *display,
|
2017-11-21 18:33:12 +00:00
|
|
|
gboolean create)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
2013-03-28 16:38:44 +00:00
|
|
|
GdkBroadwayDisplay *broadway_display;
|
2011-04-15 14:31:56 +00:00
|
|
|
MoveResizeData *mv_resize;
|
|
|
|
|
2013-03-28 16:38:44 +00:00
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (display);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2013-03-28 16:38:44 +00:00
|
|
|
mv_resize = broadway_display->move_resize_data;
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
if (!mv_resize && create)
|
|
|
|
{
|
|
|
|
mv_resize = g_new0 (MoveResizeData, 1);
|
|
|
|
mv_resize->display = display;
|
|
|
|
|
2013-03-28 16:38:44 +00:00
|
|
|
broadway_display->move_resize_data = mv_resize;
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return mv_resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_pos (MoveResizeData *mv_resize,
|
2017-11-21 18:33:12 +00:00
|
|
|
gint new_root_x,
|
|
|
|
gint new_root_y)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
|
|
|
gint dx, dy;
|
|
|
|
|
|
|
|
dx = new_root_x - mv_resize->moveresize_x;
|
|
|
|
dy = new_root_y - mv_resize->moveresize_y;
|
|
|
|
|
|
|
|
if (mv_resize->is_resize)
|
|
|
|
{
|
|
|
|
gint x, y, w, h;
|
|
|
|
|
|
|
|
x = mv_resize->moveresize_orig_x;
|
|
|
|
y = mv_resize->moveresize_orig_y;
|
|
|
|
|
|
|
|
w = mv_resize->moveresize_orig_width;
|
|
|
|
h = mv_resize->moveresize_orig_height;
|
|
|
|
|
|
|
|
switch (mv_resize->resize_edge)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
2017-11-21 18:33:12 +00:00
|
|
|
x += dx;
|
|
|
|
y += dy;
|
|
|
|
w -= dx;
|
|
|
|
h -= dy;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2017-11-21 18:33:12 +00:00
|
|
|
y += dy;
|
|
|
|
h -= dy;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2017-11-21 18:33:12 +00:00
|
|
|
y += dy;
|
|
|
|
h -= dy;
|
|
|
|
w += dx;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2017-11-21 18:33:12 +00:00
|
|
|
h += dy;
|
|
|
|
x += dx;
|
|
|
|
w -= dx;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2017-11-21 18:33:12 +00:00
|
|
|
w += dx;
|
|
|
|
h += dy;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
2017-11-21 18:33:12 +00:00
|
|
|
h += dy;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
2017-11-21 18:33:12 +00:00
|
|
|
w += dx;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
2017-11-21 18:33:12 +00:00
|
|
|
x += dx;
|
|
|
|
w -= dx;
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2017-11-21 18:33:12 +00:00
|
|
|
}
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
x = MAX (x, 0);
|
|
|
|
y = MAX (y, 0);
|
|
|
|
w = MAX (w, 1);
|
|
|
|
h = MAX (h, 1);
|
|
|
|
|
2013-03-28 19:03:13 +00:00
|
|
|
if (mv_resize->moveresize_geom_mask)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_constrain_size (&mv_resize->moveresize_geometry,
|
2017-11-21 18:33:12 +00:00
|
|
|
mv_resize->moveresize_geom_mask,
|
|
|
|
w, h, &w, &h);
|
|
|
|
}
|
2013-03-28 19:03:13 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_move_resize (mv_resize->moveresize_surface, x, y, w, h);
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gint x, y;
|
|
|
|
|
|
|
|
x = mv_resize->moveresize_orig_x + dx;
|
|
|
|
y = mv_resize->moveresize_orig_y + dy;
|
|
|
|
|
2019-07-15 09:32:35 +00:00
|
|
|
gdk_broadway_surface_move (mv_resize->moveresize_surface, x, y);
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_drag (MoveResizeData *mv_resize)
|
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_destroy (mv_resize->moveresize_emulation_surface);
|
|
|
|
mv_resize->moveresize_emulation_surface = NULL;
|
|
|
|
g_object_unref (mv_resize->moveresize_surface);
|
|
|
|
mv_resize->moveresize_surface = NULL;
|
2014-07-14 15:02:13 +00:00
|
|
|
g_clear_pointer (&mv_resize->moveresize_pending_event, g_free);
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
moveresize_lookahead (GdkDisplay *display,
|
2017-11-21 18:33:12 +00:00
|
|
|
MoveResizeData *mv_resize,
|
|
|
|
BroadwayInputMsg *event)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
|
|
|
GdkBroadwayDisplay *broadway_display;
|
|
|
|
|
|
|
|
broadway_display = GDK_BROADWAY_DISPLAY (display);
|
|
|
|
|
2012-12-19 11:37:02 +00:00
|
|
|
return !_gdk_broadway_server_lookahead_event (broadway_display->server, "mb");
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_gdk_broadway_moveresize_handle_event (GdkDisplay *display,
|
2017-11-21 18:33:12 +00:00
|
|
|
BroadwayInputMsg *event)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
|
|
|
guint button_mask = 0;
|
|
|
|
MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (!mv_resize || !mv_resize->moveresize_surface)
|
2011-04-15 14:31:56 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
button_mask = GDK_BUTTON1_MASK << (mv_resize->moveresize_button - 1);
|
|
|
|
|
|
|
|
switch (event->base.type)
|
|
|
|
{
|
2013-11-12 15:44:30 +00:00
|
|
|
case BROADWAY_EVENT_TOUCH:
|
|
|
|
if (event->touch.touch_type == 2) /* END */
|
|
|
|
{
|
|
|
|
update_pos (mv_resize,
|
|
|
|
event->touch.root_x,
|
|
|
|
event->touch.root_y);
|
|
|
|
|
|
|
|
finish_drag (mv_resize);
|
|
|
|
}
|
|
|
|
else if (event->touch.touch_type == 1) /* UPDATE */
|
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
if (mv_resize->moveresize_surface->resize_count > 0)
|
2013-11-12 15:44:30 +00:00
|
|
|
{
|
|
|
|
if (mv_resize->moveresize_pending_event)
|
|
|
|
*mv_resize->moveresize_pending_event = *event;
|
|
|
|
else
|
|
|
|
mv_resize->moveresize_pending_event =
|
|
|
|
g_memdup (event, sizeof (BroadwayInputMsg));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
update_pos (mv_resize,
|
|
|
|
event->touch.root_x,
|
|
|
|
event->touch.root_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2013-03-28 16:38:44 +00:00
|
|
|
case BROADWAY_EVENT_POINTER_MOVE:
|
2018-03-21 08:17:50 +00:00
|
|
|
if (mv_resize->moveresize_surface->resize_count > 0)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
|
|
|
if (mv_resize->moveresize_pending_event)
|
|
|
|
*mv_resize->moveresize_pending_event = *event;
|
|
|
|
else
|
|
|
|
mv_resize->moveresize_pending_event =
|
|
|
|
g_memdup (event, sizeof (BroadwayInputMsg));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2011-04-15 14:31:56 +00:00
|
|
|
if (!moveresize_lookahead (display, mv_resize, event))
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
update_pos (mv_resize,
|
2017-11-21 18:33:12 +00:00
|
|
|
event->pointer.root_x,
|
|
|
|
event->pointer.root_y);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
/* This should never be triggered in normal cases, but in the
|
|
|
|
* case where the drag started without an implicit grab being
|
|
|
|
* in effect, we could miss the release if it occurs before
|
|
|
|
* we grab the pointer; this ensures that we will never
|
|
|
|
* get a permanently stuck grab.
|
|
|
|
*/
|
|
|
|
if ((event->pointer.state & button_mask) == 0)
|
2017-11-21 18:33:12 +00:00
|
|
|
finish_drag (mv_resize);
|
2011-04-15 14:31:56 +00:00
|
|
|
break;
|
|
|
|
|
2013-03-28 16:38:44 +00:00
|
|
|
case BROADWAY_EVENT_BUTTON_RELEASE:
|
2011-04-15 14:31:56 +00:00
|
|
|
update_pos (mv_resize,
|
2017-11-21 18:33:12 +00:00
|
|
|
event->pointer.root_x,
|
|
|
|
event->pointer.root_y);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
if (event->button.button == mv_resize->moveresize_button)
|
2017-11-21 18:33:12 +00:00
|
|
|
finish_drag (mv_resize);
|
2011-04-15 14:31:56 +00:00
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2011-04-15 14:31:56 +00:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_gdk_broadway_moveresize_configure_done (GdkDisplay *display,
|
2018-03-21 08:17:50 +00:00
|
|
|
GdkSurface *surface)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
|
|
|
BroadwayInputMsg *tmp_event;
|
|
|
|
MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (!mv_resize || surface != mv_resize->moveresize_surface)
|
2011-04-15 14:31:56 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (mv_resize->moveresize_pending_event)
|
|
|
|
{
|
|
|
|
tmp_event = mv_resize->moveresize_pending_event;
|
|
|
|
mv_resize->moveresize_pending_event = NULL;
|
|
|
|
_gdk_broadway_moveresize_handle_event (display, tmp_event);
|
|
|
|
g_free (tmp_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
create_moveresize_surface (MoveResizeData *mv_resize,
|
|
|
|
guint32 timestamp)
|
2011-04-15 14:31:56 +00:00
|
|
|
{
|
|
|
|
GdkGrabStatus status;
|
2016-10-24 08:13:14 +00:00
|
|
|
GdkSeat *seat;
|
|
|
|
GdkDevice *pointer;
|
2019-04-20 01:29:25 +00:00
|
|
|
GdkRectangle rect = { -100, -100, 1, 1 };
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
g_assert (mv_resize->moveresize_emulation_surface == NULL);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2019-04-21 16:51:10 +00:00
|
|
|
mv_resize->moveresize_emulation_surface = gdk_surface_new_temp (mv_resize->display, &rect);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_show (mv_resize->moveresize_emulation_surface);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2016-10-24 08:13:14 +00:00
|
|
|
seat = gdk_display_get_default_seat (mv_resize->display);
|
|
|
|
pointer = gdk_seat_get_pointer (seat);
|
|
|
|
|
2013-04-01 13:38:19 +00:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
|
2016-10-24 08:13:14 +00:00
|
|
|
status = gdk_device_grab (pointer,
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize->moveresize_emulation_surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
GDK_OWNERSHIP_APPLICATION,
|
|
|
|
FALSE,
|
|
|
|
GDK_BUTTON_RELEASE_MASK |
|
|
|
|
GDK_POINTER_MOTION_MASK,
|
|
|
|
NULL,
|
|
|
|
timestamp);
|
2013-04-01 13:38:19 +00:00
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS;
|
2011-04-15 14:31:56 +00:00
|
|
|
|
|
|
|
if (status != GDK_GRAB_SUCCESS)
|
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
/* If this fails, some other client has grabbed the surface
|
2011-04-15 14:31:56 +00:00
|
|
|
* already.
|
|
|
|
*/
|
|
|
|
finish_drag (mv_resize);
|
|
|
|
}
|
|
|
|
|
|
|
|
mv_resize->moveresize_process_time = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-28 19:03:13 +00:00
|
|
|
static void
|
|
|
|
calculate_unmoving_origin (MoveResizeData *mv_resize)
|
|
|
|
{
|
2019-05-29 04:53:10 +00:00
|
|
|
gint x, y, width, height;
|
2013-03-28 19:03:13 +00:00
|
|
|
|
|
|
|
if (mv_resize->moveresize_geom_mask & GDK_HINT_WIN_GRAVITY &&
|
|
|
|
mv_resize->moveresize_geometry.win_gravity == GDK_GRAVITY_STATIC)
|
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_get_origin (mv_resize->moveresize_surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
&mv_resize->moveresize_orig_x,
|
|
|
|
&mv_resize->moveresize_orig_y);
|
2013-03-28 19:03:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_surface_get_geometry (mv_resize->moveresize_surface,
|
2019-05-29 04:53:10 +00:00
|
|
|
&x, &y, &width, &height);
|
2013-03-28 19:03:13 +00:00
|
|
|
|
|
|
|
switch (mv_resize->moveresize_geometry.win_gravity)
|
2017-11-21 18:33:12 +00:00
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x;
|
|
|
|
mv_resize->moveresize_orig_y = y;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x + width / 2;
|
|
|
|
mv_resize->moveresize_orig_y = y;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x = width;
|
|
|
|
mv_resize->moveresize_orig_y = y;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_WEST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x;
|
|
|
|
mv_resize->moveresize_orig_y = y + height / 2;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x + width / 2;
|
|
|
|
mv_resize->moveresize_orig_y = y + height / 2;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_EAST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x + width;
|
|
|
|
mv_resize->moveresize_orig_y = y + height / 2;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x + width;
|
|
|
|
mv_resize->moveresize_orig_y = y + height;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x + width / 2;
|
|
|
|
mv_resize->moveresize_orig_y = y + height;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x;
|
|
|
|
mv_resize->moveresize_orig_y = y + height;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
case GDK_GRAVITY_STATIC:
|
2017-11-21 18:33:12 +00:00
|
|
|
default:
|
2019-05-29 04:53:10 +00:00
|
|
|
mv_resize->moveresize_orig_x = x;
|
|
|
|
mv_resize->moveresize_orig_y = y;
|
2017-11-21 18:33:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-03-28 19:03:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_begin_resize_drag (GdkSurface *surface,
|
|
|
|
GdkSurfaceEdge edge,
|
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-03-28 08:36:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2018-03-21 08:17:50 +00:00
|
|
|
guint32 timestamp)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2011-04-15 14:31:56 +00:00
|
|
|
MoveResizeData *mv_resize;
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2013-03-28 19:03:13 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
|
2015-06-26 11:49:23 +00:00
|
|
|
if (impl->maximized)
|
|
|
|
return;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize = get_move_resize_data (gdk_surface_get_display (surface), TRUE);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2019-03-22 12:52:08 +00:00
|
|
|
if (mv_resize->moveresize_surface != NULL)
|
|
|
|
return; /* already a drag operation in progress */
|
|
|
|
|
2011-04-15 14:31:56 +00:00
|
|
|
mv_resize->is_resize = TRUE;
|
|
|
|
mv_resize->moveresize_button = button;
|
|
|
|
mv_resize->resize_edge = edge;
|
2019-04-22 20:27:08 +00:00
|
|
|
mv_resize->moveresize_x = x + surface->x;
|
2019-04-22 01:14:46 +00:00
|
|
|
mv_resize->moveresize_y = y + surface->y;
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize->moveresize_surface = g_object_ref (surface);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize->moveresize_orig_width = gdk_surface_get_width (surface);
|
|
|
|
mv_resize->moveresize_orig_height = gdk_surface_get_height (surface);
|
2011-04-15 14:31:56 +00:00
|
|
|
|
2013-03-28 19:03:13 +00:00
|
|
|
mv_resize->moveresize_geom_mask = impl->geometry_hints_mask;
|
|
|
|
mv_resize->moveresize_geometry = impl->geometry_hints;
|
|
|
|
|
|
|
|
calculate_unmoving_origin (mv_resize);
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
create_moveresize_surface (mv_resize, timestamp);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_begin_move_drag (GdkSurface *surface,
|
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-03-28 08:36:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2018-03-21 08:17:50 +00:00
|
|
|
guint32 timestamp)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2013-11-06 12:28:12 +00:00
|
|
|
MoveResizeData *mv_resize;
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkBroadwaySurface *impl;
|
2013-11-06 12:28:12 +00:00
|
|
|
|
2019-04-22 01:14:46 +00:00
|
|
|
impl = GDK_BROADWAY_SURFACE (surface);
|
2013-11-06 12:28:12 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
|
2015-06-26 11:49:23 +00:00
|
|
|
if (impl->maximized)
|
|
|
|
return;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize = get_move_resize_data (gdk_surface_get_display (surface), TRUE);
|
2013-11-06 12:28:12 +00:00
|
|
|
|
2019-03-22 12:52:08 +00:00
|
|
|
if (mv_resize->moveresize_surface != NULL)
|
|
|
|
return; /* already a drag operation in progress */
|
|
|
|
|
2013-11-06 12:28:12 +00:00
|
|
|
mv_resize->is_resize = FALSE;
|
|
|
|
mv_resize->moveresize_button = button;
|
2019-04-22 01:14:46 +00:00
|
|
|
mv_resize->moveresize_x = x + surface->x;
|
|
|
|
mv_resize->moveresize_y = y + surface->y;
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize->moveresize_surface = g_object_ref (surface);
|
2013-11-06 12:28:12 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
mv_resize->moveresize_orig_width = gdk_surface_get_width (surface);
|
|
|
|
mv_resize->moveresize_orig_height = gdk_surface_get_height (surface);
|
2013-11-06 12:28:12 +00:00
|
|
|
|
|
|
|
mv_resize->moveresize_geom_mask = impl->geometry_hints_mask;
|
|
|
|
mv_resize->moveresize_geometry = impl->geometry_hints;
|
|
|
|
|
|
|
|
calculate_unmoving_origin (mv_resize);
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
create_moveresize_surface (mv_resize, timestamp);
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static gboolean
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_beep (GdkSurface *surface)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2011-01-06 22:36:44 +00:00
|
|
|
return FALSE;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
static void
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_surface_set_opacity (GdkSurface *surface,
|
2017-11-21 18:33:12 +00:00
|
|
|
gdouble opacity)
|
2010-11-12 12:18:58 +00:00
|
|
|
{
|
2018-03-21 08:17:50 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-11-12 12:18:58 +00:00
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-11-12 12:18:58 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (opacity < 0)
|
|
|
|
opacity = 0;
|
|
|
|
else if (opacity > 1)
|
|
|
|
opacity = 1;
|
|
|
|
}
|
|
|
|
|
2011-04-07 18:18:13 +00:00
|
|
|
guint32
|
2018-03-21 08:17:50 +00:00
|
|
|
gdk_broadway_get_last_seen_time (GdkSurface *surface)
|
2011-04-07 18:18:13 +00:00
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
2018-03-21 08:17:50 +00:00
|
|
|
display = gdk_surface_get_display (surface);
|
2012-12-19 11:37:02 +00:00
|
|
|
return _gdk_broadway_server_get_last_seen_time (GDK_BROADWAY_DISPLAY (display)->server);
|
2011-04-07 18:18:13 +00:00
|
|
|
}
|
|
|
|
|
2010-11-12 12:18:58 +00:00
|
|
|
static void
|
2019-04-22 01:14:46 +00:00
|
|
|
gdk_broadway_surface_class_init (GdkBroadwaySurfaceClass *klass)
|
2010-12-04 21:28:31 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2019-04-22 01:14:46 +00:00
|
|
|
GdkSurfaceClass *impl_class = GDK_SURFACE_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gdk_broadway_surface_finalize;
|
|
|
|
|
|
|
|
impl_class->ref_cairo_surface = gdk_broadway_surface_ref_cairo_surface;
|
|
|
|
impl_class->show = gdk_broadway_surface_show;
|
|
|
|
impl_class->hide = gdk_broadway_surface_hide;
|
|
|
|
impl_class->withdraw = gdk_broadway_surface_withdraw;
|
|
|
|
impl_class->raise = gdk_broadway_surface_raise;
|
|
|
|
impl_class->lower = gdk_broadway_surface_lower;
|
|
|
|
impl_class->restack_toplevel = gdk_broadway_surface_restack_toplevel;
|
|
|
|
impl_class->move_resize = gdk_broadway_surface_move_resize;
|
2019-07-15 08:54:44 +00:00
|
|
|
impl_class->toplevel_resize = gdk_broadway_surface_toplevel_resize;
|
2019-07-15 09:35:24 +00:00
|
|
|
impl_class->move_to_rect = gdk_broadway_surface_move_to_rect;
|
2019-04-22 01:14:46 +00:00
|
|
|
impl_class->get_geometry = gdk_broadway_surface_get_geometry;
|
|
|
|
impl_class->get_root_coords = gdk_broadway_surface_get_root_coords;
|
|
|
|
impl_class->get_device_state = gdk_broadway_surface_get_device_state;
|
|
|
|
impl_class->input_shape_combine_region = gdk_broadway_surface_input_shape_combine_region;
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_class->destroy = _gdk_broadway_surface_destroy;
|
|
|
|
impl_class->beep = gdk_broadway_surface_beep;
|
|
|
|
|
|
|
|
impl_class->focus = gdk_broadway_surface_focus;
|
|
|
|
impl_class->set_type_hint = gdk_broadway_surface_set_type_hint;
|
|
|
|
impl_class->get_type_hint = gdk_broadway_surface_get_type_hint;
|
|
|
|
impl_class->set_modal_hint = gdk_broadway_surface_set_modal_hint;
|
|
|
|
impl_class->set_geometry_hints = gdk_broadway_surface_set_geometry_hints;
|
|
|
|
impl_class->set_title = gdk_broadway_surface_set_title;
|
|
|
|
impl_class->set_startup_id = gdk_broadway_surface_set_startup_id;
|
|
|
|
impl_class->set_transient_for = gdk_broadway_surface_set_transient_for;
|
|
|
|
impl_class->set_accept_focus = gdk_broadway_surface_set_accept_focus;
|
|
|
|
impl_class->set_focus_on_map = gdk_broadway_surface_set_focus_on_map;
|
|
|
|
impl_class->set_icon_list = gdk_broadway_surface_set_icon_list;
|
|
|
|
impl_class->set_icon_name = gdk_broadway_surface_set_icon_name;
|
|
|
|
impl_class->iconify = gdk_broadway_surface_iconify;
|
|
|
|
impl_class->deiconify = gdk_broadway_surface_deiconify;
|
|
|
|
impl_class->stick = gdk_broadway_surface_stick;
|
|
|
|
impl_class->unstick = gdk_broadway_surface_unstick;
|
|
|
|
impl_class->maximize = gdk_broadway_surface_maximize;
|
|
|
|
impl_class->unmaximize = gdk_broadway_surface_unmaximize;
|
|
|
|
impl_class->fullscreen = gdk_broadway_surface_fullscreen;
|
|
|
|
impl_class->unfullscreen = gdk_broadway_surface_unfullscreen;
|
|
|
|
impl_class->set_keep_above = gdk_broadway_surface_set_keep_above;
|
|
|
|
impl_class->set_keep_below = gdk_broadway_surface_set_keep_below;
|
|
|
|
impl_class->set_decorations = gdk_broadway_surface_set_decorations;
|
|
|
|
impl_class->get_decorations = gdk_broadway_surface_get_decorations;
|
|
|
|
impl_class->set_functions = gdk_broadway_surface_set_functions;
|
|
|
|
impl_class->begin_resize_drag = gdk_broadway_surface_begin_resize_drag;
|
|
|
|
impl_class->begin_move_drag = gdk_broadway_surface_begin_move_drag;
|
|
|
|
impl_class->set_opacity = gdk_broadway_surface_set_opacity;
|
|
|
|
impl_class->destroy_notify = gdk_broadway_surface_destroy_notify;
|
|
|
|
impl_class->register_dnd = _gdk_broadway_surface_register_dnd;
|
|
|
|
impl_class->drag_begin = _gdk_broadway_surface_drag_begin;
|
2010-11-12 12:18:58 +00:00
|
|
|
}
|