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
use crate::{
inspector::{
editors::{
PropertyEditorBuildContext, PropertyEditorDefinition, PropertyEditorInstance,
PropertyEditorMessageContext, PropertyEditorTranslationContext,
},
FieldKind, InspectorError, PropertyChanged,
},
key::{
HotKey, HotKeyEditorBuilder, HotKeyEditorMessage, KeyBinding, KeyBindingEditorBuilder,
KeyBindingEditorMessage,
},
message::{MessageDirection, UiMessage},
widget::WidgetBuilder,
Thickness,
};
use std::any::TypeId;
#[derive(Debug)]
pub struct HotKeyPropertyEditorDefinition;
impl PropertyEditorDefinition for HotKeyPropertyEditorDefinition {
fn value_type_id(&self) -> TypeId {
TypeId::of::<HotKey>()
}
fn create_instance(
&self,
ctx: PropertyEditorBuildContext,
) -> Result<PropertyEditorInstance, InspectorError> {
let value = ctx.property_info.cast_value::<HotKey>()?;
Ok(PropertyEditorInstance::Simple {
editor: HotKeyEditorBuilder::new(
WidgetBuilder::new().with_margin(Thickness::uniform(1.0)),
)
.with_value(value.clone())
.build(ctx.build_context),
})
}
fn create_message(
&self,
ctx: PropertyEditorMessageContext,
) -> Result<Option<UiMessage>, InspectorError> {
let value = ctx.property_info.cast_value::<HotKey>()?;
Ok(Some(HotKeyEditorMessage::value(
ctx.instance,
MessageDirection::ToWidget,
value.clone(),
)))
}
fn translate_message(&self, ctx: PropertyEditorTranslationContext) -> Option<PropertyChanged> {
if ctx.message.direction() == MessageDirection::FromWidget {
if let Some(HotKeyEditorMessage::Value(value)) = ctx.message.data() {
return Some(PropertyChanged {
name: ctx.name.to_string(),
owner_type_id: ctx.owner_type_id,
value: FieldKind::object(value.clone()),
});
}
}
None
}
}
#[derive(Debug)]
pub struct KeyBindingPropertyEditorDefinition;
impl PropertyEditorDefinition for KeyBindingPropertyEditorDefinition {
fn value_type_id(&self) -> TypeId {
TypeId::of::<KeyBinding>()
}
fn create_instance(
&self,
ctx: PropertyEditorBuildContext,
) -> Result<PropertyEditorInstance, InspectorError> {
let value = ctx.property_info.cast_value::<KeyBinding>()?;
Ok(PropertyEditorInstance::Simple {
editor: KeyBindingEditorBuilder::new(
WidgetBuilder::new().with_margin(Thickness::uniform(1.0)),
)
.with_value(value.clone())
.build(ctx.build_context),
})
}
fn create_message(
&self,
ctx: PropertyEditorMessageContext,
) -> Result<Option<UiMessage>, InspectorError> {
let value = ctx.property_info.cast_value::<KeyBinding>()?;
Ok(Some(KeyBindingEditorMessage::value(
ctx.instance,
MessageDirection::ToWidget,
value.clone(),
)))
}
fn translate_message(&self, ctx: PropertyEditorTranslationContext) -> Option<PropertyChanged> {
if ctx.message.direction() == MessageDirection::FromWidget {
if let Some(KeyBindingEditorMessage::Value(value)) = ctx.message.data() {
return Some(PropertyChanged {
name: ctx.name.to_string(),
owner_type_id: ctx.owner_type_id,
value: FieldKind::object(value.clone()),
});
}
}
None
}
}