FTXUI  0.8.1
C++ functional terminal UI.
event.cpp
Go to the documentation of this file.
1 #include <utility> // for move
2 
4 #include "ftxui/component/mouse.hpp" // for Mouse
5 #include "ftxui/screen/string.hpp" // for to_wstring
6 
7 namespace ftxui {
8 
9 // static
10 Event Event::Character(std::string input) {
11  Event event;
12  event.input_ = std::move(input);
13  event.type_ = Type::Character;
14  return event;
15 }
16 
17 // static
19  return Event::Character(std::string{c});
20 }
21 
22 // static
23 Event Event::Character(wchar_t c) {
24  return Event::Character(to_string(std::wstring{c}));
25 }
26 
27 // static
28 Event Event::Mouse(std::string input, struct Mouse mouse) {
29  Event event;
30  event.input_ = std::move(input);
31  event.type_ = Type::Mouse;
32  event.mouse_ = mouse;
33  return event;
34 }
35 
36 // static
37 Event Event::Special(std::string input) {
38  Event event;
39  event.input_ = std::move(input);
40  return event;
41 }
42 
43 // static
44 Event Event::CursorReporting(std::string input, int x, int y) {
45  Event event;
46  event.input_ = std::move(input);
47  event.type_ = Type::CursorReporting;
48  event.cursor_.x = x;
49  event.cursor_.y = y;
50  return event;
51 }
52 
53 // --- Arrow ---
54 const Event Event::ArrowLeft = Event::Special("\x1B[D");
55 const Event Event::ArrowRight = Event::Special("\x1B[C");
56 const Event Event::ArrowUp = Event::Special("\x1B[A");
57 const Event Event::ArrowDown = Event::Special("\x1B[B");
59 const Event Event::Delete = Event::Special("\x1B[3~");
60 const Event Event::Escape = Event::Special("\x1B");
61 #if defined(_WIN32)
62 const Event Event::Return = Event::Special({13});
63 #else
64 const Event Event::Return = Event::Special({10});
65 #endif
66 const Event Event::Tab = Event::Special({9});
67 const Event Event::TabReverse = Event::Special({27, 91, 90});
68 const Event Event::F1 = Event::Special("\x1B[OP");
69 const Event Event::F2 = Event::Special("\x1B[OQ");
70 const Event Event::F3 = Event::Special("\x1B[OR");
71 const Event Event::F4 = Event::Special("\x1B[OS");
72 const Event Event::F5 = Event::Special("\x1B[15~");
73 const Event Event::F6 = Event::Special("\x1B[17~");
74 const Event Event::F7 = Event::Special("\x1B[18~");
75 const Event Event::F8 = Event::Special("\x1B[19~");
76 const Event Event::F9 = Event::Special("\x1B[20~");
77 const Event Event::F10 = Event::Special("\x1B[21~");
78 const Event Event::F11 = Event::Special("\x1B[21~"); // Doesn't exist
79 const Event Event::F12 = Event::Special("\x1B[24~");
80 const Event Event::Home = Event::Special({27, 91, 72});
81 const Event Event::End = Event::Special({27, 91, 70});
82 const Event Event::PageUp = Event::Special({27, 91, 53, 126});
83 const Event Event::PageDown = Event::Special({27, 91, 54, 126});
84 
85 Event Event::Custom = Event::Special({0});
86 
87 } // namespace ftxui
88 
89 // Copyright 2020 Arthur Sonzogni. All rights reserved.
90 // Use of this source code is governed by the MIT license that can be found in
91 // the LICENSE file.
ftxui::Event::PageDown
static const Event PageDown
Definition: event.hpp:53
ftxui::Event::F4
static const Event F4
Definition: event.hpp:47
ftxui::Event::Backspace
static const Event Backspace
Definition: event.hpp:41
ftxui::Event::Custom
static Event Custom
Definition: event.hpp:56
ftxui::Event::F8
static const Event F8
Definition: event.hpp:47
ftxui
Definition: captured_mouse.hpp:6
ftxui::Event::F1
static const Event F1
Definition: event.hpp:47
ftxui::to_string
std::string to_string(const std::wstring &s)
Convert a UTF8 std::string into a std::wstring.
Definition: string.cpp:297
ftxui::Event::F12
static const Event F12
Definition: event.hpp:47
event.hpp
ftxui::Event::ArrowLeft
static const Event ArrowLeft
Definition: event.hpp:35
ftxui::Event::Character
static Event Character(std::string)
Definition: event.cpp:10
ftxui::Event::F2
static const Event F2
Definition: event.hpp:47
ftxui::Event::F3
static const Event F3
Definition: event.hpp:47
string.hpp
ftxui::Event::CursorReporting
static Event CursorReporting(std::string, int x, int y)
Definition: event.cpp:44
ftxui::Event::Return
static const Event Return
Definition: event.hpp:43
ftxui::Event::F11
static const Event F11
Definition: event.hpp:47
ftxui::Event::F9
static const Event F9
Definition: event.hpp:47
ftxui::Event::Delete
static const Event Delete
Definition: event.hpp:42
ftxui::Event::input
const std::string & input() const
Definition: event.hpp:71
ftxui::Event::Escape
static const Event Escape
Definition: event.hpp:44
ftxui::Event::F7
static const Event F7
Definition: event.hpp:47
ftxui::Event::F10
static const Event F10
Definition: event.hpp:47
ftxui::Mouse
A mouse event. It contains the coordinate of the mouse, the button pressed and the modifier (shift,...
Definition: mouse.hpp:8
ftxui::Event::TabReverse
static const Event TabReverse
Definition: event.hpp:46
ftxui::Event::F6
static const Event F6
Definition: event.hpp:47
ftxui::Event::Home
static const Event Home
Definition: event.hpp:49
ftxui::Event::End
static const Event End
Definition: event.hpp:50
ftxui::Event::mouse
struct Mouse & mouse()
Definition: event.hpp:63
ftxui::Event::F5
static const Event F5
Definition: event.hpp:47
mouse.hpp
ftxui::Event::Tab
static const Event Tab
Definition: event.hpp:45
ftxui::Event::Mouse
static Event Mouse(std::string, Mouse mouse)
Definition: event.cpp:28
ftxui::Event::ArrowDown
static const Event ArrowDown
Definition: event.hpp:38
ftxui::Event::ArrowUp
static const Event ArrowUp
Definition: event.hpp:37
ftxui::Event
Represent an event. It can be key press event, a terminal resize, or more ...
Definition: event.hpp:25
ftxui::Event::ArrowRight
static const Event ArrowRight
Definition: event.hpp:36
ftxui::Event::Special
static Event Special(std::string)
Definition: event.cpp:37
ftxui::Event::PageUp
static const Event PageUp
Definition: event.hpp:52