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
// 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, WebsitePolicies};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    /// A pending policy decision.
    ///
    /// Often WebKit allows the client to decide the policy for certain
    /// operations. For instance, a client may want to open a link in a new
    /// tab, block a navigation entirely, query the user or trigger a download
    /// instead of a navigation. In these cases WebKit will fire the
    /// #WebKitWebView::decide-policy signal with a #WebKitPolicyDecision
    /// object. If the signal handler does nothing, WebKit will act as if
    /// webkit_policy_decision_use() was called as soon as signal handling
    /// completes. To make a policy decision asynchronously, simply increment
    /// the reference count of the #WebKitPolicyDecision object.
    ///
    /// This is an Abstract Base Class, you cannot instantiate it.
    ///
    /// # Implements
    ///
    /// [`PolicyDecisionExt`][trait@crate::prelude::PolicyDecisionExt]
    #[doc(alias = "WebKitPolicyDecision")]
    pub struct PolicyDecision(Object<ffi::WebKitPolicyDecision, ffi::WebKitPolicyDecisionClass>);

    match fn {
        type_ => || ffi::webkit_policy_decision_get_type(),
    }
}

impl PolicyDecision {
    pub const NONE: Option<&'static PolicyDecision> = None;
}

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::PolicyDecision>> Sealed for T {}
}

/// Trait containing all [`struct@PolicyDecision`] methods.
///
/// # Implementors
///
/// [`NavigationPolicyDecision`][struct@crate::NavigationPolicyDecision], [`PolicyDecision`][struct@crate::PolicyDecision], [`ResponsePolicyDecision`][struct@crate::ResponsePolicyDecision]
pub trait PolicyDecisionExt: IsA<PolicyDecision> + sealed::Sealed + 'static {
    /// Spawn a download from this decision.
    #[doc(alias = "webkit_policy_decision_download")]
    fn download(&self) {
        unsafe {
            ffi::webkit_policy_decision_download(self.as_ref().to_glib_none().0);
        }
    }

    /// #WebKitResponsePolicyDecision, this would cancel the request.
    ///
    /// Ignore the action which triggered this decision. For instance, for a
    /// #WebKitResponsePolicyDecision, this would cancel the request.
    #[doc(alias = "webkit_policy_decision_ignore")]
    fn ignore(&self) {
        unsafe {
            ffi::webkit_policy_decision_ignore(self.as_ref().to_glib_none().0);
        }
    }

    /// Accept the action which triggered this decision.
    #[doc(alias = "webkit_policy_decision_use")]
    #[doc(alias = "use")]
    fn use_(&self) {
        unsafe {
            ffi::webkit_policy_decision_use(self.as_ref().to_glib_none().0);
        }
    }

    /// Accept the navigation action and continue with provided @policies.
    ///
    /// Accept the navigation action which triggered this decision, and
    /// continue with @policies affecting all subsequent loads of resources
    /// in the origin associated with the accepted navigation action.
    ///
    /// For example, a navigation decision to a video sharing website may
    /// be accepted under the priviso no movies are allowed to autoplay. The
    /// autoplay policy in this case would be set in the @policies.
    /// ## `policies`
    /// a #WebKitWebsitePolicies
    #[doc(alias = "webkit_policy_decision_use_with_policies")]
    fn use_with_policies(&self, policies: &WebsitePolicies) {
        unsafe {
            ffi::webkit_policy_decision_use_with_policies(
                self.as_ref().to_glib_none().0,
                policies.to_glib_none().0,
            );
        }
    }
}

impl<O: IsA<PolicyDecision>> PolicyDecisionExt for O {}