FTXUI/examples/component/print_key_press.cpp

94 lines
2.7 KiB
C++
Raw Normal View History

2020-04-20 03:00:37 +08:00
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
2021-05-23 18:53:20 +08:00
#include <stddef.h> // for size_t
#include <algorithm> // for max
#include <memory> // for allocator, shared_ptr
#include <string> // for char_traits, operator+, string, basic_string, to_string
2021-05-10 02:32:27 +08:00
#include <utility> // for move
#include <vector> // for vector
2021-05-02 02:40:35 +08:00
2021-05-10 02:32:27 +08:00
#include "ftxui/component/captured_mouse.hpp" // for ftxui
2021-05-23 18:53:20 +08:00
#include "ftxui/component/component.hpp" // for CatchEvent, Renderer
2021-05-10 02:32:27 +08:00
#include "ftxui/component/event.hpp" // for Event
#include "ftxui/component/mouse.hpp" // for Mouse, Mouse::Left, Mouse::Middle, Mouse::None, Mouse::Pressed, Mouse::Released, Mouse::Right, Mouse::WheelDown, Mouse::WheelUp
2021-05-23 18:53:20 +08:00
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
#include "ftxui/dom/elements.hpp" // for text, vbox, window, Element, Elements
using namespace ftxui;
std::string Stringify(Event event) {
std::string out;
2021-04-25 21:22:38 +08:00
for (auto& it : event.input())
out += " " + std::to_string((unsigned int)it);
2021-04-25 21:22:38 +08:00
out = "(" + out + " ) -> ";
2021-04-25 21:22:38 +08:00
if (event.is_character()) {
out += "character(" + event.character() + ")";
2021-04-25 21:22:38 +08:00
} else if (event.is_mouse()) {
out += "mouse";
2021-04-25 21:22:38 +08:00
switch (event.mouse().button) {
case Mouse::Left:
out += "_left";
2021-04-25 21:22:38 +08:00
break;
case Mouse::Middle:
out += "_middle";
2021-04-25 21:22:38 +08:00
break;
case Mouse::Right:
out += "_right";
2021-04-25 21:22:38 +08:00
break;
case Mouse::None:
out += "_none";
2021-04-25 21:22:38 +08:00
break;
case Mouse::WheelUp:
out += "_wheel_up";
2021-04-25 21:22:38 +08:00
break;
case Mouse::WheelDown:
out += "_wheel_down";
2021-04-25 21:22:38 +08:00
break;
}
switch (event.mouse().motion) {
case Mouse::Pressed:
out += "_pressed";
2021-04-25 21:22:38 +08:00
break;
case Mouse::Released:
out += "_released";
2021-04-25 21:22:38 +08:00
break;
}
if (event.mouse().control)
out += "_control";
2021-04-25 21:22:38 +08:00
if (event.mouse().shift)
out += "_shift";
2021-04-25 21:22:38 +08:00
if (event.mouse().meta)
out += "_meta";
2021-04-25 21:22:38 +08:00
out += "(" + //
std::to_string(event.mouse().x) + "," +
std::to_string(event.mouse().y) + ")";
2021-04-25 21:22:38 +08:00
} else {
out += "(special)";
2021-04-25 21:22:38 +08:00
}
return out;
}
2021-05-23 18:53:20 +08:00
int main(int argc, const char* argv[]) {
auto screen = ScreenInteractive::TerminalOutput();
std::vector<Event> keys;
2021-05-23 18:53:20 +08:00
auto component = Renderer([&] {
2019-01-13 01:24:46 +08:00
Elements children;
2021-05-23 18:53:20 +08:00
for (size_t i = std::max(0, (int)keys.size() - 20); i < keys.size(); ++i)
2021-04-25 21:22:38 +08:00
children.push_back(text(Stringify(keys[i])));
return window(text("keys"), vbox(std::move(children)));
2021-05-23 18:53:20 +08:00
});
component |= CatchEvent([&](Event event) {
2018-10-19 04:58:38 +08:00
keys.push_back(event);
return true;
2021-05-23 18:53:20 +08:00
});
2021-05-23 18:53:20 +08:00
screen.Loop(component);
}