tirbofish/dropbear
main / crates / eucalyptus-editor / src / editor / ui / widget_tree.rs · 546 bytes
crates/eucalyptus-editor/src/editor/ui/widget_tree.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use crate::editor::page::EditorTabVisibility;
use crate::editor::{EditorTabDock, EditorTabDockDescriptor, EditorTabViewer};
use egui::Ui;
pub struct UIWidgetTree {}
impl EditorTabDock for UIWidgetTree {
fn desc() -> EditorTabDockDescriptor {
EditorTabDockDescriptor {
id: "Widget Tree",
title: "Widget Tree".to_string(),
visibility: EditorTabVisibility::UIEditor,
}
}
fn display(_viewer: &mut EditorTabViewer<'_>, ui: &mut Ui) {
ui.label("Not implemented yet.");
}
}