Struct DragAndDrop

Source
pub struct DragAndDrop { /* private fields */ }
Expand description

Plugin for tracking drag-and-drop payload.

This plugin stores the current drag-and-drop payload internally and handles automatic cleanup when the drag operation ends (via Escape key or mouse release).

This is a low-level API. For a higher-level API, see:

This is a built-in plugin in egui, automatically registered during Context creation.

See this example.

Implementations§

Source§

impl DragAndDrop

Source

pub fn set_payload<Payload>(ctx: &Context, payload: Payload)
where Payload: Any + Send + Sync,

Set a drag-and-drop payload.

This can be read by Self::payload until the pointer is released.

Source

pub fn clear_payload(ctx: &Context)

Clears the payload, setting it to None.

Source

pub fn payload<Payload>(ctx: &Context) -> Option<Arc<Payload>>
where Payload: Any + Send + Sync,

Retrieve the payload, if any.

Returns None if there is no payload, or if it is not of the requested type.

Returns Some both during a drag and on the frame the pointer is released (if there is a payload).

Source

pub fn take_payload<Payload>(ctx: &Context) -> Option<Arc<Payload>>
where Payload: Any + Send + Sync,

Retrieve and clear the payload, if any.

Returns None if there is no payload, or if it is not of the requested type.

Returns Some both during a drag and on the frame the pointer is released (if there is a payload).

Source

pub fn has_payload_of_type<Payload>(ctx: &Context) -> bool
where Payload: Any + Send + Sync,

Are we carrying a payload of the given type?

Returns true both during a drag and on the frame the pointer is released (if there is a payload).

Source

pub fn has_any_payload(ctx: &Context) -> bool

Are we carrying a payload?

Returns true both during a drag and on the frame the pointer is released (if there is a payload).

Trait Implementations§

Source§

impl Clone for DragAndDrop

Source§

fn clone(&self) -> DragAndDrop

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for DragAndDrop

Source§

fn default() -> DragAndDrop

Returns the “default value” for a type. Read more
Source§

impl Plugin for DragAndDrop

Source§

fn on_begin_pass(&mut self, ctx: &Context)

Interrupt drag-and-drop if the user presses the escape key.

This needs to happen at frame start so we can properly capture the escape key.

Source§

fn on_end_pass(&mut self, ctx: &Context)

Interrupt drag-and-drop if the user releases the mouse button.

This is a catch-all safety net in case user code doesn’t capture the drag payload itself. This must happen at end-of-frame such that we don’t shadow the mouse release event from user code.

Source§

fn debug_name(&self) -> &'static str

Plugin name. Read more
Source§

fn setup(&mut self, ctx: &Context)

Called once, when the plugin is registered. Read more
Source§

fn input_hook(&mut self, input: &mut RawInput)

Called just before the input is processed. Read more
Source§

fn output_hook(&mut self, output: &mut FullOutput)

Called just before the output is passed to the backend. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<T> SerializableAny for T
where T: 'static + Any + Clone + for<'a> Send + Sync,