[][src]Trait webkit2gtk_webextension::DOMUIEventExt

pub trait DOMUIEventExt: 'static {
    fn get_char_code(&self) -> c_long;
fn get_detail(&self) -> c_long;
fn get_key_code(&self) -> c_long;
fn get_layer_x(&self) -> c_long;
fn get_layer_y(&self) -> c_long;
fn get_page_x(&self) -> c_long;
fn get_page_y(&self) -> c_long;
fn get_view(&self) -> Option<DOMDOMWindow>;
fn init_ui_event<P: IsA<DOMDOMWindow>>(
        &self,
        type_: &str,
        canBubble: bool,
        cancelable: bool,
        view: &P,
        detail: c_long
    );
fn connect_property_char_code_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_detail_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_key_code_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_layer_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_layer_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_page_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_page_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_view_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_char_code(&self) -> c_long

fn get_detail(&self) -> c_long

fn get_key_code(&self) -> c_long

fn get_layer_x(&self) -> c_long

fn get_layer_y(&self) -> c_long

fn get_page_x(&self) -> c_long

fn get_page_y(&self) -> c_long

fn get_view(&self) -> Option<DOMDOMWindow>

fn init_ui_event<P: IsA<DOMDOMWindow>>(
    &self,
    type_: &str,
    canBubble: bool,
    cancelable: bool,
    view: &P,
    detail: c_long
)

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<DOMUIEvent>> DOMUIEventExt for O[src]

Loading content...