[][src]Trait webkit2gtk_webextension::DOMHTMLInputElementExt

pub trait DOMHTMLInputElementExt: 'static {
    fn get_accept(&self) -> Option<GString>;
fn get_align(&self) -> Option<GString>;
fn get_alt(&self) -> Option<GString>;
fn get_autofocus(&self) -> bool;
fn get_capture(&self) -> bool;
fn get_checked(&self) -> bool;
fn get_default_checked(&self) -> bool;
fn get_default_value(&self) -> Option<GString>;
fn get_disabled(&self) -> bool;
fn get_files(&self) -> Option<DOMFileList>;
fn get_form(&self) -> Option<DOMHTMLFormElement>;
fn get_height(&self) -> c_ulong;
fn get_indeterminate(&self) -> bool;
fn get_input_type(&self) -> Option<GString>;
fn get_max_length(&self) -> c_long;
fn get_multiple(&self) -> bool;
fn get_name(&self) -> Option<GString>;
fn get_size(&self) -> c_ulong;
fn get_src(&self) -> Option<GString>;
fn get_use_map(&self) -> Option<GString>;
fn get_value(&self) -> Option<GString>;
fn get_width(&self) -> c_ulong;
fn get_will_validate(&self) -> bool;
fn is_edited(&self) -> bool;
fn select(&self);
fn set_accept(&self, value: &str);
fn set_align(&self, value: &str);
fn set_alt(&self, value: &str);
fn set_autofocus(&self, value: bool);
fn set_checked(&self, value: bool);
fn set_default_value(&self, value: &str);
fn set_disabled(&self, value: bool);
fn set_files<P: IsA<DOMFileList>>(&self, value: &P);
fn set_height(&self, value: c_ulong);
fn set_indeterminate(&self, value: bool);
fn set_input_type(&self, value: &str);
fn set_max_length(&self, value: c_long) -> Result<(), Error>;
fn set_multiple(&self, value: bool);
fn set_name(&self, value: &str);
fn set_read_only(&self, value: bool);
fn set_size(&self, value: c_ulong) -> Result<(), Error>;
fn set_src(&self, value: &str);
fn set_use_map(&self, value: &str);
fn set_value(&self, value: &str);
fn set_width(&self, value: c_ulong);
fn set_property_capture(&self, capture: Option<&str>);
fn set_property_default_checked(&self, default_checked: bool);
fn get_property_read_only(&self) -> bool;
fn get_property_type(&self) -> Option<GString>;
fn set_property_type(&self, type_: Option<&str>);
fn connect_property_accept_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_alt_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_autofocus_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_capture_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_checked_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_default_checked_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_default_value_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_files_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_height_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_indeterminate_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_max_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_multiple_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_read_only_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_src_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_use_map_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_width_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_accept(&self) -> Option<GString>

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

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

fn get_autofocus(&self) -> bool

fn get_capture(&self) -> bool

fn get_checked(&self) -> bool

fn get_default_checked(&self) -> bool

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

fn get_disabled(&self) -> bool

fn get_files(&self) -> Option<DOMFileList>

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

fn get_height(&self) -> c_ulong

fn get_indeterminate(&self) -> bool

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

fn get_max_length(&self) -> c_long

fn get_multiple(&self) -> bool

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

fn get_size(&self) -> c_ulong

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

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

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

fn get_width(&self) -> c_ulong

fn get_will_validate(&self) -> bool

fn is_edited(&self) -> bool

fn select(&self)

fn set_accept(&self, value: &str)

fn set_align(&self, value: &str)

fn set_alt(&self, value: &str)

fn set_autofocus(&self, value: bool)

fn set_checked(&self, value: bool)

fn set_default_value(&self, value: &str)

fn set_disabled(&self, value: bool)

fn set_files<P: IsA<DOMFileList>>(&self, value: &P)

fn set_height(&self, value: c_ulong)

fn set_indeterminate(&self, value: bool)

fn set_input_type(&self, value: &str)

fn set_max_length(&self, value: c_long) -> Result<(), Error>

fn set_multiple(&self, value: bool)

fn set_name(&self, value: &str)

fn set_read_only(&self, value: bool)

fn set_size(&self, value: c_ulong) -> Result<(), Error>

fn set_src(&self, value: &str)

fn set_use_map(&self, value: &str)

fn set_value(&self, value: &str)

fn set_width(&self, value: c_ulong)

fn set_property_capture(&self, capture: Option<&str>)

fn set_property_default_checked(&self, default_checked: bool)

fn get_property_read_only(&self) -> bool

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

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

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

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

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

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

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

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

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

fn connect_property_default_value_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_files_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_height_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

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

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

fn connect_property_multiple_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_read_only_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

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

fn connect_property_src_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_use_map_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_width_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<DOMHTMLInputElement>> DOMHTMLInputElementExt for O[src]

Loading content...