1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// from webkit2gtk-gir-files
// DO NOT EDIT
use crate::ScriptDialogType;
use glib::translate::*;
glib::wrapper! {
/// Carries details to be shown in user-facing dialogs.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ScriptDialog(Shared<ffi::WebKitScriptDialog>);
match fn {
ref => |ptr| ffi::webkit_script_dialog_ref(ptr),
unref => |ptr| ffi::webkit_script_dialog_unref(ptr),
type_ => || ffi::webkit_script_dialog_get_type(),
}
}
impl ScriptDialog {
/// Close `self`.
///
/// When handling a [`ScriptDialog`][crate::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.
#[doc(alias = "webkit_script_dialog_close")]
pub fn close(&self) {
unsafe {
ffi::webkit_script_dialog_close(self.to_glib_none().0);
}
}
/// Set whether the user confirmed the dialog.
///
/// This method is used for [`ScriptDialogType::Confirm`][crate::ScriptDialogType::Confirm] and [`ScriptDialogType::BeforeUnloadConfirm`][crate::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`][crate::ScriptDialog] that is not of type
/// [`ScriptDialogType::Confirm`][crate::ScriptDialogType::Confirm] or [`ScriptDialogType::BeforeUnloadConfirm`][crate::ScriptDialogType::BeforeUnloadConfirm]
/// ## `confirmed`
/// whether user confirmed the dialog
#[doc(alias = "webkit_script_dialog_confirm_set_confirmed")]
pub fn confirm_set_confirmed(&self, confirmed: bool) {
unsafe {
ffi::webkit_script_dialog_confirm_set_confirmed(
self.to_glib_none().0,
confirmed.into_glib(),
);
}
}
/// Get the dialog type of a [`ScriptDialog`][crate::ScriptDialog].
///
/// # Returns
///
/// the [`ScriptDialogType`][crate::ScriptDialogType] of `self`
#[doc(alias = "webkit_script_dialog_get_dialog_type")]
#[doc(alias = "get_dialog_type")]
pub fn dialog_type(&self) -> ScriptDialogType {
unsafe {
from_glib(ffi::webkit_script_dialog_get_dialog_type(
self.to_glib_none().0,
))
}
}
/// Get the message of a [`ScriptDialog`][crate::ScriptDialog].
///
/// # Returns
///
/// the message of `self`.
#[doc(alias = "webkit_script_dialog_get_message")]
#[doc(alias = "get_message")]
pub fn message(&self) -> Option<glib::GString> {
unsafe { from_glib_none(ffi::webkit_script_dialog_get_message(self.to_glib_none().0)) }
}
/// Get the default text of a [`ScriptDialog`][crate::ScriptDialog] of type [`ScriptDialogType::Prompt`][crate::ScriptDialogType::Prompt].
///
/// It's an error to use this method with a [`ScriptDialog`][crate::ScriptDialog] that is not of type
/// [`ScriptDialogType::Prompt`][crate::ScriptDialogType::Prompt].
///
/// # Returns
///
/// the default text of `self`
#[doc(alias = "webkit_script_dialog_prompt_get_default_text")]
pub fn prompt_get_default_text(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::webkit_script_dialog_prompt_get_default_text(
self.to_glib_none().0,
))
}
}
/// Set the text entered by the user in the dialog.
///
/// This method is used for [`ScriptDialogType::Prompt`][crate::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`][crate::ScriptDialog] that is not of type
/// [`ScriptDialogType::Prompt`][crate::ScriptDialogType::Prompt].
/// ## `text`
/// the text to set
#[doc(alias = "webkit_script_dialog_prompt_set_text")]
pub fn prompt_set_text(&self, text: &str) {
unsafe {
ffi::webkit_script_dialog_prompt_set_text(self.to_glib_none().0, text.to_glib_none().0);
}
}
}