Trait sourceview5::prelude::GestureDragExt

source ·
pub trait GestureDragExt: IsA<GestureDrag> + Sealed + 'static {
    // Provided methods
    fn offset(&self) -> Option<(f64, f64)> { ... }
    fn start_point(&self) -> Option<(f64, f64)> { ... }
    fn connect_drag_begin<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, f64, f64) + 'static { ... }
    fn connect_drag_end<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, f64, f64) + 'static { ... }
    fn connect_drag_update<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, f64, f64) + 'static { ... }
}

Provided Methods§

source

fn offset(&self) -> Option<(f64, f64)>

source

fn start_point(&self) -> Option<(f64, f64)>

source

fn connect_drag_begin<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, f64, f64) + 'static,

source

fn connect_drag_end<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, f64, f64) + 'static,

source

fn connect_drag_update<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, f64, f64) + 'static,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> GestureDragExt for O
where O: IsA<GestureDrag>,