[][src]Trait webkit2gtk_webextension::DOMHTMLButtonElementExt

pub trait DOMHTMLButtonElementExt: 'static {
    fn get_autofocus(&self) -> bool;
fn get_button_type(&self) -> Option<GString>;
fn get_disabled(&self) -> bool;
fn get_form(&self) -> Option<DOMHTMLFormElement>;
fn get_name(&self) -> Option<GString>;
fn get_value(&self) -> Option<GString>;
fn get_will_validate(&self) -> bool;
fn set_autofocus(&self, value: bool);
fn set_button_type(&self, value: &str);
fn set_disabled(&self, value: bool);
fn set_name(&self, value: &str);
fn set_value(&self, value: &str);
fn get_property_type(&self) -> Option<GString>;
fn set_property_type(&self, type_: Option<&str>);
fn connect_property_autofocus_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_disabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_form_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_will_validate_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_autofocus(&self) -> bool

fn get_button_type(&self) -> Option<GString>

fn get_disabled(&self) -> bool

fn get_form(&self) -> Option<DOMHTMLFormElement>

fn get_name(&self) -> Option<GString>

fn get_value(&self) -> Option<GString>

fn get_will_validate(&self) -> bool

fn set_autofocus(&self, value: bool)

fn set_button_type(&self, value: &str)

fn set_disabled(&self, value: bool)

fn set_name(&self, value: &str)

fn set_value(&self, value: &str)

fn get_property_type(&self) -> Option<GString>

fn set_property_type(&self, type_: Option<&str>)

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<DOMHTMLButtonElement>> DOMHTMLButtonElementExt for O[src]

Loading content...