e83c55a242
* */Makefile.am : automakify the build * */Makefile.in : kill * *.custom : remove System.Drawing dependencies * *.cs : remove System.Drawing dependencies * *-api.xml : mv to *-api.raw * glue/* : mv to lib specific gluelibs for glib, gdk, gtk, and glade. * gtk/gtk-symbols : alias GtkType to GType * sources/gtk-sharp-sources.xml : create .raw files. They are now transformed to .xml files by the metadata compilation step. svn path=/trunk/gtk-sharp/; revision=23967
86 lines
1.7 KiB
C
86 lines
1.7 KiB
C
/* dragcontext.c: Glue for accessing fields in a GdkDragContext.
|
|
*
|
|
* Author: Ettore Perazzoli <ettore@ximian.com>
|
|
*
|
|
* (C) 2003 Novell, Inc.
|
|
*/
|
|
|
|
#include <gdk/gdkdnd.h>
|
|
|
|
GdkDragProtocol gtksharp_drag_context_get_protocol (GdkDragContext *context);
|
|
|
|
GdkDragProtocol
|
|
gtksharp_drag_context_get_protocol (GdkDragContext *context)
|
|
{
|
|
return context->protocol;
|
|
}
|
|
|
|
|
|
gboolean gtksharp_drag_context_get_is_source (GdkDragContext *context);
|
|
|
|
gboolean
|
|
gtksharp_drag_context_get_is_source (GdkDragContext *context)
|
|
{
|
|
return context->is_source;
|
|
}
|
|
|
|
|
|
GdkWindow *
|
|
gtksharp_drag_context_get_source_window (GdkDragContext *context)
|
|
{
|
|
return context->source_window;
|
|
}
|
|
|
|
|
|
GdkWindow *gtksharp_drag_context_get_dest_window (GdkDragContext *context);
|
|
|
|
GdkWindow *
|
|
gtksharp_drag_context_get_dest_window (GdkDragContext *context)
|
|
{
|
|
return context->dest_window;
|
|
}
|
|
|
|
|
|
GList *gtksharp_drag_context_get_targets (GdkDragContext *context);
|
|
|
|
GList *
|
|
gtksharp_drag_context_get_targets (GdkDragContext *context)
|
|
{
|
|
return context->targets;
|
|
}
|
|
|
|
|
|
GdkDragAction gtksharp_drag_context_get_actions (GdkDragContext *context);
|
|
|
|
GdkDragAction
|
|
gtksharp_drag_context_get_actions (GdkDragContext *context)
|
|
{
|
|
return context->actions;
|
|
}
|
|
|
|
|
|
GdkDragAction gtksharp_drag_context_get_suggested_action (GdkDragContext *context);
|
|
|
|
GdkDragAction
|
|
gtksharp_drag_context_get_suggested_action (GdkDragContext *context)
|
|
{
|
|
return context->suggested_action;
|
|
}
|
|
|
|
|
|
GdkDragAction gtksharp_drag_context_get_action (GdkDragContext *context);
|
|
|
|
GdkDragAction
|
|
gtksharp_drag_context_get_action (GdkDragContext *context)
|
|
{
|
|
return context->action;
|
|
}
|
|
|
|
|
|
guint32 gtksharp_drag_context_get_start_time (GdkDragContext *context);
|
|
|
|
guint32
|
|
gtksharp_drag_context_get_start_time (GdkDragContext *context)
|
|
{
|
|
return context->start_time;
|
|
}
|