slint/internal/compiler/passes/collect_custom_fonts.rs
Simon Hausmann 907b58161c Add support for invoking an init callback on component and element construction
This enables imperative code to be run. To be used sparingly :-)
2022-11-17 10:12:08 +01:00

66 lines
2.4 KiB
Rust

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
//! Passes that fills the root component used_global
use crate::{
expression_tree::{BuiltinFunction, Expression, Unit},
object_tree::*,
};
use std::collections::BTreeSet;
use std::rc::Rc;
/// Fill the root_component's used_globals
pub fn collect_custom_fonts<'a>(
root_component: &Rc<Component>,
all_docs: impl Iterator<Item = &'a crate::object_tree::Document> + 'a,
embed_fonts: bool,
) {
let mut all_fonts = BTreeSet::new();
for doc in all_docs {
all_fonts.extend(doc.custom_fonts.iter().map(|(path, _)| path))
}
let registration_function = if embed_fonts {
Expression::BuiltinFunctionReference(BuiltinFunction::RegisterCustomFontByMemory, None)
} else {
Expression::BuiltinFunctionReference(BuiltinFunction::RegisterCustomFontByPath, None)
};
let prepare_font_registration_argument: Box<dyn Fn(&String) -> Expression> = if embed_fonts {
Box::new(|font_path| {
Expression::NumberLiteral(
{
let mut resources = root_component.embedded_file_resources.borrow_mut();
let resource_id = match resources.get(font_path) {
Some(r) => r.id,
None => {
let id = resources.len();
resources.insert(
font_path.clone(),
crate::embedded_resources::EmbeddedResources {
id,
kind: crate::embedded_resources::EmbeddedResourcesKind::RawData,
},
);
id
}
};
resource_id as _
},
Unit::None,
)
})
} else {
Box::new(|font_path| Expression::StringLiteral(font_path.clone()))
};
root_component.init_code.borrow_mut().extend(all_fonts.into_iter().map(|font_path| {
Expression::FunctionCall {
function: Box::new(registration_function.clone()),
arguments: vec![prepare_font_registration_argument(font_path)],
source_location: None,
}
}));
}