Struct webkit2gtk::ScriptDialog
source · [−]#[repr(transparent)]pub struct ScriptDialog { /* private fields */ }
v2_24
only.Expand description
Carries details to be shown in user-facing dialogs.
Implementations
sourceimpl ScriptDialog
impl ScriptDialog
pub fn as_ptr(&self) -> *mut WebKitScriptDialog
sourceimpl ScriptDialog
impl ScriptDialog
sourcepub fn close(&self)
pub fn close(&self)
Close self
.
When handling a ScriptDialog
asynchronously (webkit_script_dialog_ref()
was called in signal::WebView::script-dialog
callback), this function needs to be called to notify
that we are done with the script dialog. The dialog will be closed on destruction if this function
hasn’t been called before.
sourcepub fn confirm_set_confirmed(&self, confirmed: bool)
pub fn confirm_set_confirmed(&self, confirmed: bool)
Set whether the user confirmed the dialog.
This method is used for ScriptDialogType::Confirm
and ScriptDialogType::BeforeUnloadConfirm
dialogs when
signal::WebView::script-dialog
signal is emitted to set whether the user
confirmed the dialog or not. The default implementation of signal::WebView::script-dialog
signal sets true
when the OK or Stay buttons are clicked and false
otherwise.
It’s an error to use this method with a ScriptDialog
that is not of type
ScriptDialogType::Confirm
or ScriptDialogType::BeforeUnloadConfirm
confirmed
whether user confirmed the dialog
sourcepub fn dialog_type(&self) -> ScriptDialogType
pub fn dialog_type(&self) -> ScriptDialogType
sourcepub fn prompt_get_default_text(&self) -> Option<GString>
pub fn prompt_get_default_text(&self) -> Option<GString>
Get the default text of a ScriptDialog
of type ScriptDialogType::Prompt
.
It’s an error to use this method with a ScriptDialog
that is not of type
ScriptDialogType::Prompt
.
Returns
the default text of self
sourcepub fn prompt_set_text(&self, text: &str)
pub fn prompt_set_text(&self, text: &str)
Set the text entered by the user in the dialog.
This method is used for ScriptDialogType::Prompt
dialogs when
signal::WebView::script-dialog
signal is emitted to set the text
entered by the user. The default implementation of signal::WebView::script-dialog
signal sets the text of the entry form when OK button is clicked, otherwise None
is set.
It’s an error to use this method with a ScriptDialog
that is not of type
ScriptDialogType::Prompt
.
text
the text to set
Trait Implementations
sourceimpl Clone for ScriptDialog
impl Clone for ScriptDialog
sourceimpl Debug for ScriptDialog
impl Debug for ScriptDialog
sourceimpl Hash for ScriptDialog
impl Hash for ScriptDialog
sourceimpl Ord for ScriptDialog
impl Ord for ScriptDialog
sourcefn cmp(&self, other: &ScriptDialog) -> Ordering
fn cmp(&self, other: &ScriptDialog) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<ScriptDialog> for ScriptDialog
impl PartialEq<ScriptDialog> for ScriptDialog
sourcefn eq(&self, other: &ScriptDialog) -> bool
fn eq(&self, other: &ScriptDialog) -> bool
sourceimpl PartialOrd<ScriptDialog> for ScriptDialog
impl PartialOrd<ScriptDialog> for ScriptDialog
sourcefn partial_cmp(&self, other: &ScriptDialog) -> Option<Ordering>
fn partial_cmp(&self, other: &ScriptDialog) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl StaticType for ScriptDialog
impl StaticType for ScriptDialog
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.