Gtk.DropTarget¶
class — extends EventController
An event controller to receive Drag-and-Drop operations.
The most basic way to use a GtkDropTarget to receive drops on a
widget is to create it via DropTarget.new, passing in the
GType of the data you want to receive and connect to the
DropTarget.drop signal to receive the data:
static gboolean
on_drop (GtkDropTarget *target,
const GValue *value,
double x,
double y,
gpointer data)
{
MyWidget *self = data;
// Call the appropriate setter depending on the type of data
// that we received
if (G_VALUE_HOLDS (value, G_TYPE_FILE))
my_widget_set_file (self, g_value_get_object (value));
else if (G_VALUE_HOLDS (value, GDK_TYPE_PIXBUF))
my_widget_set_pixbuf (self, g_value_get_object (value));
else
return FALSE;
return TRUE;
}
static void
my_widget_init (MyWidget *self)
{
GtkDropTarget *target =
gtk_drop_target_new (G_TYPE_INVALID, GDK_ACTION_COPY);
// This widget accepts two types of drop types: GFile objects
// and GdkPixbuf objects
gtk_drop_target_set_gtypes (target, (GType [2]) {
G_TYPE_FILE,
GDK_TYPE_PIXBUF,
}, 2);
g_signal_connect (target, "drop", G_CALLBACK (on_drop), self);
gtk_widget_add_controller (GTK_WIDGET (self), GTK_EVENT_CONTROLLER (target));
}
GtkDropTarget supports more options, such as:
- rejecting potential drops via the
DropTarget.acceptsignal and theDropTarget.rejectfunction to let other drop targets handle the drop - tracking an ongoing drag operation before the drop via the
DropTarget.enter,DropTarget.motionandDropTarget.leavesignals - configuring how to receive data by setting the
DropTarget.preloadproperty and listening for its availability via theDropTarget.valueproperty
However, GtkDropTarget is ultimately modeled in a synchronous way
and only supports data transferred via GType. If you want full control
over an ongoing drop, the DropTargetAsync object gives you
this ability.
While a pointer is dragged over the drop target's widget and the drop
has not been rejected, that widget will receive the
StateFlags.DROP_ACTIVE state, which can be used to style the widget.
If you are not interested in receiving the drop, but just want to update
UI state during a Drag-and-Drop operation (e.g. switching tabs), you can
use DropControllerMotion.
Constructors¶
new¶
Creates a new GtkDropTarget object.
If the drop target should support more than 1 type, pass
G_TYPE_INVALID for type and then call
DropTarget.set_gtypes.
Parameters:
type— The supported type orG_TYPE_INVALIDactions— the supported actions
Methods¶
get_actions¶
Gets the actions that this drop target supports.
get_current_drop¶
Gets the currently handled drop operation.
If no drop operation is going on, None is returned.
get_drop¶
:::warning Deprecated since 4.4 This API is deprecated. :::
Gets the currently handled drop operation.
If no drop operation is going on, None is returned.
get_formats¶
Gets the data formats that this drop target accepts.
If the result is None, all formats are expected to be supported.
get_gtypes¶
Gets the list of supported GTypes that can be dropped on the target.
If no types have been set, NULL will be returned.
get_preload¶
Gets whether data should be preloaded on hover.
get_value¶
Gets the current drop data, as a GValue.
reject¶
Rejects the ongoing drop operation.
If no drop operation is ongoing, i.e when DropTarget.current-drop
is None, this function does nothing.
This function should be used when delaying the decision on whether to accept a drag or not until after reading the data.
set_actions¶
Sets the actions that this drop target supports.
Parameters:
actions— the supported actions
set_gtypes¶
Sets the supported GTypes for this drop target.
Parameters:
types— all supportedGTypes that can be dropped on the target
set_preload¶
Sets whether data should be preloaded on hover.
Parameters:
preload—Trueto preload drop data
Properties¶
actions¶
The GdkDragActions that this drop target supports.
current_drop¶
The GdkDrop that is currently being performed.
drop¶
:::warning Deprecated since 4.4 This API is deprecated. :::
The GdkDrop that is currently being performed.
formats¶
The GdkContentFormats that determine the supported data formats.
preload¶
Whether the drop data should be preloaded when the pointer is only hovering over the widget but has not been released.
Setting this property allows finer grained reaction to an ongoing drop at the cost of loading more data.
The default value for this property is False to avoid downloading
huge amounts of data by accident.
For example, if somebody drags a full document of gigabytes of text from a text editor across a widget with a preloading drop target, this data will be downloaded, even if the data is ultimately dropped elsewhere.
For a lot of data formats, the amount of data is very small (like
GDK_TYPE_RGBA), so enabling this property does not hurt at all.
And for local-only Drag-and-Drop operations, no data transfer is done,
so enabling it there is free.
value¶
The value for this drop operation.
This is None if the data has not been loaded yet or no drop
operation is going on.
Data may be available before the DropTarget.drop
signal gets emitted - for example when the DropTarget.preload
property is set. You can use the ::notify signal to be notified
of available data.
Signals¶
accept¶
Emitted on the drop site when a drop operation is about to begin.
If the drop is not accepted, False will be returned and the drop target
will ignore the drop. If True is returned, the drop is accepted for now
but may be rejected later via a call to DropTarget.reject
or ultimately by returning False from a DropTarget.drop
handler.
The default handler for this signal decides whether to accept the drop
based on the formats provided by the drop.
If the decision whether the drop will be accepted or rejected depends
on the data, this function should return True, the
DropTarget.preload property should be set and the value
should be inspected via the ::notify:value signal, calling
DropTarget.reject if required.
drop¶
Emitted on the drop site when the user drops the data onto the widget.
The signal handler must determine whether the pointer position is in
a drop zone or not. If it is not in a drop zone, it returns False
and no further processing is necessary.
Otherwise, the handler returns True. In this case, this handler will
accept the drop. The handler is responsible for using the given value
and performing the drop operation.
enter¶
Emitted on the drop site when the pointer enters the widget.
It can be used to set up custom highlighting.
leave¶
Emitted on the drop site when the pointer leaves the widget.
Its main purpose it to undo things done in
DropTarget.enter.
motion¶
Emitted while the pointer is moving over the drop target.