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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
use std::{collections::HashSet, fmt::Debug};
use dces::prelude::{Component, Entity, StringComponentStore};
pub use self::layout::*;
pub use self::widget::*;
use crate::{css_engine, prelude::*, render, utils};
mod layout;
mod widget;
pub fn get_property<T>(key: &str, entity: Entity, store: &StringComponentStore) -> T
where
T: Clone + Component,
{
store.get::<T>(key, entity).map(|r| r.clone()).unwrap()
}
pub fn get_property_or_value<T>(
key: &str,
entity: Entity,
store: &StringComponentStore,
value: T,
) -> T
where
T: Clone + Component,
{
if let Ok(property) = store.get::<T>(key, entity).map(|r| r.clone()) {
return property;
}
value
}
#[derive(PartialEq, Debug)]
pub enum PropertySource<P: Component + Debug> {
Source(Entity),
KeySource(String, Entity),
Value(P),
}
impl<P: Component + Debug> From<Entity> for PropertySource<P> {
fn from(entity: Entity) -> Self {
PropertySource::Source(entity)
}
}
pub trait IntoPropertySource<P: Component + Debug> {
fn into_source(self) -> PropertySource<P>;
}
pub struct AttachedProperty<P>
where
P: Component + Debug,
{
pub key: String,
pub property_source: PropertySource<P>,
}
impl<P> AttachedProperty<P>
where
P: Component + Debug,
{
pub fn new(key: impl Into<String>, property_source: impl IntoPropertySource<P>) -> Self {
AttachedProperty {
key: key.into(),
property_source: property_source.into_source(),
}
}
}
into_property_source!(bool);
into_property_source!(String: &str);
into_property_source!(usize);
into_property_source!(u32);
into_property_source!(f32);
into_property_source!(f64: i32, f32);
into_property_source!(i32);
into_property_source!(i64);
into_property_source!(utils::Alignment: &str);
into_property_source!(utils::Brush: &str, utils::Color);
into_property_source!(utils::Orientation: &str);
into_property_source!(utils::Point: f64, i32, (i32, i32), (f64, f64));
into_property_source!(utils::Rectangle: (i32, i32, i32, i32), (f64, f64, f64, f64));
into_property_source!(
utils::Thickness: i32,
f64,
(i32, i32),
(f64, f64),
(i32, i32, i32, i32),
(f64, f64, f64, f64)
);
into_property_source!(utils::String16: &str, String);
into_property_source!(utils::SelectionMode: &str);
into_property_source!(utils::Visibility: &str);
into_property_source!(css_engine::Selector: &str, String);
into_property_source!(css_engine::Theme);
into_property_source!(render::Image: &str);
into_property_source!(Columns);
into_property_source!(Constraint);
into_property_source!(RenderPipeline);
into_property_source!(Rows);
into_property_source!(ScrollViewerMode: (&str, &str));
into_property_source!(SelectedEntities: HashSet<Entity>);
into_property_source!(SelectedIndices: HashSet<usize>);
into_property_source!(TextSelection: (usize, usize));