31 static auto create_from_replay(di::PathView replay_path, di::Optional<di::Path> save_state_path,
32 dius::tty::WindowSize size, di::Function<
void(
Pane&)> did_exit,
33 di::Function<
void(
Pane&)> did_update,
34 di::Function<
void(di::Span<byte const>)> did_selection,
35 di::Function<
void(di::StringView)> apc_passthrough) -> di::Result<di::Box<Pane>>;
37 di::Function<
void(
Pane&)> did_update, di::Function<
void(di::Span<byte const>)> did_selection,
38 di::Function<
void(di::StringView)> apc_passthrough) -> di::Result<di::Box<Pane>>;
43 explicit Pane(dius::SyncFile pty_controller, dius::system::ProcessHandle process,
44 di::Function<
void(
Pane&)> did_exit, di::Function<
void(
Pane&)> did_update,
45 di::Function<
void(di::Span<byte const>)> did_selection,
46 di::Function<
void(di::StringView)> apc_passthrough)
47 : m_pty_controller(di::move(pty_controller))
48 , m_terminal(m_pty_controller)
50 , m_did_exit(di::move(did_exit))
51 , m_did_update(di::move(did_update))
52 , m_did_selection(di::move(did_selection))
53 , m_apc_passthrough(di::move(apc_passthrough)) {}
64 void resize(dius::tty::WindowSize
const& size);
66 auto save_state(di::PathView path) -> di::Result<>;
71 auto selection_text() -> di::String;
73 void clear_selection();
76 di::Atomic<bool> m_done {
false };
77 di::Atomic<bool> m_capture {
true };
78 di::Optional<MousePosition> m_last_mouse_position;
79 dius::SyncFile m_pty_controller;
80 di::Synchronized<Terminal> m_terminal;
81 dius::system::ProcessHandle m_process;
83 u32 m_vertical_scroll_offset { 0 };
84 u32 m_horizontal_scroll_offset { 0 };
86 di::Optional<MouseCoordinate> m_selection_start;
87 di::Optional<MouseCoordinate> m_selection_end;
90 di::Function<void(
Pane&)> m_did_exit;
93 di::Function<void(
Pane&)> m_did_update;
96 di::Function<void(di::Span<byte const>)> m_did_selection;
99 di::Function<void(di::StringView)> m_apc_passthrough;
102 dius::Thread m_process_thread;
103 dius::Thread m_reader_thread;
static auto create_from_replay(di::PathView replay_path, di::Optional< di::Path > save_state_path, dius::tty::WindowSize size, di::Function< void(Pane &)> did_exit, di::Function< void(Pane &)> did_update, di::Function< void(di::Span< byte const >)> did_selection, di::Function< void(di::StringView)> apc_passthrough) -> di::Result< di::Box< Pane > >
Definition pane.cpp:47
static auto create(CreatePaneArgs args, dius::tty::WindowSize size, di::Function< void(Pane &)> did_exit, di::Function< void(Pane &)> did_update, di::Function< void(di::Span< byte const >)> did_selection, di::Function< void(di::StringView)> apc_passthrough) -> di::Result< di::Box< Pane > >
Definition pane.cpp:118
Pane(dius::SyncFile pty_controller, dius::system::ProcessHandle process, di::Function< void(Pane &)> did_exit, di::Function< void(Pane &)> did_update, di::Function< void(di::Span< byte const >)> did_selection, di::Function< void(di::StringView)> apc_passthrough)
Definition pane.h:43