aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/components.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/components.rs')
-rw-r--r--src/widgets/components.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/widgets/components.rs b/src/widgets/components.rs
new file mode 100644
index 0000000..b6ff925
--- /dev/null
+++ b/src/widgets/components.rs
@@ -0,0 +1,14 @@
+use bevy::prelude::*;
+
+use super::TerminalWidget;
+
+/// Component representing a terminal widget.
+#[derive(Component)]
+pub struct Widget {
+ /// The widget instance itself, containing rendering and input logic
+ pub widget: Box<dyn TerminalWidget + Send + Sync>,
+ /// Depth to render widget at
+ pub depth: u32,
+ /// Whether this widget is currently enabled or should be hidden
+ pub enabled: bool,
+}