mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 18:29:09 +00:00

And use that to compute the ratio Whilte technically a breaking change, i don't think anyone rely on the previous behavior. Fixes #664
92 lines
3.8 KiB
Rust
92 lines
3.8 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
//! Passe that apply the default property from the style.
|
|
//!
|
|
//! Note that the layout default property are handled in the lower_layout pass
|
|
|
|
use crate::diagnostics::BuildDiagnostics;
|
|
use crate::expression_tree::{Expression, NamedReference};
|
|
use crate::langtype::Type;
|
|
use crate::object_tree::Component;
|
|
use std::rc::Rc;
|
|
|
|
/// Ideally we would be able to write this in builtin.slint, but the StyleMetrics is not available there
|
|
pub fn apply_default_properties_from_style(
|
|
root_component: &Rc<Component>,
|
|
style_metrics: &Rc<Component>,
|
|
_diag: &mut BuildDiagnostics,
|
|
) {
|
|
crate::object_tree::recurse_elem_including_sub_components(
|
|
root_component,
|
|
&(),
|
|
&mut |elem, _| {
|
|
let mut elem = elem.borrow_mut();
|
|
match elem.builtin_type().as_ref().map_or("", |b| b.name.as_str()) {
|
|
"TextInput" => {
|
|
elem.set_binding_if_not_set("text-cursor-width".into(), || {
|
|
Expression::PropertyReference(NamedReference::new(
|
|
&style_metrics.root_element,
|
|
"text-cursor-width",
|
|
))
|
|
});
|
|
elem.set_binding_if_not_set("color".into(), || Expression::Cast {
|
|
from: Expression::PropertyReference(NamedReference::new(
|
|
&style_metrics.root_element,
|
|
"default-text-color",
|
|
))
|
|
.into(),
|
|
to: Type::Brush,
|
|
});
|
|
}
|
|
"Text" => {
|
|
elem.set_binding_if_not_set("color".into(), || Expression::Cast {
|
|
from: Expression::PropertyReference(NamedReference::new(
|
|
&style_metrics.root_element,
|
|
"default-text-color",
|
|
))
|
|
.into(),
|
|
to: Type::Brush,
|
|
});
|
|
}
|
|
"Dialog" | "Window" => {
|
|
elem.set_binding_if_not_set("background".into(), || Expression::Cast {
|
|
from: Expression::PropertyReference(NamedReference::new(
|
|
&style_metrics.root_element,
|
|
"window-background",
|
|
))
|
|
.into(),
|
|
to: Type::Brush,
|
|
});
|
|
|
|
let mut bind_style_property_if_exists = |property_name, property_type| {
|
|
if !matches!(
|
|
style_metrics
|
|
.root_element
|
|
.borrow()
|
|
.lookup_property(property_name)
|
|
.property_type,
|
|
Type::Invalid,
|
|
) {
|
|
elem.set_binding_if_not_set(property_name.into(), || {
|
|
Expression::Cast {
|
|
from: Expression::PropertyReference(NamedReference::new(
|
|
&style_metrics.root_element,
|
|
property_name,
|
|
))
|
|
.into(),
|
|
to: property_type,
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
bind_style_property_if_exists("default-font-size", Type::LogicalLength);
|
|
bind_style_property_if_exists("default-font-family", Type::String);
|
|
}
|
|
|
|
_ => {}
|
|
}
|
|
},
|
|
)
|
|
}
|