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:GdkEventTypeThe type of the event (
GDK_DRAG_ENTER,GDK_DRAG_LEAVE,GDK_DRAG_MOTION,GDK_DRAG_STATUS,GDK_DROP_STARTorGDK_DROP_FINISHED).window:GdkWindowThe window which received the event.
send_event:gint8TRUEif the event was sent explicitly.context:GdkDragContextThe
GdkDragContextfor the current DND operation.time:guint32The time of the event in milliseconds.
x_root:gshortThe x coordinate of the pointer relative to the root of the screen, only set for
GDK_DRAG_MOTIONandGDK_DROP_START.y_root:gshortThe y coordinate of the pointer relative to the root of the screen, only set for
GDK_DRAG_MOTIONandGDK_DROP_START.