[][src]Trait webkit2gtk_webextension::DOMHTMLTextAreaElementExt

pub trait DOMHTMLTextAreaElementExt: 'static {
    fn get_area_type(&self) -> Option<GString>;
fn get_autofocus(&self) -> bool;
fn get_cols(&self) -> c_long;
fn get_default_value(&self) -> Option<GString>;
fn get_disabled(&self) -> bool;
fn get_form(&self) -> Option<DOMHTMLFormElement>;
fn get_name(&self) -> Option<GString>;
fn get_read_only(&self) -> bool;
fn get_rows(&self) -> c_long;
fn get_selection_end(&self) -> c_long;
fn get_selection_start(&self) -> c_long;
fn get_value(&self) -> Option<GString>;
fn get_will_validate(&self) -> bool;
fn is_edited(&self) -> bool;
fn select(&self);
fn set_autofocus(&self, value: bool);
fn set_cols(&self, value: c_long);
fn set_default_value(&self, value: &str);
fn set_disabled(&self, value: bool);
fn set_name(&self, value: &str);
fn set_read_only(&self, value: bool);
fn set_rows(&self, value: c_long);
fn set_selection_end(&self, value: c_long);
fn set_selection_range(&self, start: c_long, end: c_long, direction: &str);
fn set_selection_start(&self, value: c_long);
fn set_value(&self, value: &str);
fn get_property_type(&self) -> Option<GString>;
fn connect_property_autofocus_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_cols_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_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_read_only_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_rows_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_selection_end_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_selection_start_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_area_type(&self) -> Option<GString>

fn get_autofocus(&self) -> bool

fn get_cols(&self) -> c_long

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

fn get_disabled(&self) -> bool

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

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

fn get_read_only(&self) -> bool

fn get_rows(&self) -> c_long

fn get_selection_end(&self) -> c_long

fn get_selection_start(&self) -> c_long

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

fn get_will_validate(&self) -> bool

fn is_edited(&self) -> bool

fn select(&self)

fn set_autofocus(&self, value: bool)

fn set_cols(&self, value: c_long)

fn set_default_value(&self, value: &str)

fn set_disabled(&self, value: bool)

fn set_name(&self, value: &str)

fn set_read_only(&self, value: bool)

fn set_rows(&self, value: c_long)

fn set_selection_end(&self, value: c_long)

fn set_selection_range(&self, start: c_long, end: c_long, direction: &str)

fn set_selection_start(&self, value: c_long)

fn set_value(&self, value: &str)

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

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

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

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

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

fn connect_property_selection_start_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<DOMHTMLTextAreaElement>> DOMHTMLTextAreaElementExt for O[src]

Loading content...