2020-08-26 22:26:09 +08:00
|
|
|
#include "ftxui/component/button.hpp"
|
2020-09-06 19:46:56 +08:00
|
|
|
#include "ftxui/component/checkbox.hpp"
|
2019-01-13 05:25:49 +08:00
|
|
|
#include "ftxui/component/container.hpp"
|
|
|
|
#include "ftxui/component/input.hpp"
|
|
|
|
#include "ftxui/component/menu.hpp"
|
2019-01-19 05:58:32 +08:00
|
|
|
#include "ftxui/component/radiobox.hpp"
|
2019-01-13 05:25:49 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp"
|
|
|
|
#include "ftxui/component/toggle.hpp"
|
|
|
|
|
|
|
|
using namespace ftxui;
|
|
|
|
|
|
|
|
class MyComponent : public Component {
|
|
|
|
Container container = Container::Vertical();
|
|
|
|
Menu menu;
|
|
|
|
Toggle toggle;
|
2019-01-19 05:58:32 +08:00
|
|
|
Container checkbox_container = Container::Vertical();
|
|
|
|
CheckBox checkbox1;
|
|
|
|
CheckBox checkbox2;
|
|
|
|
RadioBox radiobox;
|
|
|
|
Input input;
|
2020-08-26 22:26:09 +08:00
|
|
|
Button button;
|
2019-01-13 05:25:49 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
MyComponent() {
|
|
|
|
Add(&container);
|
|
|
|
menu.entries = {
|
2019-01-19 07:20:29 +08:00
|
|
|
L"Menu 1",
|
|
|
|
L"Menu 2",
|
|
|
|
L"Menu 3",
|
|
|
|
L"Menu 4",
|
2019-01-13 05:25:49 +08:00
|
|
|
};
|
|
|
|
container.Add(&menu);
|
|
|
|
|
|
|
|
toggle.entries = {
|
2019-01-19 07:20:29 +08:00
|
|
|
L"Toggle_1",
|
|
|
|
L"Toggle_2",
|
2019-01-13 05:25:49 +08:00
|
|
|
};
|
|
|
|
container.Add(&toggle);
|
|
|
|
|
2019-01-19 05:58:32 +08:00
|
|
|
container.Add(&checkbox_container);
|
|
|
|
checkbox1.label = L"checkbox1";
|
|
|
|
checkbox_container.Add(&checkbox1);
|
|
|
|
checkbox2.label = L"checkbox2";
|
|
|
|
checkbox_container.Add(&checkbox2);
|
|
|
|
|
|
|
|
radiobox.entries = {
|
2019-01-19 07:20:29 +08:00
|
|
|
L"Radiobox 1",
|
|
|
|
L"Radiobox 2",
|
|
|
|
L"Radiobox 3",
|
|
|
|
L"Radiobox 4",
|
2019-01-19 05:58:32 +08:00
|
|
|
};
|
|
|
|
container.Add(&radiobox);
|
|
|
|
|
2019-01-13 05:25:49 +08:00
|
|
|
input.placeholder = L"Input placeholder";
|
|
|
|
container.Add(&input);
|
2020-08-26 22:26:09 +08:00
|
|
|
|
|
|
|
button.label = L"Quit";
|
|
|
|
button.on_click = [&] { on_quit(); };
|
|
|
|
container.Add(&button);
|
2019-01-13 05:25:49 +08:00
|
|
|
}
|
|
|
|
|
2019-01-19 05:58:32 +08:00
|
|
|
Element Render(std::wstring name, Component& component) {
|
2020-05-21 02:36:47 +08:00
|
|
|
return hbox({
|
2019-01-21 06:04:10 +08:00
|
|
|
text(name) | size(WIDTH, EQUAL, 8),
|
|
|
|
separator(),
|
2020-05-21 02:36:47 +08:00
|
|
|
component.Render(),
|
|
|
|
});
|
2019-01-19 05:58:32 +08:00
|
|
|
}
|
|
|
|
|
2019-01-13 05:25:49 +08:00
|
|
|
Element Render() override {
|
2020-08-26 22:26:09 +08:00
|
|
|
return //
|
|
|
|
vbox({
|
|
|
|
Render(L"menu", menu),
|
|
|
|
separator(),
|
|
|
|
Render(L"toggle", toggle),
|
|
|
|
separator(),
|
|
|
|
Render(L"checkbox", checkbox_container),
|
|
|
|
separator(),
|
|
|
|
Render(L"radiobox", radiobox),
|
|
|
|
separator(),
|
|
|
|
Render(L"input", input) | size(WIDTH, LESS_THAN, 30),
|
|
|
|
separator(),
|
|
|
|
Render(L"button", button),
|
|
|
|
}) |
|
|
|
|
border;
|
2019-01-13 05:25:49 +08:00
|
|
|
}
|
2020-08-26 22:26:09 +08:00
|
|
|
|
|
|
|
std::function<void()> on_quit = [] {};
|
2019-01-13 05:25:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-19 07:20:29 +08:00
|
|
|
auto screen = ScreenInteractive::FitComponent();
|
2019-01-13 05:25:49 +08:00
|
|
|
MyComponent component;
|
2020-08-26 22:26:09 +08:00
|
|
|
component.on_quit = screen.ExitLoopClosure();
|
2019-01-13 05:25:49 +08:00
|
|
|
screen.Loop(&component);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-09-06 19:46:56 +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.
|