Drag and drop events are actually pretty useful if
you're implementing a drag and drop feature in your
application. However, since few applications need to do
this and the topic is fairly involved, this books
glosses over the topic. GTK+ comes with some
documentation on drag and drop and several examples.
typedef struct _GdkEventDND GdkEventDND;
struct _GdkEventDND {
GdkEventType type;
GdkWindow *window;
gint8 send_event;
GdkDragContext *context;
guint32 time;
gshort x_root, y_root;
};
|