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.
|
|
|
|
|
2020-03-23 05:32:44 +08:00
|
|
|
#include "ftxui/component/menu.hpp"
|
|
|
|
|
2018-10-10 01:06:03 +08:00
|
|
|
#include <chrono>
|
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
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[]) {
|
2019-01-12 22:00:08 +08:00
|
|
|
using namespace ftxui;
|
2019-02-02 23:28:44 +08:00
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
2019-01-13 01:24:46 +08:00
|
|
|
|
|
|
|
Menu menu;
|
2019-01-07 00:10:35 +08:00
|
|
|
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();
|
|
|
|
|
2019-01-13 01:24:46 +08:00
|
|
|
screen.Loop(&menu);
|
|
|
|
|
|
|
|
std::cout << "Selected element = " << menu.selected << std::endl;
|
2018-10-10 01:06:03 +08:00
|
|
|
}
|