pub trait DOMUIEventExt: 'static {
Show 17 methods fn char_code(&self) -> c_long; fn detail(&self) -> c_long; fn key_code(&self) -> c_long; fn layer_x(&self) -> c_long; fn layer_y(&self) -> c_long; fn page_x(&self) -> c_long; fn page_y(&self) -> c_long; fn view(&self) -> Option<DOMDOMWindow>; fn init_ui_event(
        &self,
        type_: &str,
        canBubble: bool,
        cancelable: bool,
        view: &impl IsA<DOMDOMWindow>,
        detail: c_long
    ); fn connect_char_code_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_detail_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_key_code_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_layer_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_layer_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_page_x_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_page_y_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_view_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMDOMWindow

Deprecated since 2.22

Use JavaScriptCore API instead

type_

A gchar

canBubble

A gboolean

cancelable

A gboolean

view

A DOMDOMWindow

detail

A glong

Implementors