use crate::AutoplayPolicy;
use glib::object::Cast;
use glib::object::IsA;
use glib::translate::*;
use glib::StaticType;
use glib::ToValue;
use std::fmt;
glib::wrapper! {
#[doc(alias = "WebKitWebsitePolicies")]
pub struct WebsitePolicies(Object<ffi::WebKitWebsitePolicies, ffi::WebKitWebsitePoliciesClass>);
match fn {
type_ => || ffi::webkit_website_policies_get_type(),
}
}
impl WebsitePolicies {
#[doc(alias = "webkit_website_policies_new")]
pub fn new() -> WebsitePolicies {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::webkit_website_policies_new()) }
}
pub fn builder() -> WebsitePoliciesBuilder {
WebsitePoliciesBuilder::default()
}
}
#[cfg(any(feature = "v2_30", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v2_30")))]
impl Default for WebsitePolicies {
fn default() -> Self {
Self::new()
}
}
#[derive(Clone, Default)]
pub struct WebsitePoliciesBuilder {
#[cfg(any(feature = "v2_30", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v2_30")))]
autoplay: Option<AutoplayPolicy>,
}
impl WebsitePoliciesBuilder {
pub fn new() -> Self {
Self::default()
}
pub fn build(self) -> WebsitePolicies {
let mut properties: Vec<(&str, &dyn ToValue)> = vec![];
#[cfg(any(feature = "v2_30", feature = "dox"))]
if let Some(ref autoplay) = self.autoplay {
properties.push(("autoplay", autoplay));
}
glib::Object::new::<WebsitePolicies>(&properties)
.expect("Failed to create an instance of WebsitePolicies")
}
#[cfg(any(feature = "v2_30", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v2_30")))]
pub fn autoplay(mut self, autoplay: AutoplayPolicy) -> Self {
self.autoplay = Some(autoplay);
self
}
}
pub const NONE_WEBSITE_POLICIES: Option<&WebsitePolicies> = None;
pub trait WebsitePoliciesExt: 'static {
#[doc(alias = "webkit_website_policies_get_autoplay_policy")]
#[doc(alias = "get_autoplay_policy")]
fn autoplay_policy(&self) -> AutoplayPolicy;
#[cfg(any(feature = "v2_30", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v2_30")))]
fn autoplay(&self) -> AutoplayPolicy;
}
impl<O: IsA<WebsitePolicies>> WebsitePoliciesExt for O {
fn autoplay_policy(&self) -> AutoplayPolicy {
unsafe {
from_glib(ffi::webkit_website_policies_get_autoplay_policy(
self.as_ref().to_glib_none().0,
))
}
}
#[cfg(any(feature = "v2_30", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v2_30")))]
fn autoplay(&self) -> AutoplayPolicy {
unsafe {
let mut value = glib::Value::from_type(<AutoplayPolicy as StaticType>::static_type());
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"autoplay\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `autoplay` getter")
}
}
}
impl fmt::Display for WebsitePolicies {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("WebsitePolicies")
}
}