2005-11-22 10:03:32 +00:00
|
|
|
/* gdkdnd-quartz.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Imendio AB
|
|
|
|
*
|
|
|
|
* 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/>.
|
2005-11-22 10:03:32 +00:00
|
|
|
*/
|
|
|
|
|
2018-02-27 18:53:43 +00:00
|
|
|
#include "config.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
#include "gdkdnd.h"
|
2010-12-23 11:59:26 +00:00
|
|
|
#include "gdkquartzdnd.h"
|
2006-03-21 08:02:17 +00:00
|
|
|
#include "gdkprivate-quartz.h"
|
|
|
|
|
2010-12-23 11:59:26 +00:00
|
|
|
|
2010-12-22 12:31:58 +00:00
|
|
|
G_DEFINE_TYPE (GdkQuartzDragContext, gdk_quartz_drag_context, GDK_TYPE_DRAG_CONTEXT)
|
2006-03-21 08:02:17 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2006-03-21 08:02:17 +00:00
|
|
|
GdkDragContext *_gdk_quartz_drag_source_context = NULL;
|
|
|
|
|
2009-09-30 13:07:37 +00:00
|
|
|
GdkDragContext *
|
2018-03-01 13:31:57 +00:00
|
|
|
gdk_quartz_drag_source_context_libgtk_only ()
|
2009-09-30 13:07:37 +00:00
|
|
|
{
|
|
|
|
return _gdk_quartz_drag_source_context;
|
|
|
|
}
|
|
|
|
|
2010-12-17 15:52:14 +00:00
|
|
|
GdkDragContext *
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_quartz_surface_drag_begin (GdkSurface *window,
|
2010-12-17 15:52:14 +00:00
|
|
|
GdkDevice *device,
|
2015-12-07 18:47:45 +00:00
|
|
|
GList *targets,
|
2017-12-10 23:55:56 +00:00
|
|
|
gint dx,
|
|
|
|
gint dy)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2006-03-21 08:02:17 +00:00
|
|
|
g_assert (_gdk_quartz_drag_source_context == NULL);
|
2010-12-17 15:52:14 +00:00
|
|
|
|
2006-03-21 08:02:17 +00:00
|
|
|
/* Create fake context */
|
2010-12-22 12:31:58 +00:00
|
|
|
_gdk_quartz_drag_source_context = g_object_new (GDK_TYPE_QUARTZ_DRAG_CONTEXT,
|
2018-04-27 10:32:17 +00:00
|
|
|
"device", device,
|
2010-12-22 12:31:58 +00:00
|
|
|
NULL);
|
2010-06-30 08:56:10 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
_gdk_quartz_drag_source_context->source_surface = window;
|
2014-08-27 12:08:49 +00:00
|
|
|
g_object_ref (window);
|
|
|
|
|
2013-10-10 22:21:35 +00:00
|
|
|
_gdk_quartz_drag_source_context->targets = targets;
|
|
|
|
|
2010-12-23 12:20:14 +00:00
|
|
|
return _gdk_quartz_drag_source_context;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2010-12-17 15:52:14 +00:00
|
|
|
static void
|
|
|
|
gdk_quartz_drag_context_drag_drop (GdkDragContext *context,
|
|
|
|
guint32 time)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2010-12-17 15:52:14 +00:00
|
|
|
static void
|
|
|
|
gdk_quartz_drag_context_drag_abort (GdkDragContext *context,
|
|
|
|
guint32 time)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:12:04 +00:00
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_quartz_surface_register_dnd (GdkSurface *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2010-12-22 12:31:58 +00:00
|
|
|
id
|
2007-11-01 08:45:30 +00:00
|
|
|
gdk_quartz_drag_context_get_dragging_info_libgtk_only (GdkDragContext *context)
|
|
|
|
{
|
2010-12-22 12:31:58 +00:00
|
|
|
return GDK_QUARTZ_DRAG_CONTEXT (context)->dragging_info;
|
2007-11-01 08:45:30 +00:00
|
|
|
}
|
2010-12-17 15:52:14 +00:00
|
|
|
|
|
|
|
static void
|
2010-12-22 12:31:58 +00:00
|
|
|
gdk_quartz_drag_context_init (GdkQuartzDragContext *context)
|
2010-12-17 15:52:14 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_quartz_drag_context_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (gdk_quartz_drag_context_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-23 12:19:17 +00:00
|
|
|
gdk_quartz_drag_context_class_init (GdkQuartzDragContextClass *klass)
|
2010-12-17 15:52:14 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GdkDragContextClass *context_class = GDK_DRAG_CONTEXT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gdk_quartz_drag_context_finalize;
|
|
|
|
|
|
|
|
context_class->drag_abort = gdk_quartz_drag_context_drag_abort;
|
|
|
|
context_class->drag_drop = gdk_quartz_drag_context_drag_drop;
|
|
|
|
}
|