[][src]Trait webkit2gtk_webextension::DOMWheelEventExt

pub trait DOMWheelEventExt: 'static {
    fn get_wheel_delta(&self) -> c_long;
fn get_wheel_delta_x(&self) -> c_long;
fn get_wheel_delta_y(&self) -> c_long;
fn init_wheel_event<P: IsA<DOMDOMWindow>>(
        &self,
        wheelDeltaX: c_long,
        wheelDeltaY: c_long,
        view: &P,
        screenX: c_long,
        screenY: c_long,
        clientX: c_long,
        clientY: c_long,
        ctrlKey: bool,
        altKey: bool,
        shiftKey: bool,
        metaKey: bool
    );
fn connect_property_wheel_delta_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_wheel_delta_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_wheel_delta_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_wheel_delta(&self) -> c_long

fn get_wheel_delta_x(&self) -> c_long

fn get_wheel_delta_y(&self) -> c_long

fn init_wheel_event<P: IsA<DOMDOMWindow>>(
    &self,
    wheelDeltaX: c_long,
    wheelDeltaY: c_long,
    view: &P,
    screenX: c_long,
    screenY: c_long,
    clientX: c_long,
    clientY: c_long,
    ctrlKey: bool,
    altKey: bool,
    shiftKey: bool,
    metaKey: bool
)

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

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

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

Loading content...

Implementors

impl<O: IsA<DOMWheelEvent>> DOMWheelEventExt for O[src]

Loading content...