ttx 0.1.0
Loading...
Searching...
No Matches
input.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/reflect/prelude.h"
4#include "input_mode.h"
5#include "key_bind.h"
6#include "layout_state.h"
7#include "ttx/focus_event.h"
8#include "ttx/key_event.h"
9#include "ttx/paste_event.h"
10
11namespace ttx {
12class RenderThread;
13
15public:
16 static auto create(di::Vector<di::TransparentStringView> command, di::Vector<KeyBind> key_binds,
17 di::Synchronized<LayoutState>& layout_state, RenderThread& render_thread)
18 -> di::Result<di::Box<InputThread>>;
19
20 explicit InputThread(di::Vector<di::TransparentStringView> command, di::Vector<KeyBind> key_binds,
21 di::Synchronized<LayoutState>& layout_state, RenderThread& render_thread);
23
24 void request_exit();
25
26private:
27 void input_thread();
28
29 void set_input_mode(InputMode mode);
30
31 void handle_event(KeyEvent const& event);
32 void handle_event(MouseEvent const& event);
33 void handle_event(FocusEvent const& event);
34 void handle_event(PasteEvent const& event);
35
37 di::Vector<KeyBind> m_key_binds;
38 di::Vector<di::TransparentStringView> m_command;
39 di::Atomic<bool> m_done { false };
40 di::Synchronized<LayoutState>& m_layout_state;
41 RenderThread& m_render_thread;
42 dius::Thread m_thread;
43};
44}
Definition focus_event.h:7
void request_exit()
Definition input.cpp:40
~InputThread()
Definition input.cpp:35
InputThread(di::Vector< di::TransparentStringView > command, di::Vector< KeyBind > key_binds, di::Synchronized< LayoutState > &layout_state, RenderThread &render_thread)
Definition input.cpp:28
static auto create(di::Vector< di::TransparentStringView > command, di::Vector< KeyBind > key_binds, di::Synchronized< LayoutState > &layout_state, RenderThread &render_thread) -> di::Result< di::Box< InputThread > >
Definition input.cpp:18
Definition key_event.h:24
Definition mouse_event.h:23
Definition paste_event.h:8
Definition render.h:31
Definition cursor_style.h:5
InputMode
Definition input_mode.h:6
@ Insert
Definition input_mode.h:7