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: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_drag_end<F: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_drag_update<F: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
Sourcefn offset(&self) -> Option<(f64, f64)>
fn offset(&self) -> Option<(f64, f64)>
Gets the offset from the start point.
If the @self is active, this function returns true
and
fills in @x and @y with the coordinates of the current point,
as an offset to the starting drag point.
§Returns
true
if the gesture is active
§x
X offset for the current point
§y
Y offset for the current point
Sourcefn start_point(&self) -> Option<(f64, f64)>
fn start_point(&self) -> Option<(f64, f64)>
Sourcefn connect_drag_begin<F: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_drag_begin<F: Fn(&Self, f64, f64) + 'static>( &self, f: F, ) -> SignalHandlerId
Sourcefn connect_drag_end<F: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_drag_end<F: Fn(&Self, f64, f64) + 'static>( &self, f: F, ) -> SignalHandlerId
Sourcefn connect_drag_update<F: Fn(&Self, f64, f64) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_drag_update<F: Fn(&Self, f64, f64) + 'static>( &self, f: F, ) -> SignalHandlerId
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.