pango/auto/
font.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5#[cfg(feature = "v1_50")]
6#[cfg_attr(docsrs, doc(cfg(feature = "v1_50")))]
7use crate::Context;
8#[cfg(feature = "v1_46")]
9#[cfg_attr(docsrs, doc(cfg(feature = "v1_46")))]
10use crate::FontFace;
11use crate::{ffi, Coverage, FontDescription, FontMap, FontMetrics, Glyph, Language, Rectangle};
12use glib::{prelude::*, translate::*};
13
14glib::wrapper! {
15    /// A [`Font`][crate::Font] is used to represent a font in a
16    /// rendering-system-independent manner.
17    ///
18    /// This is an Abstract Base Class, you cannot instantiate it.
19    ///
20    /// # Implements
21    ///
22    /// [`FontExt`][trait@crate::prelude::FontExt]
23    #[doc(alias = "PangoFont")]
24    pub struct Font(Object<ffi::PangoFont, ffi::PangoFontClass>);
25
26    match fn {
27        type_ => || ffi::pango_font_get_type(),
28    }
29}
30
31impl Font {
32    pub const NONE: Option<&'static Font> = None;
33
34    /// Loads data previously created via [`FontExt::serialize()`][crate::prelude::FontExt::serialize()].
35    ///
36    /// For a discussion of the supported format, see that function.
37    ///
38    /// Note: to verify that the returned font is identical to
39    /// the one that was serialized, you can compare @bytes to the
40    /// result of serializing the font again.
41    /// ## `context`
42    /// a [`Context`][crate::Context]
43    /// ## `bytes`
44    /// the bytes containing the data
45    ///
46    /// # Returns
47    ///
48    /// a new [`Font`][crate::Font]
49    #[cfg(feature = "v1_50")]
50    #[cfg_attr(docsrs, doc(cfg(feature = "v1_50")))]
51    #[doc(alias = "pango_font_deserialize")]
52    pub fn deserialize(
53        context: &Context,
54        bytes: &glib::Bytes,
55    ) -> Result<Option<Font>, glib::Error> {
56        unsafe {
57            let mut error = std::ptr::null_mut();
58            let ret = ffi::pango_font_deserialize(
59                context.to_glib_none().0,
60                bytes.to_glib_none().0,
61                &mut error,
62            );
63            if error.is_null() {
64                Ok(from_glib_full(ret))
65            } else {
66                Err(from_glib_full(error))
67            }
68        }
69    }
70}
71
72/// Trait containing all [`struct@Font`] methods.
73///
74/// # Implementors
75///
76/// [`Font`][struct@crate::Font]
77pub trait FontExt: IsA<Font> + 'static {
78    /// Returns a description of the font, with font size set in points.
79    ///
80    /// Use [`describe_with_absolute_size()`][Self::describe_with_absolute_size()] if you want
81    /// the font size in device units.
82    ///
83    /// # Returns
84    ///
85    /// a newly-allocated [`FontDescription`][crate::FontDescription] object.
86    #[doc(alias = "pango_font_describe")]
87    fn describe(&self) -> FontDescription {
88        unsafe { from_glib_full(ffi::pango_font_describe(self.as_ref().to_glib_none().0)) }
89    }
90
91    /// Returns a description of the font, with absolute font size set
92    /// in device units.
93    ///
94    /// Use [`describe()`][Self::describe()] if you want the font size in points.
95    ///
96    /// # Returns
97    ///
98    /// a newly-allocated [`FontDescription`][crate::FontDescription] object.
99    #[doc(alias = "pango_font_describe_with_absolute_size")]
100    fn describe_with_absolute_size(&self) -> FontDescription {
101        unsafe {
102            from_glib_full(ffi::pango_font_describe_with_absolute_size(
103                self.as_ref().to_glib_none().0,
104            ))
105        }
106    }
107
108    /// Computes the coverage map for a given font and language tag.
109    /// ## `language`
110    /// the language tag
111    ///
112    /// # Returns
113    ///
114    /// a newly-allocated [`Coverage`][crate::Coverage]
115    ///   object.
116    #[doc(alias = "pango_font_get_coverage")]
117    #[doc(alias = "get_coverage")]
118    fn coverage(&self, language: &Language) -> Coverage {
119        unsafe {
120            from_glib_full(ffi::pango_font_get_coverage(
121                self.as_ref().to_glib_none().0,
122                mut_override(language.to_glib_none().0),
123            ))
124        }
125    }
126
127    /// Gets the [`FontFace`][crate::FontFace] to which @self belongs.
128    ///
129    /// # Returns
130    ///
131    /// the [`FontFace`][crate::FontFace]
132    #[cfg(feature = "v1_46")]
133    #[cfg_attr(docsrs, doc(cfg(feature = "v1_46")))]
134    #[doc(alias = "pango_font_get_face")]
135    #[doc(alias = "get_face")]
136    fn face(&self) -> FontFace {
137        unsafe { from_glib_none(ffi::pango_font_get_face(self.as_ref().to_glib_none().0)) }
138    }
139
140    //#[cfg(feature = "v1_44")]
141    //#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
142    //#[doc(alias = "pango_font_get_features")]
143    //#[doc(alias = "get_features")]
144    //fn features(&self, features: /*Unimplemented*/&mut Basic: Pointer, len: u32, num_features: &mut u32) {
145    //    unsafe { TODO: call ffi:pango_font_get_features() }
146    //}
147
148    /// Gets the font map for which the font was created.
149    ///
150    /// Note that the font maintains a *weak* reference to
151    /// the font map, so if all references to font map are
152    /// dropped, the font map will be finalized even if there
153    /// are fonts created with the font map that are still alive.
154    /// In that case this function will return [`None`].
155    ///
156    /// It is the responsibility of the user to ensure that the
157    /// font map is kept alive. In most uses this is not an issue
158    /// as a [`Context`][crate::Context] holds a reference to the font map.
159    ///
160    /// # Returns
161    ///
162    /// the [`FontMap`][crate::FontMap]
163    ///   for the font
164    #[doc(alias = "pango_font_get_font_map")]
165    #[doc(alias = "get_font_map")]
166    fn font_map(&self) -> Option<FontMap> {
167        unsafe { from_glib_none(ffi::pango_font_get_font_map(self.as_ref().to_glib_none().0)) }
168    }
169
170    /// Gets the logical and ink extents of a glyph within a font.
171    ///
172    /// The coordinate system for each rectangle has its origin at the
173    /// base line and horizontal origin of the character with increasing
174    /// coordinates extending to the right and down. The macros PANGO_ASCENT(),
175    /// PANGO_DESCENT(), PANGO_LBEARING(), and PANGO_RBEARING() can be used to convert
176    /// from the extents rectangle to more traditional font metrics. The units
177    /// of the rectangles are in 1/PANGO_SCALE of a device unit.
178    ///
179    /// If @self is [`None`], this function gracefully sets some sane values in the
180    /// output variables and returns.
181    /// ## `glyph`
182    /// the glyph index
183    ///
184    /// # Returns
185    ///
186    ///
187    /// ## `ink_rect`
188    /// rectangle used to store the extents of the glyph as drawn
189    ///
190    /// ## `logical_rect`
191    /// rectangle used to store the logical extents of the glyph
192    #[doc(alias = "pango_font_get_glyph_extents")]
193    #[doc(alias = "get_glyph_extents")]
194    fn glyph_extents(&self, glyph: Glyph) -> (Rectangle, Rectangle) {
195        unsafe {
196            let mut ink_rect = Rectangle::uninitialized();
197            let mut logical_rect = Rectangle::uninitialized();
198            ffi::pango_font_get_glyph_extents(
199                self.as_ref().to_glib_none().0,
200                glyph,
201                ink_rect.to_glib_none_mut().0,
202                logical_rect.to_glib_none_mut().0,
203            );
204            (ink_rect, logical_rect)
205        }
206    }
207
208    //#[cfg(feature = "v1_44")]
209    //#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
210    //#[doc(alias = "pango_font_get_hb_font")]
211    //#[doc(alias = "get_hb_font")]
212    //fn hb_font(&self) -> /*Ignored*/Option<harf_buzz::font_t> {
213    //    unsafe { TODO: call ffi:pango_font_get_hb_font() }
214    //}
215
216    /// Returns the languages that are supported by @self.
217    ///
218    /// If the font backend does not provide this information,
219    /// [`None`] is returned. For the fontconfig backend, this
220    /// corresponds to the FC_LANG member of the FcPattern.
221    ///
222    /// The returned array is only valid as long as the font
223    /// and its fontmap are valid.
224    ///
225    /// # Returns
226    ///
227    /// an array of [`Language`][crate::Language]
228    #[cfg(feature = "v1_50")]
229    #[cfg_attr(docsrs, doc(cfg(feature = "v1_50")))]
230    #[doc(alias = "pango_font_get_languages")]
231    #[doc(alias = "get_languages")]
232    fn languages(&self) -> Vec<Language> {
233        unsafe {
234            FromGlibPtrContainer::from_glib_none(ffi::pango_font_get_languages(
235                self.as_ref().to_glib_none().0,
236            ))
237        }
238    }
239
240    /// Gets overall metric information for a font.
241    ///
242    /// Since the metrics may be substantially different for different scripts,
243    /// a language tag can be provided to indicate that the metrics should be
244    /// retrieved that correspond to the script(s) used by that language.
245    ///
246    /// If @self is [`None`], this function gracefully sets some sane values in the
247    /// output variables and returns.
248    /// ## `language`
249    /// language tag used to determine which script
250    ///   to get the metrics for, or [`None`] to indicate to get the metrics for
251    ///   the entire font.
252    ///
253    /// # Returns
254    ///
255    /// a [`FontMetrics`][crate::FontMetrics] object. The caller must call
256    ///   `Pango::FontMetrics::unref()` when finished using the object.
257    #[doc(alias = "pango_font_get_metrics")]
258    #[doc(alias = "get_metrics")]
259    fn metrics(&self, language: Option<&Language>) -> FontMetrics {
260        unsafe {
261            from_glib_full(ffi::pango_font_get_metrics(
262                self.as_ref().to_glib_none().0,
263                mut_override(language.to_glib_none().0),
264            ))
265        }
266    }
267
268    /// Returns whether the font provides a glyph for this character.
269    /// ## `wc`
270    /// a Unicode character
271    ///
272    /// # Returns
273    ///
274    /// `TRUE` if @self can render @wc
275    #[cfg(feature = "v1_44")]
276    #[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
277    #[doc(alias = "pango_font_has_char")]
278    fn has_char(&self, wc: char) -> bool {
279        unsafe {
280            from_glib(ffi::pango_font_has_char(
281                self.as_ref().to_glib_none().0,
282                wc.into_glib(),
283            ))
284        }
285    }
286
287    /// Serializes the @self in a way that can be uniquely identified.
288    ///
289    /// There are no guarantees about the format of the output across different
290    /// versions of Pango.
291    ///
292    /// The intended use of this function is testing, benchmarking and debugging.
293    /// The format is not meant as a permanent storage format.
294    ///
295    /// To recreate a font from its serialized form, use [`Font::deserialize()`][crate::Font::deserialize()].
296    ///
297    /// # Returns
298    ///
299    /// a `GBytes` containing the serialized form of @self
300    #[cfg(feature = "v1_50")]
301    #[cfg_attr(docsrs, doc(cfg(feature = "v1_50")))]
302    #[doc(alias = "pango_font_serialize")]
303    fn serialize(&self) -> glib::Bytes {
304        unsafe { from_glib_full(ffi::pango_font_serialize(self.as_ref().to_glib_none().0)) }
305    }
306}
307
308impl<O: IsA<Font>> FontExt for O {}