[][src]Struct gdk::EventScroll

pub struct EventScroll(_);

Methods

impl EventScroll[src]

pub fn get_time(&self) -> u32[src]

pub fn get_position(&self) -> (f64, f64)[src]

pub fn get_state(&self) -> ModifierType[src]

pub fn get_device(&self) -> Option<Device>[src]

pub fn get_direction(&self) -> ScrollDirection[src]

pub fn get_root(&self) -> (f64, f64)[src]

pub fn get_delta(&self) -> (f64, f64)[src]

pub fn get_is_stop(&self) -> bool[src]

Methods from Deref<Target = Event>

pub fn put(&self)[src]

pub fn get_axis(&self, axis_use: AxisUse) -> Option<f64>[src]

pub fn get_button(&self) -> Option<u32>[src]

pub fn get_click_count(&self) -> Option<u32>[src]

pub fn get_coords(&self) -> Option<(f64, f64)>[src]

pub fn get_keycode(&self) -> Option<u16>[src]

pub fn get_keyval(&self) -> Option<u32>[src]

pub fn get_root_coords(&self) -> Option<(f64, f64)>[src]

pub fn get_scroll_direction(&self) -> Option<ScrollDirection>[src]

pub fn get_scroll_deltas(&self) -> Option<(f64, f64)>[src]

pub fn get_state(&self) -> Option<ModifierType>[src]

pub fn get_time(&self) -> u32[src]

pub fn get_window(&self) -> Option<Window>[src]

Returns the associated Window if applicable.

pub fn get_event_sequence(&self) -> Option<EventSequence>[src]

pub fn triggers_context_menu(&self) -> bool[src]

pub fn set_screen(&mut self, screen: Option<&Screen>)[src]

pub fn get_screen(&self) -> Option<Screen>[src]

pub fn set_device(&mut self, device: Option<&Device>)[src]

pub fn get_device(&self) -> Option<Device>[src]

pub fn set_source_device(&mut self, device: Option<&Device>)[src]

pub fn get_source_device(&self) -> Option<Device>[src]

pub fn get_event_type(&self) -> EventType[src]

Returns the event type.

pub fn get_send_event(&self) -> bool[src]

Returns whether the event was sent explicitly.

pub fn is<T: FromEvent>(&self) -> bool[src]

Returns true if the event type matches T.

pub fn downcast_ref<T: FromEvent>(&self) -> Option<&T>[src]

Tries to downcast to a specific event type.

pub fn downcast_mut<T: FromEvent>(&mut self) -> Option<&mut T>[src]

Tries to downcast to a specific event type.

Trait Implementations

impl Eq for EventScroll[src]

impl Ord for EventScroll[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl AsMut<GdkEventScroll> for EventScroll[src]

impl PartialEq<EventScroll> for EventScroll[src]

impl Clone for EventScroll[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<EventScroll> for EventScroll[src]

impl AsRef<GdkEventScroll> for EventScroll[src]

impl DerefMut for EventScroll[src]

impl Deref for EventScroll[src]

type Target = Event

The resulting type after dereferencing.

impl Debug for EventScroll[src]

impl Hash for EventScroll[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl FromGlibPtrBorrow<*mut GdkEventScroll> for EventScroll[src]

impl<'a> ToGlibPtr<'a, *const GdkEventScroll> for EventScroll[src]

type Storage = &'a Self

fn to_glib_container(&'a self) -> Stash<'a, P, Self>[src]

Transfer: container. Read more

fn to_glib_full(&self) -> P[src]

Transfer: full. Read more

impl<'a> ToGlibPtrMut<'a, *mut GdkEventScroll> for EventScroll[src]

type Storage = &'a mut Self

impl FromGlibPtrFull<*mut GdkEventScroll> for EventScroll[src]

impl FromGlibPtrNone<*mut GdkEventScroll> for EventScroll[src]

Auto Trait Implementations

impl !Send for EventScroll

impl !Sync for EventScroll

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]