Struct gtk4::builders::DropTargetBuilder

source ·
pub struct DropTargetBuilder { /* private fields */ }
Expand description

A builder-pattern type to construct DropTarget objects.

Implementations§

source§

impl DropTargetBuilder

source

pub fn actions(self, actions: DragAction) -> Self

The GdkDragActions that this drop target supports.

source

pub fn formats(self, formats: &ContentFormats) -> Self

The gdk::ContentFormats that determine the supported data formats.

source

pub fn preload(self, preload: bool) -> Self

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.

source

pub fn name(self, name: impl Into<GString>) -> Self

The name for this controller, typically used for debugging purposes.

source

pub fn propagation_limit(self, propagation_limit: PropagationLimit) -> Self

The limit for which events this controller will handle.

source

pub fn propagation_phase(self, propagation_phase: PropagationPhase) -> Self

The propagation phase at which this controller will handle events.

source

pub fn build(self) -> DropTarget

Build the DropTarget.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.