2019-01-07 00:10:35 +08:00
|
|
|
#ifndef FTXUI_COMPONENT_EVENT_HPP
|
|
|
|
#define FTXUI_COMPONENT_EVENT_HPP
|
2018-10-19 04:58:38 +08:00
|
|
|
|
|
|
|
#include <array>
|
2019-06-23 23:47:33 +08:00
|
|
|
#include <vector>
|
|
|
|
#include <functional>
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
// Documentation:
|
|
|
|
// https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
|
|
|
|
//
|
|
|
|
struct Event {
|
2018-10-19 04:58:38 +08:00
|
|
|
public:
|
2019-06-23 23:47:33 +08:00
|
|
|
// --- Constructor section ---------------------------------------------------
|
|
|
|
static Event Character(char);
|
|
|
|
static Event Character(wchar_t);
|
|
|
|
|
|
|
|
static Event Character(const std::string&);
|
|
|
|
static Event Special(const std::string&);
|
|
|
|
|
|
|
|
static Event GetEvent(std::function<char()> getchar);
|
2018-10-19 04:58:38 +08:00
|
|
|
|
|
|
|
// --- Arrow ---
|
|
|
|
static Event ArrowLeft;
|
|
|
|
static Event ArrowRight;
|
|
|
|
static Event ArrowUp;
|
|
|
|
static Event ArrowDown;
|
2019-06-23 23:47:33 +08:00
|
|
|
|
2018-10-19 04:58:38 +08:00
|
|
|
// --- Other ---
|
|
|
|
static Event Backspace;
|
|
|
|
static Event Delete;
|
|
|
|
static Event Return;
|
|
|
|
static Event Escape;
|
|
|
|
static Event F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12;
|
|
|
|
|
2019-01-27 09:33:06 +08:00
|
|
|
// --- Custom ---
|
|
|
|
static Event Custom;
|
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
//--- Method section ---------------------------------------------------------
|
|
|
|
bool is_character() { return is_character_; }
|
|
|
|
wchar_t character() { return character_; }
|
|
|
|
const std::string& input() { return input_; }
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
bool operator==(const Event& other) { return input_ == other.input_; }
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
//--- State section ----------------------------------------------------------
|
|
|
|
private:
|
|
|
|
std::string input_;
|
|
|
|
bool is_character_ = false;
|
|
|
|
wchar_t character_ = '?';
|
|
|
|
};
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
} // namespace ftxui
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-01-07 00:10:35 +08:00
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_EVENT_HPP */
|