2019-01-13 05:25:49 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include "ftxui/component/container.hpp"
|
2019-01-19 05:41:33 +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"
|
|
|
|
#include "ftxui/screen/string.hpp"
|
|
|
|
|
|
|
|
using namespace ftxui;
|
|
|
|
|
|
|
|
class MyComponent : public Component {
|
2019-01-19 05:41:33 +08:00
|
|
|
public:
|
|
|
|
MyComponent() {
|
|
|
|
Add(&container_);
|
|
|
|
container_.Add(&toggle_);
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
toggle_.entries = {
|
|
|
|
L"tab_1",
|
|
|
|
L"tab_2",
|
|
|
|
L"tab_3",
|
|
|
|
};
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
container_.Add(&tab_container_);
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
radiobox_1_.entries = {L"Forest", L"Water", L"I don't know"};
|
|
|
|
tab_container_.Add(&radiobox_1_);
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
radiobox_2_.entries = {
|
|
|
|
L"Hello",
|
|
|
|
L"Hi",
|
|
|
|
L"Hay",
|
|
|
|
};
|
|
|
|
tab_container_.Add(&radiobox_2_);
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
radiobox_3_.entries = {
|
|
|
|
L"Table",
|
|
|
|
L"Nothing",
|
|
|
|
L"Is",
|
|
|
|
L"Empty",
|
|
|
|
};
|
|
|
|
tab_container_.Add(&radiobox_3_);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void()> on_enter = []() {};
|
|
|
|
|
|
|
|
Element Render(){
|
|
|
|
return
|
|
|
|
vbox(
|
|
|
|
toggle_.Render(),
|
|
|
|
separator(),
|
|
|
|
tab_container_.Render()
|
|
|
|
) | frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Toggle toggle_;
|
|
|
|
Container container_ = Container::Vertical();
|
|
|
|
Container tab_container_ = Container::Tab(&(toggle_.selected));
|
|
|
|
RadioBox radiobox_1_;
|
|
|
|
RadioBox radiobox_2_;
|
|
|
|
RadioBox radiobox_3_;
|
2019-01-13 05:25:49 +08:00
|
|
|
};
|
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-13 05:25:49 +08:00
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
|
|
|
MyComponent component;
|
|
|
|
component.on_enter = screen.ExitLoopClosure();
|
|
|
|
screen.Loop(&component);
|
|
|
|
}
|