font-kit 0.1.0

A cross-platform font loading library
Documentation
// 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 error::FontLoadingError;
use family_handle::FamilyHandle;
use font::Font;
use handle::Handle;
use 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(try!(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()
    }
}