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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
use std::convert::TryFrom;
use std::fmt;
use std::ops::Deref;
use enums::{Content, SurfaceType};
use ffi;
#[cfg(feature = "use_glib")]
use glib::translate::*;
use rectangle::Rectangle;
use surface::Surface;
#[derive(Debug)]
pub struct RecordingSurface(Surface);
impl TryFrom<Surface> for RecordingSurface {
type Error = Surface;
fn try_from(surface: Surface) -> Result<RecordingSurface, Surface> {
if surface.get_type() == SurfaceType::Recording {
Ok(RecordingSurface(surface))
} else {
Err(surface)
}
}
}
impl RecordingSurface {
pub fn create<T: Into<Option<Rectangle>>>(
content: Content,
extends: T,
) -> Option<RecordingSurface> {
unsafe {
let extends = extends.into();
let extends = match extends {
Some(c) => c.to_raw_none(),
None => ::std::ptr::null(),
};
let p = ffi::cairo_recording_surface_create(content.into(), extends);
if p.is_null() {
None
} else {
Some(RecordingSurface(Surface::from_raw_full(p)))
}
}
}
pub fn get_extents(&self) -> Option<Rectangle> {
unsafe {
let rectangle: Rectangle = ::std::mem::zeroed();
if ffi::cairo_recording_surface_get_extents(self.to_raw_none(), rectangle.to_raw_none())
.as_bool()
{
Some(rectangle)
} else {
None
}
}
}
pub fn ink_extents(&self) -> (f64, f64, f64, f64) {
let mut x0 = 0.;
let mut y0 = 0.;
let mut width = 0.;
let mut height = 0.;
unsafe {
ffi::cairo_recording_surface_ink_extents(
self.to_raw_none(),
&mut x0,
&mut y0,
&mut width,
&mut height,
);
}
(x0, y0, width, height)
}
}
#[cfg(feature = "use_glib")]
impl FromGlibPtrNone<*mut ffi::cairo_surface_t> for RecordingSurface {
#[inline]
unsafe fn from_glib_none(ptr: *mut ffi::cairo_surface_t) -> RecordingSurface {
RecordingSurface(Surface::from_glib_none(ptr))
}
}
#[cfg(feature = "use_glib")]
impl FromGlibPtrBorrow<*mut ffi::cairo_surface_t> for RecordingSurface {
#[inline]
unsafe fn from_glib_borrow(ptr: *mut ffi::cairo_surface_t) -> RecordingSurface {
RecordingSurface(Surface::from_glib_borrow(ptr))
}
}
#[cfg(feature = "use_glib")]
impl FromGlibPtrFull<*mut ffi::cairo_surface_t> for RecordingSurface {
#[inline]
unsafe fn from_glib_full(ptr: *mut ffi::cairo_surface_t) -> RecordingSurface {
RecordingSurface(Surface::from_raw_full(ptr))
}
}
#[cfg(feature = "use_glib")]
gvalue_impl!(
RecordingSurface,
ffi::cairo_surface_t,
ffi::gobject::cairo_gobject_surface_get_type
);
impl Deref for RecordingSurface {
type Target = Surface;
fn deref(&self) -> &Surface {
&self.0
}
}
impl Clone for RecordingSurface {
fn clone(&self) -> RecordingSurface {
RecordingSurface(self.0.clone())
}
}
impl fmt::Display for RecordingSurface {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "RecordingSurface")
}
}