1use std::borrow::Borrow;
4
5use glib::translate::*;
6
7use crate::{ffi, prelude::*, Snapshot};
8
9pub trait SnapshotExtManual: IsA<Snapshot> + 'static {
10 #[doc(alias = "gtk_snapshot_append_border")]
22 fn append_border(
23 &self,
24 outline: &gsk::RoundedRect,
25 border_width: &[f32; 4],
26 border_color: &[gdk::RGBA; 4],
27 ) {
28 unsafe {
29 let border_color_ptr: Vec<gdk::ffi::GdkRGBA> =
30 border_color.iter().map(|c| *c.to_glib_none().0).collect();
31 ffi::gtk_snapshot_append_border(
32 self.as_ref().to_glib_none().0,
33 outline.to_glib_none().0,
34 border_width,
35 border_color_ptr.as_ptr() as *const _,
36 )
37 }
38 }
39
40 #[doc(alias = "gtk_snapshot_push_debug")]
48 fn push_debug(&self, message: impl IntoGStr) {
49 unsafe {
50 message.run_with_gstr(|message| {
51 ffi::gtk_snapshot_push_debug(self.as_ref().to_glib_none().0, message.as_ptr())
52 })
53 }
54 }
55}
56
57impl<O: IsA<Snapshot>> SnapshotExtManual for O {}
58
59impl AsRef<Snapshot> for gdk::Snapshot {
60 #[inline]
61 fn as_ref(&self) -> &Snapshot {
62 self.downcast_ref().unwrap()
63 }
64}
65
66impl From<gdk::Snapshot> for Snapshot {
67 #[inline]
68 fn from(e: gdk::Snapshot) -> Snapshot {
69 assert_initialized_main_thread!();
70 e.downcast().unwrap()
71 }
72}
73
74impl Borrow<Snapshot> for gdk::Snapshot {
75 #[inline]
76 fn borrow(&self) -> &Snapshot {
77 self.downcast_ref().unwrap()
78 }
79}
80
81unsafe impl IsA<Snapshot> for gdk::Snapshot {}