gtkmm 4.16.0
Public Member Functions | Static Public Member Functions | Related Symbols | List of all members
Gdk::Drop Class Reference

A Gdk::Drop object represents the target of an ongoing DND operation. More...

#include <gdkmm/drop.h>

Inheritance diagram for Gdk::Drop:
Inheritance graph
[legend]

Public Member Functions

 Drop (Drop &&src) noexcept
 
Dropoperator= (Drop &&src) noexcept
 
 ~Drop () noexcept override
 
GdkDropgobj ()
 Provides access to the underlying C GObject.
 
const GdkDropgobj () const
 Provides access to the underlying C GObject.
 
GdkDropgobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
 
Glib::RefPtr< Displayget_display ()
 Gets the Gdk::Display that self was created for.
 
Glib::RefPtr< const Displayget_display () const
 Gets the Gdk::Display that self was created for.
 
Glib::RefPtr< Deviceget_device ()
 Returns the Gdk::Device performing the drop.
 
Glib::RefPtr< const Deviceget_device () const
 Returns the Gdk::Device performing the drop.
 
Glib::RefPtr< Surfaceget_surface ()
 Returns the Gdk::Surface performing the drop.
 
Glib::RefPtr< const Surfaceget_surface () const
 Returns the Gdk::Surface performing the drop.
 
Glib::RefPtr< ContentFormatsget_formats ()
 Returns the Gdk::ContentFormats that the drop offers the data to be read in.
 
Glib::RefPtr< const ContentFormatsget_formats () const
 Returns the Gdk::ContentFormats that the drop offers the data to be read in.
 
DragAction get_actions () const
 Returns the possible actions for this Gdk::Drop.
 
Glib::RefPtr< Dragget_drag ()
 If this is an in-app drag-and-drop operation, returns the Gdk::Drag that corresponds to this drop.
 
Glib::RefPtr< const Dragget_drag () const
 If this is an in-app drag-and-drop operation, returns the Gdk::Drag that corresponds to this drop.
 
void status (DragAction actions, DragAction preferred)
 Selects all actions that are potentially supported by the destination.
 
void refuse ()
 Indicates that a drop will not be accepted.
 
void finish (DragAction action)
 Ends the drag operation after a drop.
 
void failed ()
 Ends the drag operation and indicates that the operation failed.
 
void read_async (const std::vector< Glib::ustring > &mime_types, int io_priority, const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::Cancellable > &cancellable)
 Asynchronously read the dropped data from a Gdk::Drop in a format that complies with one of the mime types.
 
void read_async (const std::vector< Glib::ustring > &mime_types, int io_priority, const Gio::SlotAsyncReady &slot)
 A read_async() convenience overload.
 
Glib::RefPtr< Gio::InputStream > read_finish (const Glib::RefPtr< Gio::AsyncResult > &result, Glib::ustring &out_mime_type)
 Finishes an async drop read operation.
 
void read_value_async (GType type, int io_priority, const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::Cancellable > &cancellable)
 Asynchronously request the drag operation's contents converted to the given type.
 
void read_value_async (GType type, int io_priority, const Gio::SlotAsyncReady &slot)
 A read_value_async() convenience overload.
 
Glib::ValueBase read_value_finish (const Glib::RefPtr< Gio::AsyncResult > &result)
 Finishes an async drop read.
 
Glib::PropertyProxy_ReadOnly< DragActionproperty_actions () const
 The possible actions for this drop.
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Device > > property_device () const
 The Gdk::Device performing the drop.
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Display > > property_display () const
 The Gdk::Display that the drop belongs to.
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Drag > > property_drag () const
 The Gdk::Drag that initiated this drop.
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< ContentFormats > > property_formats () const
 The possible formats that the drop can provide its data in.
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Surface > > property_surface () const
 The Gdk::Surface the drop happens on.
 

Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system.
 

Related Symbols

(Note that these are not member symbols.)

Glib::RefPtr< Gdk::Dropwrap (GdkDrop *object, bool take_copy=false)
 A Glib::wrap() method for this object.
 

Detailed Description

A Gdk::Drop object represents the target of an ongoing DND operation.

Possible drop sites get informed about the status of the ongoing drag operation with events of type Gdk::Event::Type::DRAG_ENTER, Gdk::Event::Type::DRAG_LEAVE, Gdk::Event::Type::DRAG_MOTION and Gdk::Event::Type::DROP_START. The Gdk::Drop object can be obtained from a DND event using Gdk::Event::get_dnd_drop().

The actual data transfer is initiated from the target side via an async read, using one of the Gdk::Drop methods for this purpose: read_async() or read_value_async().

