use crate::{RenderNode, RoundedRect};
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GskRoundedClipNode")]
pub struct RoundedClipNode(Shared<ffi::GskRoundedClipNode>);
match fn {
ref => |ptr| ffi::gsk_render_node_ref(ptr as *mut ffi::GskRenderNode),
unref => |ptr| ffi::gsk_render_node_unref(ptr as *mut ffi::GskRenderNode),
}
}
impl glib::StaticType for RoundedClipNode {
fn static_type() -> glib::Type {
unsafe { from_glib(ffi::gsk_rounded_clip_node_get_type()) }
}
}
impl RoundedClipNode {
#[doc(alias = "gsk_rounded_clip_node_new")]
pub fn new(child: impl AsRef<RenderNode>, clip: &RoundedRect) -> RoundedClipNode {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::gsk_rounded_clip_node_new(
child.as_ref().to_glib_none().0,
clip.to_glib_none().0,
))
}
}
#[doc(alias = "gsk_rounded_clip_node_get_child")]
#[doc(alias = "get_child")]
pub fn child(&self) -> RenderNode {
unsafe { from_glib_none(ffi::gsk_rounded_clip_node_get_child(self.to_glib_none().0)) }
}
#[doc(alias = "gsk_rounded_clip_node_get_clip")]
#[doc(alias = "get_clip")]
pub fn clip(&self) -> RoundedRect {
unsafe { from_glib_none(ffi::gsk_rounded_clip_node_get_clip(self.to_glib_none().0)) }
}
}
impl fmt::Display for RoundedClipNode {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("RoundedClipNode")
}
}