Struct
GdkEventDND
Description [src]
struct GdkEventDND {
GdkEventType type;
GdkWindow* window;
gint8 send_event;
GdkDragContext* context;
guint32 time;
gshort x_root;
gshort y_root;
}
Generated during DND operations.
Structure members
type
The type of the event (
GDK_DRAG_ENTER
,GDK_DRAG_LEAVE
,GDK_DRAG_MOTION
,GDK_DRAG_STATUS
,GDK_DROP_START
orGDK_DROP_FINISHED
).window
The window which received the event.
send_event
TRUE
if the event was sent explicitly.context
The
GdkDragContext
for the current DND operation.time
The time of the event in milliseconds.
x_root
The x coordinate of the pointer relative to the root of the screen, only set for
GDK_DRAG_MOTION
andGDK_DROP_START
.y_root
The y coordinate of the pointer relative to the root of the screen, only set for
GDK_DRAG_MOTION
andGDK_DROP_START
.