2018-10-10 01:06:03 +08:00
|
|
|
#include <chrono>
|
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include "ftxui/component/menu.hpp"
|
2019-01-07 00:10:35 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp"
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-07 00:10:35 +08:00
|
|
|
int main(int argc, const char* argv[]) {
|
|
|
|
using namespace ftxui::component;
|
|
|
|
using namespace ftxui::screen;
|
|
|
|
auto screen = ScreenInteractive::FixedSize(30, 3);
|
|
|
|
Menu menu(screen.delegate());
|
|
|
|
menu.entries = {L"entry 1", L"entry 2", L"entry 3"};
|
2018-10-10 01:06:03 +08:00
|
|
|
menu.selected = 0;
|
|
|
|
menu.on_enter = screen.ExitLoopClosure();
|
|
|
|
|
|
|
|
screen.Loop();
|
|
|
|
}
|