ttx 0.1.0
Loading...
Searching...
No Matches
action.h
Go to the documentation of this file.
1#pragma once
2
3#include "layout_state.h"
4#include "render.h"
5#include "ttx/key_event.h"
6
7namespace ttx {
10 di::Synchronized<LayoutState>& layout_state;
12 di::Vector<di::TransparentStringView> const& command;
13 di::Atomic<bool>& done;
14};
15
16struct Action {
17 di::String description;
18 di::Function<void(ActionContext const&) const&> apply;
19
20 auto to_string() const -> di::String { return di::clone(description); }
21};
22}
Definition key_event.h:24
Definition render.h:31
Definition cursor_style.h:5
Definition action.h:8
RenderThread & render_thread
Definition action.h:11
di::Vector< di::TransparentStringView > const & command
Definition action.h:12
di::Synchronized< LayoutState > & layout_state
Definition action.h:10
di::Atomic< bool > & done
Definition action.h:13
KeyEvent const & key_event
Definition action.h:9
Definition action.h:16
di::String description
Definition action.h:17
di::Function< void(ActionContext const &) const & > apply
Definition action.h:18
auto to_string() const -> di::String
Definition action.h:20