FTXUI  0.8.1
C++ functional terminal UI.
event.hpp
Go to the documentation of this file.
1 #ifndef FTXUI_COMPONENT_EVENT_HPP
2 #define FTXUI_COMPONENT_EVENT_HPP
3 
4 #include <ftxui/component/mouse.hpp> // for Mouse
5 #include <string> // for string, operator==
6 #include <vector>
7 
8 namespace ftxui {
9 
10 class ScreenInteractive;
11 class ComponentBase;
12 
13 /// @brief Represent an event. It can be key press event, a terminal resize, or
14 /// more ...
15 ///
16 /// For example:
17 /// - Printable character can be created using Event::Character('a').
18 /// - Some special are predefined, like Event::ArrowLeft.
19 /// - One can find arbitrary code for special Events using:
20 /// ./example/util/print_key_press
21 /// For instance, CTLR+A maps to Event::Special({1});
22 ///
23 /// Useful documentation about xterm specification:
24 /// https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
25 struct Event {
26  // --- Constructor section ---------------------------------------------------
27  static Event Character(std::string);
28  static Event Character(char);
29  static Event Character(wchar_t);
30  static Event Special(std::string);
31  static Event Mouse(std::string, Mouse mouse);
32  static Event CursorReporting(std::string, int x, int y);
33 
34  // --- Arrow ---
35  static const Event ArrowLeft;
36  static const Event ArrowRight;
37  static const Event ArrowUp;
38  static const Event ArrowDown;
39 
40  // --- Other ---
41  static const Event Backspace;
42  static const Event Delete;
43  static const Event Return;
44  static const Event Escape;
45  static const Event Tab;
46  static const Event TabReverse;
47  static const Event F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12;
48 
49  static const Event Home;
50  static const Event End;
51 
52  static const Event PageUp;
53  static const Event PageDown;
54 
55  // --- Custom ---
56  static Event Custom;
57 
58  //--- Method section ---------------------------------------------------------
59  bool is_character() const { return type_ == Type::Character; }
60  std::string character() const { return input_; }
61 
62  bool is_mouse() const { return type_ == Type::Mouse; }
63  struct Mouse& mouse() {
64  return mouse_;
65  }
66 
67  bool is_cursor_reporting() const { return type_ == Type::CursorReporting; }
68  int cursor_x() const { return cursor_.x; }
69  int cursor_y() const { return cursor_.y; }
70 
71  const std::string& input() const { return input_; }
72 
73  bool operator==(const Event& other) const { return input_ == other.input_; }
74  bool operator!=(const Event& other) const { return !operator==(other); }
75 
76  //--- State section ----------------------------------------------------------
77  private:
78  friend ComponentBase;
79  friend ScreenInteractive;
80  enum class Type {
81  Unknown,
82  Character,
83  Mouse,
84  CursorReporting,
85  };
86  Type type_ = Type::Unknown;
87 
88  struct Cursor {
89  int x;
90  int y;
91  };
92 
93  union {
94  struct Mouse mouse_;
95  struct Cursor cursor_;
96  };
97  std::string input_;
98 
99  ScreenInteractive* screen_ = nullptr;
100 };
101 
102 } // namespace ftxui
103 
104 #endif /* end of include guard: FTXUI_COMPONENT_EVENT_HPP */
105 
106 // Copyright 2020 Arthur Sonzogni. All rights reserved.
107 // Use of this source code is governed by the MIT license that can be found in
108 // 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::Event::F12
static const Event F12
Definition: event.hpp:47
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::ScreenInteractive
Definition: screen_interactive.hpp:21
ftxui::Event::F3
static const Event F3
Definition: event.hpp:47
ftxui::Event::character
std::string character() const
Definition: event.hpp:60
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::is_character
bool is_character() const
Definition: event.hpp:59
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::is_cursor_reporting
bool is_cursor_reporting() const
Definition: event.hpp:67
ftxui::Event::F5
static const Event F5
Definition: event.hpp:47
ftxui::Event::is_mouse
bool is_mouse() const
Definition: event.hpp:62
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::ComponentBase
It implement rendering itself as ftxui::Element. It implement keyboard navigation by responding to ft...
Definition: component_base.hpp:23
ftxui::Event::cursor_y
int cursor_y() const
Definition: event.hpp:69
ftxui::Event::operator!=
bool operator!=(const Event &other) const
Definition: event.hpp:74
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::cursor_x
int cursor_x() const
Definition: event.hpp:68
ftxui::Event::operator==
bool operator==(const Event &other) const
Definition: event.hpp:73
ftxui::Event::Special
static Event Special(std::string)
Definition: event.cpp:37
ftxui::Event::PageUp
static const Event PageUp
Definition: event.hpp:52