-
Notifications
You must be signed in to change notification settings - Fork 366
/
tree_actions.rs
42 lines (33 loc) · 1.59 KB
/
tree_actions.rs
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
use re_viewer_context::{ContainerId, Contents, SpaceViewId};
/// Mutation actions to perform on the tree at the end of the frame. These messages are sent by the mutation APIs from
/// [`crate::ViewportBlueprint`].
#[derive(Clone, Debug)]
pub enum TreeAction {
/// Add a new space view to the provided container (or the root if `None`).
AddSpaceView(SpaceViewId, Option<ContainerId>, Option<usize>),
/// Add a new container of the provided kind to the provided container (or the root if `None`).
AddContainer(egui_tiles::ContainerKind, Option<ContainerId>),
/// Change the kind of a container.
SetContainerKind(ContainerId, egui_tiles::ContainerKind),
/// Ensure the tab for the provided space view is focused (see [`egui_tiles::Tree::make_active`]).
FocusTab(SpaceViewId),
/// Remove a container (recursively) or a space view
RemoveContents(Contents),
/// Simplify the container with the provided options
SimplifyContainer(ContainerId, egui_tiles::SimplificationOptions),
/// Make all column and row shares the same for this container
MakeAllChildrenSameSize(ContainerId),
/// Move some contents to a different container
MoveContents {
contents_to_move: Contents,
target_container: ContainerId,
target_position_in_container: usize,
},
/// Move one or more [`Contents`] to a newly created container
MoveContentsToNewContainer {
contents_to_move: Vec<Contents>,
new_container_kind: egui_tiles::ContainerKind,
target_container: ContainerId,
target_position_in_container: usize,
},
}