pub trait DOMHTMLInputElementExt: 'static {
Show 81 methods
fn accept(&self) -> Option<GString>;
fn align(&self) -> Option<GString>;
fn alt(&self) -> Option<GString>;
fn is_auto_filled(&self) -> bool;
fn is_autofocus(&self) -> bool;
fn is_capture(&self) -> bool;
fn capture_type(&self) -> Option<GString>;
fn is_checked(&self) -> bool;
fn is_default_checked(&self) -> bool;
fn default_value(&self) -> Option<GString>;
fn is_disabled(&self) -> bool;
fn files(&self) -> Option<DOMFileList>;
fn form(&self) -> Option<DOMHTMLFormElement>;
fn height(&self) -> c_ulong;
fn is_indeterminate(&self) -> bool;
fn input_type(&self) -> Option<GString>;
fn max_length(&self) -> c_long;
fn is_multiple(&self) -> bool;
fn name(&self) -> Option<GString>;
fn is_read_only(&self) -> bool;
fn size(&self) -> c_ulong;
fn src(&self) -> Option<GString>;
fn use_map(&self) -> Option<GString>;
fn value(&self) -> Option<GString>;
fn width(&self) -> c_ulong;
fn is_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_auto_filled(&self, value: bool);
fn set_autofocus(&self, value: bool);
fn set_capture_type(&self, value: &str);
fn set_checked(&self, value: bool);
fn set_default_checked(&self, value: bool);
fn set_default_value(&self, value: &str);
fn set_disabled(&self, value: bool);
fn set_editing_value(&self, value: &str);
fn set_files(&self, value: &impl IsA<DOMFileList>);
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_capture(&self, capture: Option<&str>);
fn set_property_default_checked(&self, default_checked: bool);
fn get_property_read_only(&self) -> bool;
fn type_(&self) -> Option<GString>;
fn set_type(&self, type_: Option<&str>);
fn connect_accept_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_align_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_alt_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_autofocus_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_capture_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_checked_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_default_checked_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_default_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_disabled_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_files_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_form_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_height_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_indeterminate_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_max_length_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_multiple_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_read_only_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_src_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_type_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_use_map_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_width_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_will_validate_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Expand description
Required Methods
sourcefn is_auto_filled(&self) -> bool
fn is_auto_filled(&self) -> bool
Available on crate feature
v2_16
only.Deprecated since 2.22
Use DOMElementExt::html_input_element_get_auto_filled()
instead.
Returns
A gboolean
sourcefn is_autofocus(&self) -> bool
fn is_autofocus(&self) -> bool
sourcefn is_capture(&self) -> bool
fn is_capture(&self) -> bool
sourcefn capture_type(&self) -> Option<GString>
fn capture_type(&self) -> Option<GString>
Available on crate feature
v2_14
only.sourcefn is_checked(&self) -> bool
fn is_checked(&self) -> bool
sourcefn is_default_checked(&self) -> bool
fn is_default_checked(&self) -> bool
sourcefn default_value(&self) -> Option<GString>
fn default_value(&self) -> Option<GString>
sourcefn is_disabled(&self) -> bool
fn is_disabled(&self) -> bool
sourcefn files(&self) -> Option<DOMFileList>
fn files(&self) -> Option<DOMFileList>
sourcefn form(&self) -> Option<DOMHTMLFormElement>
fn form(&self) -> Option<DOMHTMLFormElement>
sourcefn is_indeterminate(&self) -> bool
fn is_indeterminate(&self) -> bool
sourcefn input_type(&self) -> Option<GString>
fn input_type(&self) -> Option<GString>
sourcefn max_length(&self) -> c_long
fn max_length(&self) -> c_long
sourcefn is_multiple(&self) -> bool
fn is_multiple(&self) -> bool
sourcefn is_read_only(&self) -> bool
fn is_read_only(&self) -> bool
Available on crate feature
v2_16
only.sourcefn is_will_validate(&self) -> bool
fn is_will_validate(&self) -> bool
sourcefn is_edited(&self) -> bool
fn is_edited(&self) -> bool
Deprecated since 2.22
Use DOMElementExt::html_input_element_is_user_edited()
instead.
Returns
A gboolean
sourcefn select(&self)
fn select(&self)
Deprecated since 2.22
Use JavaScriptCore API instead
sourcefn set_accept(&self, value: &str)
fn set_accept(&self, value: &str)
sourcefn set_auto_filled(&self, value: bool)
fn set_auto_filled(&self, value: bool)
Available on crate feature
v2_16
only.Deprecated since 2.22
Use DOMElementExt::html_input_element_set_auto_filled()
instead.
value
A gboolean
sourcefn set_autofocus(&self, value: bool)
fn set_autofocus(&self, value: bool)
sourcefn set_capture_type(&self, value: &str)
fn set_capture_type(&self, value: &str)
Available on crate feature
v2_16
only.sourcefn set_checked(&self, value: bool)
fn set_checked(&self, value: bool)
sourcefn set_default_checked(&self, value: bool)
fn set_default_checked(&self, value: bool)
Available on crate feature
v2_16
only.sourcefn set_default_value(&self, value: &str)
fn set_default_value(&self, value: &str)
sourcefn set_disabled(&self, value: bool)
fn set_disabled(&self, value: bool)
sourcefn set_editing_value(&self, value: &str)
fn set_editing_value(&self, value: &str)
Available on crate feature
v2_16
only.Deprecated since 2.22
Use DOMElementExt::html_input_element_set_editing_value()
instead.
value
A gchar