GTK provides a higher level abstraction based on top of these functions, and so they are not normally needed in GTK applications.

Since gtkmm 3.94:

Constructor & Destructor Documentation

◆ Drop()

Gdk::Drop::Drop ( Drop &&  src)
noexcept

◆ ~Drop()

Gdk::Drop::~Drop ( )
overridenoexcept

Member Function Documentation

◆ failed()

void Gdk::Drop::failed ( )

Ends the drag operation and indicates that the operation failed.

Alternatively, call finish() to indicate which drag action was performed.

◆ finish()

void Gdk::Drop::finish ( DragAction  action)

Ends the drag operation after a drop.

The action must be a single action selected from the actions available via get_actions().

Parameters
actionThe action performed by the destination or 0 if the drop failed.

◆ get_actions()

DragAction Gdk::Drop::get_actions ( ) const

Returns the possible actions for this Gdk::Drop.

If this value contains multiple actions - i.e. Gdk::Drag::action_is_unique() returns false for the result - finish() must choose the action to use when accepting the drop. This will only happen if you passed Gdk::DragAction::ASK as one of the possible actions in status(). Gdk::DragAction::ASK itself will not be included in the actions returned by this function.

This value may change over the lifetime of the Gdk::Drop both as a response to source side actions as well as to calls to status() or finish(). The source side will not change this value anymore once a drop has started.

Returns
The possible Gdk::DragActions.

◆ get_device() [1/2]

Glib::RefPtr< Device > Gdk::Drop::get_device ( )

Returns the Gdk::Device performing the drop.

Returns
The Gdk::Device performing the drop.

◆ get_device() [2/2]

Glib::RefPtr< const Device > Gdk::Drop::get_device ( ) const

Returns the Gdk::Device performing the drop.

Returns
The Gdk::Device performing the drop.

◆ get_display() [1/2]

Glib::RefPtr< Display > Gdk::Drop::get_display ( )

Gets the Gdk::Display that self was created for.

Returns
A Gdk::Display.

◆ get_display() [2/2]

Glib::RefPtr< const Display > Gdk::Drop::get_display ( ) const

Gets the Gdk::Display that self was created for.

Returns
A Gdk::Display.

◆ get_drag() [1/2]

Glib::RefPtr< Drag > Gdk::Drop::get_drag ( )

If this is an in-app drag-and-drop operation, returns the Gdk::Drag that corresponds to this drop.

If it is not, nullptr is returned.

Returns
The corresponding Gdk::Drag.

◆ get_drag() [2/2]

Glib::RefPtr< const Drag > Gdk::Drop::get_drag ( ) const

If this is an in-app drag-and-drop operation, returns the Gdk::Drag that corresponds to this drop.

If it is not, nullptr is returned.

Returns
The corresponding Gdk::Drag.

◆ get_formats() [1/2]

Glib::RefPtr< ContentFormats > Gdk::Drop::get_formats ( )

Returns the Gdk::ContentFormats that the drop offers the data to be read in.

Returns
The possible Gdk::ContentFormats.

◆ get_formats() [2/2]

Glib::RefPtr< const ContentFormats > Gdk::Drop::get_formats ( ) const

Returns the Gdk::ContentFormats that the drop offers the data to be read in.

Returns
The possible Gdk::ContentFormats.

◆ get_surface() [1/2]

Glib::RefPtr< Surface > Gdk::Drop::get_surface ( )

Returns the Gdk::Surface performing the drop.

Returns
The Gdk::Surface performing the drop.

◆ get_surface() [2/2]

Glib::RefPtr< const Surface > Gdk::Drop::get_surface ( ) const

Returns the Gdk::Surface performing the drop.

Returns
The Gdk::Surface performing the drop.

◆ get_type()

static GType Gdk::Drop::get_type ( )
static

Get the GType for this class, for use with the underlying GObject type system.

◆ gobj() [1/2]

GdkDrop * Gdk::Drop::gobj ( )
inline

Provides access to the underlying C GObject.

◆ gobj() [2/2]

const GdkDrop * Gdk::Drop::gobj ( ) const
inline

Provides access to the underlying C GObject.

◆ gobj_copy()

GdkDrop * Gdk::Drop::gobj_copy ( )

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

◆ operator=()

Drop & Gdk::Drop::operator= ( Drop &&  src)
noexcept

◆ property_actions()

Glib::PropertyProxy_ReadOnly< DragAction > Gdk::Drop::property_actions ( ) const

The possible actions for this drop.

Default value: Gdk::DragAction::COPY | Gdk::DragAction::MOVE | Gdk::DragAction::LINK

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ property_device()

Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Device > > Gdk::Drop::property_device ( ) const

