2018-10-19 04:58:38 +08:00
|
|
|
#include <chrono>
|
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include "ftxui/component/component_vertical.hpp"
|
2019-01-07 00:10:35 +08:00
|
|
|
#include "ftxui/component/input.hpp"
|
|
|
|
#include "ftxui/component/screen_interactive.hpp"
|
2018-10-19 04:58:38 +08:00
|
|
|
#include "ftxui/util/string.hpp"
|
|
|
|
|
|
|
|
using namespace ftxui::component;
|
|
|
|
using namespace ftxui::dom;
|
|
|
|
|
|
|
|
class MyComponent : ComponentVertical {
|
|
|
|
public:
|
2019-01-07 00:10:35 +08:00
|
|
|
MyComponent(Delegate* delegate)
|
2018-10-19 04:58:38 +08:00
|
|
|
: ComponentVertical(delegate),
|
|
|
|
input_1(delegate->NewChild()),
|
|
|
|
input_2(delegate->NewChild()),
|
|
|
|
input_3(delegate->NewChild()) {
|
2018-10-21 20:18:11 +08:00
|
|
|
|
|
|
|
input_1.placeholder = L"input1";
|
|
|
|
input_2.placeholder = L"input2";
|
|
|
|
input_3.placeholder = L"input3";
|
2018-10-19 04:58:38 +08:00
|
|
|
Focus(&input_1);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void()> on_enter = []() {};
|
|
|
|
|
|
|
|
private:
|
|
|
|
Input input_1;
|
|
|
|
Input input_2;
|
|
|
|
Input input_3;
|
|
|
|
|
|
|
|
Element Render() override {
|
|
|
|
return
|
|
|
|
frame(
|
|
|
|
vbox(
|
|
|
|
hbox(text(L" input_1 : "), input_1.Render()),
|
|
|
|
hbox(text(L" input_2 : "), input_2.Render()),
|
|
|
|
hbox(text(L" input_3 : "), input_3.Render())
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-07 00:10:35 +08:00
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
2018-10-19 04:58:38 +08:00
|
|
|
MyComponent component(screen.delegate());
|
|
|
|
component.on_enter = screen.ExitLoopClosure();
|
|
|
|
screen.Loop();
|
|
|
|
}
|