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
// font-kit/src/family.rs
//
// Copyright © 2018 The Pathfinder Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Defines a set of faces that vary in weight, width or slope.

use crate::error::FontLoadingError;
use crate::family_handle::FamilyHandle;
use crate::font::Font;
use crate::handle::Handle;
use crate::loader::Loader;

/// Defines a set of faces that vary in weight, width or slope.
#[derive(Debug)]
pub struct Family<F = Font>
where
    F: Loader,
{
    fonts: Vec<F>,
}

impl<F> Family<F>
where
    F: Loader,
{
    pub(crate) fn from_font_handles<'a, I>(font_handles: I) -> Result<Family<F>, FontLoadingError>
    where
        I: Iterator<Item = &'a Handle>,
    {
        let mut fonts = vec![];
        for font_handle in font_handles {
            fonts.push(F::from_handle(font_handle)?)
        }
        Ok(Family { fonts })
    }

    #[inline]
    pub(crate) fn from_handle(family_handle: &FamilyHandle) -> Result<Family<F>, FontLoadingError> {
        Family::from_font_handles(family_handle.fonts.iter())
    }

    /// Returns the individual fonts in this family.
    #[inline]
    pub fn fonts(&self) -> &[F] {
        &self.fonts
    }

    /// Returns true if and only if this family is empty.
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.fonts.is_empty()
    }
}