#![cfg_attr(feature = "dox", feature(doc_cfg))]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::wrong_self_convention)]
#![allow(clippy::non_send_fields_in_send_ty)]
#![doc = include_str!("../README.md")]
pub use ffi;
#[cfg(feature = "freetype")]
pub use freetype;
#[cfg(feature = "use_glib")]
pub use glib;
#[cfg(feature = "use_glib")]
macro_rules! gvalue_impl_inner {
($name:ty, $ffi_name:ty, $get_type:expr) => {
#[allow(unused_imports)]
use glib::translate::*;
impl glib::types::StaticType for $name {
fn static_type() -> glib::types::Type {
unsafe { from_glib($get_type()) }
}
}
impl glib::value::ValueType for $name {
type Type = Self;
}
impl glib::value::ValueTypeOptional for $name {}
};
}
#[cfg(feature = "use_glib")]
macro_rules! gvalue_impl {
($name:ty, $ffi_name:ty, $get_type:expr) => {
gvalue_impl_inner!($name, $ffi_name, $get_type);
unsafe impl<'a> glib::value::FromValue<'a> for $name {
type Checker = glib::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
let ptr = glib::gobject_ffi::g_value_dup_boxed(
glib::translate::ToGlibPtr::to_glib_none(value).0,
);
assert!(!ptr.is_null());
<$name as glib::translate::FromGlibPtrFull<*mut $ffi_name>>::from_glib_full(
ptr as *mut $ffi_name,
)
}
}
unsafe impl<'a> glib::value::FromValue<'a> for &'a $name {
type Checker = glib::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
assert_eq!(
std::mem::size_of::<Self>(),
std::mem::size_of::<glib::ffi::gpointer>()
);
let value = &*(value as *const glib::Value as *const glib::gobject_ffi::GValue);
let ptr = &value.data[0].v_pointer as *const glib::ffi::gpointer
as *const *const $ffi_name;
assert!(!(*ptr).is_null());
&*(ptr as *const $name)
}
}
impl glib::value::ToValue for $name {
fn to_value(&self) -> glib::Value {
unsafe {
let mut value =
glib::Value::from_type(<$name as glib::StaticType>::static_type());
glib::gobject_ffi::g_value_take_boxed(
value.to_glib_none_mut().0,
self.to_glib_full() as *mut _,
);
value
}
}
fn value_type(&self) -> glib::Type {
<$name as glib::StaticType>::static_type()
}
}
impl glib::value::ToValueOptional for $name {
fn to_value_optional(s: Option<&Self>) -> glib::Value {
let mut value = glib::Value::for_value_type::<Self>();
unsafe {
glib::gobject_ffi::g_value_take_boxed(
value.to_glib_none_mut().0,
glib::translate::ToGlibPtr::to_glib_full(&s) as *mut _,
);
}
value
}
}
};
}
#[cfg(feature = "use_glib")]
macro_rules! gvalue_impl_inline {
($name:ty, $ffi_name:ty, $get_type:expr) => {
gvalue_impl_inner!($name, $ffi_name, $get_type);
unsafe impl<'a> glib::value::FromValue<'a> for $name {
type Checker = glib::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
let ptr = glib::gobject_ffi::g_value_get_boxed(
glib::translate::ToGlibPtr::to_glib_none(value).0,
);
assert!(!ptr.is_null());
<$name as glib::translate::FromGlibPtrNone<*mut $ffi_name>>::from_glib_none(
ptr as *mut $ffi_name,
)
}
}
unsafe impl<'a> glib::value::FromValue<'a> for &'a $name {
type Checker = glib::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
let ptr = glib::gobject_ffi::g_value_get_boxed(
glib::translate::ToGlibPtr::to_glib_none(value).0,
);
assert!(!ptr.is_null());
&*(ptr as *mut $name)
}
}
impl glib::value::ToValue for $name {
fn to_value(&self) -> glib::Value {
unsafe {
let ptr =
glib::ffi::g_malloc0(std::mem::size_of::<$ffi_name>()) as *mut $ffi_name;
ptr.write(self.0);
let mut value =
glib::Value::from_type(<$name as glib::StaticType>::static_type());
glib::gobject_ffi::g_value_take_boxed(
value.to_glib_none_mut().0,
ptr as *mut _,
);
value
}
}
fn value_type(&self) -> glib::Type {
<$name as glib::StaticType>::static_type()
}
}
impl glib::value::ToValueOptional for $name {
fn to_value_optional(s: Option<&Self>) -> glib::Value {
let ptr: *mut $ffi_name = match s {
Some(s) => unsafe {
let ptr = glib::ffi::g_malloc0(std::mem::size_of::<$ffi_name>())
as *mut $ffi_name;
ptr.write(s.0);
ptr
},
None => std::ptr::null_mut(),
};
let mut value = glib::Value::for_value_type::<Self>();
unsafe {
glib::gobject_ffi::g_value_take_boxed(
value.to_glib_none_mut().0,
ptr as *mut _,
);
}
value
}
}
};
}
pub use crate::user_data::UserDataKey;
pub use crate::context::{Context, RectangleList};
pub use crate::paths::{Path, PathSegment, PathSegments};
pub use crate::device::Device;
pub use crate::enums::*;
pub use crate::error::{BorrowError, Error, IoError, Result};
pub use crate::patterns::{
Gradient, LinearGradient, Mesh, Pattern, RadialGradient, SolidPattern, SurfacePattern,
};
pub use crate::font::{
FontExtents, FontFace, FontOptions, FontSlant, FontType, FontWeight, Glyph, ScaledFont,
TextCluster, TextExtents, UserFontFace,
};
pub use crate::matrices::Matrix;
pub use crate::recording_surface::RecordingSurface;
pub use crate::rectangle::Rectangle;
pub use crate::rectangle_int::RectangleInt;
pub use crate::region::Region;
pub use crate::surface::{MappedImageSurface, Surface};
pub use crate::image_surface::{ImageSurface, ImageSurfaceData, ImageSurfaceDataOwned};
#[cfg(any(feature = "pdf", feature = "svg", feature = "ps", feature = "dox"))]
pub use stream::StreamWithError;
#[cfg(any(feature = "pdf", feature = "dox"))]
pub use pdf::PdfSurface;
#[cfg(any(feature = "ps", feature = "dox"))]
pub use ps::PsSurface;
#[cfg(any(feature = "svg", feature = "dox"))]
pub use svg::SvgSurface;
#[cfg(any(feature = "xcb", feature = "dox"))]
pub use xcb::{
XCBConnection, XCBDrawable, XCBPixmap, XCBRenderPictFormInfo, XCBScreen, XCBSurface,
XCBVisualType,
};
#[macro_use]
mod surface_macros;
#[macro_use]
mod user_data;
mod constants;
pub use crate::constants::*;
mod utils;
pub use crate::utils::{debug_reset_static_data, version_string, Version};
mod context;
mod device;
mod enums;
mod error;
mod font;
mod image_surface;
mod matrices;
mod paths;
mod patterns;
mod recording_surface;
mod rectangle;
mod rectangle_int;
mod region;
mod surface;
#[cfg(any(feature = "png", feature = "dox"))]
mod surface_png;
#[cfg(any(feature = "xcb", feature = "dox"))]
mod xcb;
#[cfg(any(feature = "pdf", feature = "svg", feature = "ps", feature = "dox"))]
#[macro_use]
mod stream;
#[cfg(any(feature = "pdf", feature = "dox"))]
mod pdf;
#[cfg(any(feature = "ps", feature = "dox"))]
mod ps;
#[cfg(any(feature = "svg", feature = "dox"))]
mod svg;
#[cfg(any(target_os = "macos", feature = "dox"))]
mod quartz_surface;
#[cfg(any(target_os = "macos", feature = "dox"))]
pub use quartz_surface::QuartzSurface;
#[cfg(any(all(windows, feature = "win32-surface"), feature = "dox"))]
mod win32_surface;
#[cfg(any(all(windows, feature = "win32-surface"), feature = "dox"))]
pub use win32_surface::Win32Surface;
#[cfg(not(feature = "use_glib"))]
mod borrowed {
use std::mem;
#[derive(Debug)]
pub struct Borrowed<T>(mem::ManuallyDrop<T>);
impl<T> Borrowed<T> {
pub fn new(val: T) -> Self {
Self(mem::ManuallyDrop::new(val))
}
pub unsafe fn into_inner(self) -> T {
mem::ManuallyDrop::into_inner(self.0)
}
}
impl<T> AsRef<T> for Borrowed<T> {
fn as_ref(&self) -> &T {
&*self.0
}
}
impl<T> std::ops::Deref for Borrowed<T> {
type Target = T;
fn deref(&self) -> &T {
&*self.0
}
}
}
#[cfg(not(feature = "use_glib"))]
pub use borrowed::Borrowed;
#[cfg(feature = "use_glib")]
pub(crate) use glib::translate::Borrowed;