diagram plugins
This commit is contained in:
parent
1cdb558823
commit
e8a0051ea7
29 changed files with 1781 additions and 267 deletions
|
@ -30,3 +30,16 @@ pub struct TimeLineBlockLabel {
|
|||
pub x: u32,
|
||||
pub y: u32,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
#[serde(crate = "serde")]
|
||||
pub enum DiagramConnectorMessage {
|
||||
ListenForComponentTextChanges {
|
||||
diagram_connector_name: String,
|
||||
component_id: String,
|
||||
},
|
||||
SetComponentText {
|
||||
component_id: String,
|
||||
text: String,
|
||||
},
|
||||
}
|
||||
|
|
Reference in a new issue