Trait sourceview5::prelude::DragExt
source · pub trait DragExt: IsA<Drag> + Sealed + 'static {
Show 18 methods
// Provided methods
fn drop_done(&self, success: bool) { ... }
fn actions(&self) -> DragAction { ... }
fn content(&self) -> ContentProvider { ... }
fn device(&self) -> Device { ... }
fn display(&self) -> Display { ... }
fn drag_surface(&self) -> Option<Surface> { ... }
fn formats(&self) -> ContentFormats { ... }
fn selected_action(&self) -> DragAction { ... }
fn surface(&self) -> Surface { ... }
fn set_hotspot(&self, hot_x: i32, hot_y: i32) { ... }
fn set_actions(&self, actions: DragAction) { ... }
fn set_selected_action(&self, selected_action: DragAction) { ... }
fn connect_cancel<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, DragCancelReason) + 'static { ... }
fn connect_dnd_finished<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_drop_performed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_actions_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_display_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_selected_action_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn drop_done(&self, success: bool)
fn actions(&self) -> DragAction
fn content(&self) -> ContentProvider
fn device(&self) -> Device
fn display(&self) -> Display
fn drag_surface(&self) -> Option<Surface>
fn formats(&self) -> ContentFormats
fn selected_action(&self) -> DragAction
fn surface(&self) -> Surface
fn set_hotspot(&self, hot_x: i32, hot_y: i32)
fn set_actions(&self, actions: DragAction)
fn set_selected_action(&self, selected_action: DragAction)
fn connect_cancel<F>(&self, f: F) -> SignalHandlerId
fn connect_dnd_finished<F>(&self, f: F) -> SignalHandlerId
fn connect_drop_performed<F>(&self, f: F) -> SignalHandlerId
fn connect_actions_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_display_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_selected_action_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.