[][src]Trait webkit2gtk_webextension::DOMHTMLOptionElementExt

pub trait DOMHTMLOptionElementExt: 'static {
    fn get_default_selected(&self) -> bool;
fn get_disabled(&self) -> bool;
fn get_form(&self) -> Option<DOMHTMLFormElement>;
fn get_index(&self) -> c_long;
fn get_label(&self) -> Option<GString>;
fn get_selected(&self) -> bool;
fn get_text(&self) -> Option<GString>;
fn get_value(&self) -> Option<GString>;
fn set_default_selected(&self, value: bool);
fn set_disabled(&self, value: bool);
fn set_label(&self, value: &str);
fn set_selected(&self, value: bool);
fn set_value(&self, value: &str);
fn connect_property_default_selected_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_index_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_selected_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_default_selected(&self) -> bool

fn get_disabled(&self) -> bool

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

fn get_index(&self) -> c_long

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

fn get_selected(&self) -> bool

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

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

fn set_default_selected(&self, value: bool)

fn set_disabled(&self, value: bool)

fn set_label(&self, value: &str)

fn set_selected(&self, value: bool)

fn set_value(&self, value: &str)

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<DOMHTMLOptionElement>> DOMHTMLOptionElementExt for O[src]

Loading content...