2022-11-08 08:43:27 -07:00
|
|
|
// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
|
|
|
|
|
|
use alloc::{
|
|
|
|
|
string::{String, ToString},
|
|
|
|
|
sync::Arc,
|
|
|
|
|
vec::Vec,
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-12 10:23:54 +01:00
|
|
|
use crate::{Attrs, Font};
|
2022-11-08 08:43:27 -07:00
|
|
|
|
|
|
|
|
/// Access system fonts
|
2023-01-04 20:03:03 -07:00
|
|
|
pub struct FontSystem {
|
2022-11-08 08:43:27 -07:00
|
|
|
locale: String,
|
|
|
|
|
db: fontdb::Database,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl FontSystem {
|
|
|
|
|
pub fn new() -> Self {
|
|
|
|
|
let locale = "en-US".to_string();
|
|
|
|
|
|
|
|
|
|
let mut db = fontdb::Database::new();
|
|
|
|
|
{
|
|
|
|
|
db.set_monospace_family("Fira Mono");
|
|
|
|
|
db.set_sans_serif_family("Fira Sans");
|
|
|
|
|
db.set_serif_family("DejaVu Serif");
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-04 20:03:03 -07:00
|
|
|
Self { locale, db }
|
2022-11-08 08:43:27 -07:00
|
|
|
}
|
|
|
|
|
|
2022-11-21 12:36:18 +01:00
|
|
|
pub fn new_with_locale_and_db(locale: &str, db: fontdb::Database) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
locale: locale.to_string(),
|
2023-01-04 20:03:03 -07:00
|
|
|
db,
|
2022-11-21 12:36:18 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-08 08:43:27 -07:00
|
|
|
pub fn locale(&self) -> &str {
|
|
|
|
|
&self.locale
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn db(&self) -> &fontdb::Database {
|
|
|
|
|
&self.db
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-12 10:30:39 +01:00
|
|
|
pub fn db_mut(&mut self) -> &mut fontdb::Database {
|
|
|
|
|
&mut self.db
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-12 10:23:54 +01:00
|
|
|
pub fn get_font(&self, id: fontdb::ID) -> Option<Arc<Font>> {
|
2023-03-12 10:30:20 +01:00
|
|
|
get_font(&self.db, id)
|
2022-11-08 08:43:27 -07:00
|
|
|
}
|
|
|
|
|
|
2023-03-12 10:30:20 +01:00
|
|
|
pub fn get_font_matches(&mut self, attrs: Attrs) -> Arc<Vec<Arc<Font>>> {
|
2023-03-02 18:16:57 -07:00
|
|
|
let mut fonts = Vec::new();
|
2022-11-08 08:43:27 -07:00
|
|
|
for face in self.db.faces() {
|
|
|
|
|
if !attrs.matches(face) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-12 10:30:20 +01:00
|
|
|
if let Some(font) = get_font(&self.db, face.id) {
|
2023-03-02 18:16:57 -07:00
|
|
|
fonts.push(font);
|
2022-11-08 08:43:27 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-12 10:23:54 +01:00
|
|
|
Arc::new(fonts)
|
2022-11-08 08:43:27 -07:00
|
|
|
}
|
|
|
|
|
}
|
2023-03-12 10:30:20 +01:00
|
|
|
|
|
|
|
|
fn get_font(db: &fontdb::Database, id: fontdb::ID) -> Option<Arc<Font>> {
|
|
|
|
|
let face = db.face(id)?;
|
|
|
|
|
match Font::new(face) {
|
|
|
|
|
Some(font) => Some(Arc::new(font)),
|
|
|
|
|
None => {
|
|
|
|
|
log::warn!("failed to load font '{}'", face.post_script_name);
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|