From b79a868fbc85cd7fb2829e978174629ab8a9c986 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 23 Feb 2026 23:52:55 +0200 Subject: tui: add top-level model and run entrypoint --- internal/tui/messages/messages.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 internal/tui/messages/messages.go (limited to 'internal/tui/messages') diff --git a/internal/tui/messages/messages.go b/internal/tui/messages/messages.go new file mode 100644 index 0000000..35232b9 --- /dev/null +++ b/internal/tui/messages/messages.go @@ -0,0 +1,24 @@ +package messages + +import "ior/internal/statsengine" + +// PidSelectedMsg is emitted when the user selects a PID from the process table. +type PidSelectedMsg struct { + Pid int +} + +// StatsTickMsg carries a fresh immutable snapshot from the stats engine. +type StatsTickMsg struct { + Snap *statsengine.Snapshot +} + +// ExportRequestMsg requests an export of the current UI state. +type ExportRequestMsg struct{} + +// TracingStartedMsg signals that tracing started successfully. +type TracingStartedMsg struct{} + +// TracingErrorMsg reports an error while starting or running tracing. +type TracingErrorMsg struct { + Err error +} -- cgit v1.2.3