tirbofish/dropbear
main / crates / eucalyptus-editor / src / editor / ui / inspector.rs · 554 bytes
crates/eucalyptus-editor/src/editor/ui/inspector.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 UIInspector {}
impl EditorTabDock for UIInspector {
fn desc() -> EditorTabDockDescriptor {
EditorTabDockDescriptor {
id: "Widget Inspector",
title: "Widget Inspector".to_string(),
visibility: EditorTabVisibility::UIEditor,
}
}
fn display(_viewer: &mut EditorTabViewer<'_>, ui: &mut Ui) {
ui.label("Not implemented yet.");
}
}