use glib::translate::*;
use pango_sys;
#[cfg(any(feature = "v1_38", feature = "dox"))]
use std::mem;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Matrix(Boxed<pango_sys::PangoMatrix>);
match fn {
copy => |ptr| pango_sys::pango_matrix_copy(mut_override(ptr)),
free => |ptr| pango_sys::pango_matrix_free(ptr),
get_type => || pango_sys::pango_matrix_get_type(),
}
}
impl Matrix {
pub fn concat(&mut self, new_matrix: &Matrix) {
unsafe {
pango_sys::pango_matrix_concat(self.to_glib_none_mut().0, new_matrix.to_glib_none().0);
}
}
pub fn get_font_scale_factor(&self) -> f64 {
unsafe { pango_sys::pango_matrix_get_font_scale_factor(self.to_glib_none().0) }
}
#[cfg(any(feature = "v1_38", feature = "dox"))]
pub fn get_font_scale_factors(&self) -> (f64, f64) {
unsafe {
let mut xscale = mem::MaybeUninit::uninit();
let mut yscale = mem::MaybeUninit::uninit();
pango_sys::pango_matrix_get_font_scale_factors(
self.to_glib_none().0,
xscale.as_mut_ptr(),
yscale.as_mut_ptr(),
);
let xscale = xscale.assume_init();
let yscale = yscale.assume_init();
(xscale, yscale)
}
}
pub fn rotate(&mut self, degrees: f64) {
unsafe {
pango_sys::pango_matrix_rotate(self.to_glib_none_mut().0, degrees);
}
}
pub fn scale(&mut self, scale_x: f64, scale_y: f64) {
unsafe {
pango_sys::pango_matrix_scale(self.to_glib_none_mut().0, scale_x, scale_y);
}
}
pub fn transform_distance(&self, dx: &mut f64, dy: &mut f64) {
unsafe {
pango_sys::pango_matrix_transform_distance(self.to_glib_none().0, dx, dy);
}
}
pub fn transform_point(&self, x: &mut f64, y: &mut f64) {
unsafe {
pango_sys::pango_matrix_transform_point(self.to_glib_none().0, x, y);
}
}
pub fn translate(&mut self, tx: f64, ty: f64) {
unsafe {
pango_sys::pango_matrix_translate(self.to_glib_none_mut().0, tx, ty);
}
}
}