gtk2/gdk/broadway/gdkdnd-broadway.c

230 lines
5.3 KiB
C
Raw Normal View History

2010-11-12 12:18:58 +00:00
/* GDK - The GIMP Drawing Kit
* Copyright (C) 1995-1999 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* 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, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* 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"
#include "gdkdnd.h"
#include "gdkmain.h"
#include "gdkproperty.h"
#include "gdkprivate-broadway.h"
#include "gdkinternals.h"
#include "gdkscreen-broadway.h"
#include "gdkdisplay-broadway.h"
2010-11-12 22:00:52 +00:00
#include <string.h>
2010-11-12 12:18:58 +00:00
typedef struct _GdkDragContextPrivateBroadway GdkDragContextPrivateBroadway;
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
/* Structure that holds information about a drag in progress.
* this is used on both source and destination sides.
2010-11-12 12:18:58 +00:00
*/
struct _GdkDragContextPrivateBroadway {
2010-11-12 22:00:52 +00:00
GdkDragContext context;
};
2010-11-12 12:18:58 +00:00
#define PRIVATE_DATA(context) ((GdkDragContextPrivateBroadway *) GDK_DRAG_CONTEXT (context)->windowing_data)
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
static void gdk_drag_context_finalize (GObject *object);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
static GList *contexts;
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
G_DEFINE_TYPE (GdkDragContext, gdk_drag_context, G_TYPE_OBJECT)
2010-11-12 12:18:58 +00:00
static void
2010-11-12 22:00:52 +00:00
gdk_drag_context_init (GdkDragContext *dragcontext)
2010-11-12 12:18:58 +00:00
{
GdkDragContextPrivateBroadway *private;
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
private = G_TYPE_INSTANCE_GET_PRIVATE (dragcontext,
GDK_TYPE_DRAG_CONTEXT,
GdkDragContextPrivateBroadway);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
dragcontext->windowing_data = private;
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
contexts = g_list_prepend (contexts, dragcontext);
2010-11-12 12:18:58 +00:00
}
static void
2010-11-12 22:00:52 +00:00
gdk_drag_context_class_init (GdkDragContextClass *klass)
2010-11-12 12:18:58 +00:00
{
2010-11-12 22:00:52 +00:00
GObjectClass *object_class = G_OBJECT_CLASS (klass);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
object_class->finalize = gdk_drag_context_finalize;
2010-11-12 12:18:58 +00:00
g_type_class_add_private (object_class, sizeof (GdkDragContextPrivateBroadway));
2010-11-12 12:18:58 +00:00
}
2010-11-12 22:00:52 +00:00
static void
gdk_drag_context_finalize (GObject *object)
2010-11-12 12:18:58 +00:00
{
2010-11-12 22:00:52 +00:00
GdkDragContext *context = GDK_DRAG_CONTEXT (object);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
contexts = g_list_remove (contexts, context);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
G_OBJECT_CLASS (gdk_drag_context_parent_class)->finalize (object);
2010-11-12 12:18:58 +00:00
}
2010-11-12 22:00:52 +00:00
/* Drag Contexts */
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
GdkDragContext *
gdk_drag_context_new (void)
2010-11-12 12:18:58 +00:00
{
2010-11-12 22:00:52 +00:00
return g_object_new (GDK_TYPE_DRAG_CONTEXT, NULL);
2010-11-12 12:18:58 +00:00
}
void
2010-11-12 22:00:52 +00:00
gdk_drag_context_set_device (GdkDragContext *context,
GdkDevice *device)
2010-11-12 12:18:58 +00:00
{
2010-11-12 22:00:52 +00:00
g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
g_return_if_fail (GDK_IS_DEVICE (device));
}
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
GdkDevice *
gdk_drag_context_get_device (GdkDragContext *context)
2010-11-12 12:18:58 +00:00
{
2010-11-12 22:00:52 +00:00
g_return_val_if_fail (GDK_IS_DRAG_CONTEXT (context), NULL);
2010-11-12 12:18:58 +00:00
2010-11-12 22:00:52 +00:00
return NULL;
2010-11-12 12:18:58 +00:00
}
GdkDragContext *
gdk_drag_begin (GdkWindow *window,
GList *targets)
{
GdkDragContext *new_context;
g_return_val_if_fail (window != NULL, NULL);
g_return_val_if_fail (GDK_WINDOW_IS_BROADWAY (window), NULL);
2010-11-12 12:18:58 +00:00
new_context = gdk_drag_context_new ();
return new_context;
}
GdkNativeWindow
gdk_drag_get_protocol_for_display (GdkDisplay *display,
GdkNativeWindow xid,
GdkDragProtocol *protocol)
{
2010-11-12 22:00:52 +00:00
return 0;
2010-11-12 12:18:58 +00:00
}
void
gdk_drag_find_window_for_screen (GdkDragContext *context,
GdkWindow *drag_window,
GdkScreen *screen,
gint x_root,
gint y_root,
GdkWindow **dest_window,
GdkDragProtocol *protocol)
{
g_return_if_fail (context != NULL);
}
2010-11-15 19:08:18 +00:00
gboolean
2010-11-12 12:18:58 +00:00
gdk_drag_motion (GdkDragContext *context,
GdkWindow *dest_window,
GdkDragProtocol protocol,
2010-11-15 19:08:18 +00:00
gint x_root,
2010-11-12 12:18:58 +00:00
gint y_root,
GdkDragAction suggested_action,
GdkDragAction possible_actions,
guint32 time)
{
g_return_val_if_fail (context != NULL, FALSE);
g_return_val_if_fail (dest_window == NULL || GDK_WINDOW_IS_BROADWAY (dest_window), FALSE);
2010-11-12 12:18:58 +00:00
return FALSE;
}
void
gdk_drag_drop (GdkDragContext *context,
guint32 time)
{
g_return_if_fail (context != NULL);
}
void
gdk_drag_abort (GdkDragContext *context,
guint32 time)
{
g_return_if_fail (context != NULL);
}
/* Destination side */
2010-11-15 19:08:18 +00:00
void
2010-11-12 12:18:58 +00:00
gdk_drag_status (GdkDragContext *context,
GdkDragAction action,
guint32 time)
{
g_return_if_fail (context != NULL);
}
2010-11-15 19:08:18 +00:00
void
2010-11-12 12:18:58 +00:00
gdk_drop_reply (GdkDragContext *context,
gboolean ok,
guint32 time)
{
g_return_if_fail (context != NULL);
}
2010-11-15 19:08:18 +00:00
void
2010-11-12 12:18:58 +00:00
gdk_drop_finish (GdkDragContext *context,
gboolean success,
guint32 time)
{
g_return_if_fail (context != NULL);
}
2010-11-15 19:08:18 +00:00
void
2010-11-12 12:18:58 +00:00
gdk_window_register_dnd (GdkWindow *window)
{
}
GdkAtom
gdk_drag_get_selection (GdkDragContext *context)
{
g_return_val_if_fail (context != NULL, GDK_NONE);
2010-11-12 22:00:52 +00:00
return GDK_NONE;
2010-11-12 12:18:58 +00:00
}
2010-11-15 19:08:18 +00:00
gboolean
2010-11-12 12:18:58 +00:00
gdk_drag_drop_succeeded (GdkDragContext *context)
{
g_return_val_if_fail (context != NULL, FALSE);
2010-11-12 22:00:52 +00:00
return FALSE;
2010-11-12 12:18:58 +00:00
}
2010-11-15 19:08:18 +00:00
void
_gdk_dnd_init (GdkDisplay *display)
{
}