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.
|
|
|
|
|
2018-10-10 01:06:03 +08:00
|
|
|
#include <chrono>
|
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include "ftxui/component/component.hpp"
|
2019-01-07 00:10:35 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp"
|
2019-01-13 01:24:46 +08:00
|
|
|
#include "ftxui/screen/string.hpp"
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
using namespace ftxui;
|
2019-01-07 00:10:35 +08:00
|
|
|
|
|
|
|
class DrawKey : public Component {
|
2018-10-10 01:06:03 +08:00
|
|
|
public:
|
2019-01-13 01:24:46 +08:00
|
|
|
~DrawKey() override = default;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
Element Render() override {
|
2019-01-13 01:24:46 +08:00
|
|
|
Elements children;
|
2018-10-10 01:06:03 +08:00
|
|
|
for (size_t i = std::max(0, (int)keys.size() - 10); i < keys.size(); ++i) {
|
2019-06-23 23:47:33 +08:00
|
|
|
std::wstring code;
|
2020-03-27 08:42:46 +08:00
|
|
|
for (auto& it : keys[i].input())
|
2019-06-23 23:59:34 +08:00
|
|
|
code += L" " + std::to_wstring((unsigned int)it);
|
2019-06-23 23:47:33 +08:00
|
|
|
|
2019-07-03 05:09:20 +08:00
|
|
|
code = L"(" + code + L" ) -> ";
|
|
|
|
if (keys[i].is_character())
|
2020-03-27 08:42:46 +08:00
|
|
|
code += keys[i].character();
|
2019-07-03 05:09:20 +08:00
|
|
|
else
|
2020-03-27 08:42:46 +08:00
|
|
|
code += L"(special)";
|
2019-06-23 23:47:33 +08:00
|
|
|
children.push_back(text(code));
|
2018-10-10 01:06:03 +08:00
|
|
|
}
|
|
|
|
return vbox(std::move(children));
|
|
|
|
}
|
|
|
|
|
2019-01-07 00:10:35 +08:00
|
|
|
bool OnEvent(Event event) override {
|
2018-10-19 04:58:38 +08:00
|
|
|
keys.push_back(event);
|
2018-10-10 01:06:03 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-01-07 00:10:35 +08:00
|
|
|
std::vector<Event> keys;
|
2018-10-10 01:06:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-07 00:10:35 +08:00
|
|
|
auto screen = ScreenInteractive::FixedSize(80, 10);
|
2019-01-13 01:24:46 +08:00
|
|
|
DrawKey draw_key;
|
|
|
|
screen.Loop(&draw_key);
|
2018-10-10 01:06:03 +08:00
|
|
|
}
|