forked from AuroraMiddleware/gtk
03d6d272f7
surface->x/y (and various x,y arguments) should be in the parent coordinates, so treat it as such. We also keep track of the root coords as these are needed for popup positioning. Also, drop the isTemp property server side and the weird initial placement at (100, 100) in the daemon. We now fully control window placement from the client instead. If this is not we want we should do a serious design for that but until then lets do the simplest thing.
411 lines
15 KiB
C
411 lines
15 KiB
C
/* GDK - The GIMP Drawing Kit
|
|
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
|
|
*
|
|
* 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
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "gdkeventsource.h"
|
|
#include "gdkseat.h"
|
|
|
|
#include "gdksurfaceprivate.h"
|
|
#include "gdkframeclockprivate.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
static gboolean gdk_event_source_prepare (GSource *source,
|
|
gint *timeout);
|
|
static gboolean gdk_event_source_check (GSource *source);
|
|
static gboolean gdk_event_source_dispatch (GSource *source,
|
|
GSourceFunc callback,
|
|
gpointer user_data);
|
|
static void gdk_event_source_finalize (GSource *source);
|
|
|
|
#define HAS_FOCUS(toplevel) \
|
|
((toplevel)->has_focus || (toplevel)->has_pointer_focus)
|
|
|
|
struct _GdkEventSource
|
|
{
|
|
GSource source;
|
|
|
|
GdkDisplay *display;
|
|
GPollFD event_poll_fd;
|
|
};
|
|
|
|
static GSourceFuncs event_funcs = {
|
|
gdk_event_source_prepare,
|
|
gdk_event_source_check,
|
|
gdk_event_source_dispatch,
|
|
gdk_event_source_finalize
|
|
};
|
|
|
|
static GList *event_sources = NULL;
|
|
|
|
static gboolean
|
|
gdk_event_source_prepare (GSource *source,
|
|
gint *timeout)
|
|
{
|
|
GdkDisplay *display = ((GdkEventSource*) source)->display;
|
|
gboolean retval;
|
|
|
|
*timeout = -1;
|
|
|
|
retval = (_gdk_event_queue_find_first (display) != NULL);
|
|
|
|
return retval;
|
|
}
|
|
|
|
static gboolean
|
|
gdk_event_source_check (GSource *source)
|
|
{
|
|
GdkEventSource *event_source = (GdkEventSource*) source;
|
|
gboolean retval;
|
|
|
|
if (event_source->display->event_pause_count > 0 ||
|
|
event_source->event_poll_fd.revents & G_IO_IN)
|
|
retval = (_gdk_event_queue_find_first (event_source->display) != NULL);
|
|
else
|
|
retval = FALSE;
|
|
|
|
return retval;
|
|
}
|
|
|
|
void
|
|
_gdk_broadway_events_got_input (GdkDisplay *display,
|
|
BroadwayInputMsg *message)
|
|
{
|
|
GdkBroadwayDisplay *display_broadway;
|
|
GdkSeat *seat;
|
|
GdkSurface *surface;
|
|
GdkEvent *event = NULL;
|
|
GList *node;
|
|
|
|
display_broadway = GDK_BROADWAY_DISPLAY (display);
|
|
seat = gdk_display_get_default_seat (display);
|
|
|
|
switch (message->base.type) {
|
|
case BROADWAY_EVENT_ENTER:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->pointer.event_surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_crossing_new (GDK_ENTER_NOTIFY,
|
|
surface,
|
|
gdk_seat_get_pointer (seat),
|
|
gdk_seat_get_pointer (seat),
|
|
message->base.time,
|
|
message->pointer.state,
|
|
message->pointer.win_x,
|
|
message->pointer.win_y,
|
|
message->crossing.mode,
|
|
GDK_NOTIFY_ANCESTOR);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
break;
|
|
case BROADWAY_EVENT_LEAVE:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->pointer.event_surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_crossing_new (GDK_LEAVE_NOTIFY,
|
|
surface,
|
|
gdk_seat_get_pointer (seat),
|
|
gdk_seat_get_pointer (seat),
|
|
message->base.time,
|
|
message->pointer.state,
|
|
message->pointer.win_x,
|
|
message->pointer.win_y,
|
|
message->crossing.mode,
|
|
GDK_NOTIFY_ANCESTOR);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
break;
|
|
case BROADWAY_EVENT_POINTER_MOVE:
|
|
if (_gdk_broadway_moveresize_handle_event (display, message))
|
|
break;
|
|
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->pointer.event_surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_motion_new (surface,
|
|
gdk_seat_get_pointer (seat),
|
|
gdk_seat_get_pointer (seat),
|
|
NULL,
|
|
message->base.time,
|
|
message->pointer.state,
|
|
message->pointer.win_x,
|
|
message->pointer.win_y,
|
|
NULL);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
|
|
break;
|
|
case BROADWAY_EVENT_BUTTON_PRESS:
|
|
case BROADWAY_EVENT_BUTTON_RELEASE:
|
|
if (message->base.type != BROADWAY_EVENT_BUTTON_PRESS &&
|
|
_gdk_broadway_moveresize_handle_event (display, message))
|
|
break;
|
|
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->pointer.event_surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_button_new (message->base.type == BROADWAY_EVENT_BUTTON_PRESS
|
|
? GDK_BUTTON_PRESS
|
|
: GDK_BUTTON_RELEASE,
|
|
surface,
|
|
gdk_seat_get_pointer (seat),
|
|
gdk_seat_get_pointer (seat),
|
|
NULL,
|
|
message->base.time,
|
|
message->pointer.state,
|
|
message->button.button,
|
|
message->pointer.win_x,
|
|
message->pointer.win_y,
|
|
NULL);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
|
|
break;
|
|
case BROADWAY_EVENT_SCROLL:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->pointer.event_surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_discrete_scroll_new (surface,
|
|
gdk_seat_get_pointer (seat),
|
|
gdk_seat_get_pointer (seat),
|
|
NULL,
|
|
message->base.time,
|
|
0,
|
|
message->scroll.dir == 0
|
|
? GDK_SCROLL_UP
|
|
: GDK_SCROLL_DOWN,
|
|
FALSE);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
|
|
break;
|
|
case BROADWAY_EVENT_TOUCH:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->touch.event_surface_id));
|
|
if (surface)
|
|
{
|
|
GdkEventType event_type = 0;
|
|
GdkModifierType state;
|
|
GdkDevice *source_device;
|
|
|
|
switch (message->touch.touch_type) {
|
|
case 0:
|
|
event_type = GDK_TOUCH_BEGIN;
|
|
break;
|
|
case 1:
|
|
event_type = GDK_TOUCH_UPDATE;
|
|
break;
|
|
case 2:
|
|
event_type = GDK_TOUCH_END;
|
|
break;
|
|
default:
|
|
g_printerr ("_gdk_broadway_events_got_input - Unknown touch type %d\n", message->touch.touch_type);
|
|
}
|
|
|
|
if (event_type != GDK_TOUCH_BEGIN &&
|
|
message->touch.is_emulated && _gdk_broadway_moveresize_handle_event (display, message))
|
|
break;
|
|
|
|
source_device = gdk_seat_get_pointer (seat);
|
|
{
|
|
GList *devices;
|
|
devices = gdk_seat_get_slaves (seat, GDK_SEAT_CAPABILITY_TOUCH);
|
|
if (devices)
|
|
source_device = GDK_DEVICE (devices->data);
|
|
g_list_free (devices);
|
|
}
|
|
|
|
state = message->touch.state;
|
|
if (event_type == GDK_TOUCH_BEGIN || event_type == GDK_TOUCH_UPDATE)
|
|
state |= GDK_BUTTON1_MASK;
|
|
|
|
event = gdk_event_touch_new (event_type,
|
|
GUINT_TO_POINTER (message->touch.sequence_id),
|
|
surface,
|
|
gdk_seat_get_pointer (seat),
|
|
source_device,
|
|
message->base.time,
|
|
state,
|
|
message->touch.win_x,
|
|
message->touch.win_y,
|
|
NULL,
|
|
message->touch.is_emulated);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
|
|
break;
|
|
case BROADWAY_EVENT_KEY_PRESS:
|
|
case BROADWAY_EVENT_KEY_RELEASE:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht,
|
|
GINT_TO_POINTER (message->key.surface_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_key_new (message->base.type == BROADWAY_EVENT_KEY_PRESS
|
|
? GDK_KEY_PRESS
|
|
: GDK_KEY_RELEASE,
|
|
surface,
|
|
gdk_seat_get_keyboard (seat),
|
|
gdk_seat_get_keyboard (seat),
|
|
message->base.time,
|
|
message->key.state,
|
|
message->key.key,
|
|
message->key.key,
|
|
message->key.key,
|
|
0,
|
|
FALSE);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
|
|
break;
|
|
case BROADWAY_EVENT_GRAB_NOTIFY:
|
|
case BROADWAY_EVENT_UNGRAB_NOTIFY:
|
|
_gdk_display_device_grab_update (display, gdk_seat_get_pointer (seat), gdk_seat_get_pointer (seat), message->base.serial);
|
|
break;
|
|
|
|
case BROADWAY_EVENT_CONFIGURE_NOTIFY:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->configure_notify.id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_configure_new (surface,
|
|
message->configure_notify.width,
|
|
message->configure_notify.height);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
|
|
if (surface->resize_count >= 1)
|
|
{
|
|
surface->resize_count -= 1;
|
|
|
|
if (surface->resize_count == 0)
|
|
_gdk_broadway_moveresize_configure_done (display, surface);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case BROADWAY_EVENT_ROUNDTRIP_NOTIFY:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->roundtrip_notify.id));
|
|
if (surface)
|
|
_gdk_broadway_roundtrip_notify (surface, message->roundtrip_notify.tag, message->roundtrip_notify.local);
|
|
break;
|
|
|
|
case BROADWAY_EVENT_SCREEN_SIZE_CHANGED:
|
|
_gdk_broadway_display_size_changed (display, &message->screen_resize_notify);
|
|
break;
|
|
|
|
case BROADWAY_EVENT_FOCUS:
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->focus.old_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_focus_new (surface,
|
|
gdk_seat_get_keyboard (seat),
|
|
gdk_seat_get_keyboard (seat),
|
|
FALSE);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
surface = g_hash_table_lookup (display_broadway->id_ht, GINT_TO_POINTER (message->focus.new_id));
|
|
if (surface)
|
|
{
|
|
event = gdk_event_focus_new (surface,
|
|
gdk_seat_get_keyboard (seat),
|
|
gdk_seat_get_keyboard (seat),
|
|
TRUE);
|
|
|
|
node = _gdk_event_queue_append (display, event);
|
|
_gdk_windowing_got_event (display, node, event, message->base.serial);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
g_printerr ("_gdk_broadway_events_got_input - Unknown input command %c\n", message->base.type);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
_gdk_broadway_display_queue_events (GdkDisplay *display)
|
|
{
|
|
}
|
|
|
|
static gboolean
|
|
gdk_event_source_dispatch (GSource *source,
|
|
GSourceFunc callback,
|
|
gpointer user_data)
|
|
{
|
|
GdkDisplay *display = ((GdkEventSource*) source)->display;
|
|
GdkEvent *event;
|
|
|
|
event = gdk_display_get_event (display);
|
|
|
|
if (event)
|
|
{
|
|
_gdk_event_emit (event);
|
|
|
|
gdk_event_unref (event);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
gdk_event_source_finalize (GSource *source)
|
|
{
|
|
GdkEventSource *event_source = (GdkEventSource *)source;
|
|
|
|
event_sources = g_list_remove (event_sources, event_source);
|
|
}
|
|
|
|
GSource *
|
|
_gdk_broadway_event_source_new (GdkDisplay *display)
|
|
{
|
|
GSource *source;
|
|
GdkEventSource *event_source;
|
|
char *name;
|
|
|
|
source = g_source_new (&event_funcs, sizeof (GdkEventSource));
|
|
name = g_strdup_printf ("GDK Broadway Event source (%s)",
|
|
gdk_display_get_name (display));
|
|
g_source_set_name (source, name);
|
|
g_free (name);
|
|
event_source = (GdkEventSource *) source;
|
|
event_source->display = display;
|
|
|
|
g_source_set_priority (source, GDK_PRIORITY_EVENTS);
|
|
g_source_set_can_recurse (source, TRUE);
|
|
g_source_attach (source, NULL);
|
|
|
|
event_sources = g_list_prepend (event_sources, source);
|
|
|
|
return source;
|
|
}
|