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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from webkit-gir-files
// DO NOT EDIT
use crate::ffi;
use glib::translate::*;
glib::wrapper! {
/// A reply for a script message received.
/// If no reply has been sent by the user, an automatically generated reply with
/// undefined value with be sent.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ScriptMessageReply(Shared<ffi::WebKitScriptMessageReply>);
match fn {
ref => |ptr| ffi::webkit_script_message_reply_ref(ptr),
unref => |ptr| ffi::webkit_script_message_reply_unref(ptr),
type_ => || ffi::webkit_script_message_reply_get_type(),
}
}
impl ScriptMessageReply {
/// Reply to a script message with an error message.
/// ## `error_message`
/// An error message to return as specified by the user's script message
#[doc(alias = "webkit_script_message_reply_return_error_message")]
pub fn return_error_message(&self, error_message: &str) {
unsafe {
ffi::webkit_script_message_reply_return_error_message(
self.to_glib_none().0,
error_message.to_glib_none().0,
);
}
}
/// Reply to a script message with a value.
///
/// This function can be called twice for passing the reply value in.
/// ## `reply_value`
/// Reply value of the provided script message
#[doc(alias = "webkit_script_message_reply_return_value")]
pub fn return_value(&self, reply_value: &javascriptcore::Value) {
unsafe {
ffi::webkit_script_message_reply_return_value(
self.to_glib_none().0,
reply_value.to_glib_none().0,
);
}
}
}