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
use glib::translate::*;

glib::wrapper! {
    /// Result of JavaScript evaluation in a web view.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct JavascriptResult(Shared<ffi::WebKitJavascriptResult>);

    match fn {
        ref => |ptr| ffi::webkit_javascript_result_ref(ptr),
        unref => |ptr| ffi::webkit_javascript_result_unref(ptr),
        type_ => || ffi::webkit_javascript_result_get_type(),
    }
}

impl JavascriptResult {
    /// Get the global Javascript context.
    ///
    /// Get the global Javascript context that should be used with the
    /// `<function>`JSValueRef`</function>` returned by [`value()`][Self::value()].
    ///
    /// # Deprecated since 2.22
    ///
    /// Use `jsc_value_get_context()` instead.
    ///
    /// # Returns
    ///
    /// the `<function>`JSGlobalContextRef`</function>` for the [`JavascriptResult`][crate::JavascriptResult]
    #[cfg_attr(feature = "v2_22", deprecated = "Since 2.22")]
    #[doc(alias = "webkit_javascript_result_get_global_context")]
    #[doc(alias = "get_global_context")]
    pub fn global_context(&self) -> Option<javascriptcore::GlobalContextRef> {
        unsafe {
            from_glib_none(ffi::webkit_javascript_result_get_global_context(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the `JSCValue` of `self`.
    ///
    /// # Returns
    ///
    /// the `JSCValue` of the [`JavascriptResult`][crate::JavascriptResult]
    #[cfg(any(feature = "v2_22", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v2_22")))]
    #[doc(alias = "webkit_javascript_result_get_js_value")]
    #[doc(alias = "get_js_value")]
    pub fn js_value(&self) -> Option<javascriptcore::Value> {
        unsafe {
            from_glib_none(ffi::webkit_javascript_result_get_js_value(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the value of `self`.
    ///
    /// You should use the `<function>`JSGlobalContextRef`</function>`
    /// returned by [`global_context()`][Self::global_context()] to use the `<function>`JSValueRef`</function>`.
    ///
    /// # Deprecated since 2.22
    ///
    /// Use [`js_value()`][Self::js_value()] instead.
    ///
    /// # Returns
    ///
    /// the `<function>`JSValueRef`</function>` of the [`JavascriptResult`][crate::JavascriptResult]
    #[cfg_attr(feature = "v2_22", deprecated = "Since 2.22")]
    #[doc(alias = "webkit_javascript_result_get_value")]
    #[doc(alias = "get_value")]
    pub fn value(&self) -> Option<javascriptcore::ValueRef> {
        unsafe {
            from_glib_none(ffi::webkit_javascript_result_get_value(
                self.to_glib_none().0,
            ))
        }
    }
}