The Gdk::Device performing the drop.

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ property_display()

Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Display > > Gdk::Drop::property_display ( ) const

The Gdk::Display that the drop belongs to.

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ property_drag()

Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Drag > > Gdk::Drop::property_drag ( ) const

The Gdk::Drag that initiated this drop.

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ property_formats()

Glib::PropertyProxy_ReadOnly< Glib::RefPtr< ContentFormats > > Gdk::Drop::property_formats ( ) const

The possible formats that the drop can provide its data in.

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ property_surface()

Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Surface > > Gdk::Drop::property_surface ( ) const

The Gdk::Surface the drop happens on.

Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.

◆ read_async() [1/2]

void Gdk::Drop::read_async ( const std::vector< Glib::ustring > &  mime_types,
int  io_priority,
const Gio::SlotAsyncReady &  slot 
)

A read_async() convenience overload.

◆ read_async() [2/2]

void Gdk::Drop::read_async ( const std::vector< Glib::ustring > &  mime_types,
int  io_priority,
const Gio::SlotAsyncReady &  slot,
const Glib::RefPtr< Gio::Cancellable > &  cancellable 
)

Asynchronously read the dropped data from a Gdk::Drop in a format that complies with one of the mime types.

Parameters
mime_typesPointer to an array of mime types.
io_priorityThe I/O priority for the read operation.
cancellableOptional Gio::Cancellable object.
slotA SlotAsyncReady to call when the request is satisfied.

◆ read_finish()

Glib::RefPtr< Gio::InputStream > Gdk::Drop::read_finish ( const Glib::RefPtr< Gio::AsyncResult > &  result,
Glib::ustring &  out_mime_type 
)

Finishes an async drop read operation.

Note that you must not use blocking read calls on the returned stream in the GTK thread, since some platforms might require communication with GTK to complete the data transfer. You can use async APIs such as Glib::input_stream_read_bytes_async().

See read_async().

Parameters
resultA Gio::AsyncResult.
out_mime_typeReturn location for the used mime type.
Returns
The Gio::InputStream.
Exceptions
Glib::Error

◆ read_value_async() [1/2]

void Gdk::Drop::read_value_async ( GType  type,
int  io_priority,
const Gio::SlotAsyncReady &  slot 
)

A read_value_async() convenience overload.

◆ read_value_async() [2/2]

void Gdk::Drop::read_value_async ( GType  type,
int  io_priority,
const Gio::SlotAsyncReady &  slot,
const Glib::RefPtr< Gio::Cancellable > &  cancellable 
)

Asynchronously request the drag operation's contents converted to the given type.

For local drag-and-drop operations that are available in the given GType, the value will be copied directly. Otherwise, GDK will try to use gdk_content_deserialize_async() to convert the data.

Parameters
typeA GType to read.
io_priorityThe I/O priority of the request.
cancellableOptional Gio::Cancellable object, nullptr to ignore.
slotCallback to call when the request is satisfied.

◆ read_value_finish()

Glib::ValueBase Gdk::Drop::read_value_finish ( const Glib::RefPtr< Gio::AsyncResult > &  result)

Finishes an async drop read.

See read_value_async().

Parameters
resultA Gio::AsyncResult.
Returns
A Glib::Value containing the result.

◆ refuse()

void Gdk::Drop::refuse ( )

Indicates that a drop will not be accepted.

This function may be called by the drag destination in response to Gdk::Event::Type::DRAG_ENTER or Gdk::Event::Type::DRAG_MOTION events. Alternatively, call status() to indicate which drag actions will be accepted.

◆ status()

void Gdk::Drop::status ( DragAction  actions,
DragAction  preferred 
)

Selects all actions that are potentially supported by the destination.

When calling this function, do not restrict the passed in actions to the ones provided by get_actions(). Those actions may change in the future, even depending on the actions you provide here.

The preferred action is a hint to the drag-and-drop mechanism about which action to use when multiple actions are possible.

This function should be called by drag destinations in response to Gdk::Event::Type::DRAG_ENTER or Gdk::Event::Type::DRAG_MOTION events. If the destination does not yet know the exact actions it supports, it should set any possible actions first and then later call this function again.

Parameters
actionsSupported actions of the destination, or 0 to indicate that a drop will not be accepted.
preferredA unique action that's a member of actions indicating the preferred action.

Friends And Related Symbol Documentation

◆ wrap()

Glib::RefPtr< Gdk::Drop > wrap ( GdkDrop object,
bool  take_copy = false 
)
related

A Glib::wrap() method for this object.

Parameters
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns
A C++ instance that wraps this C instance.