2023-08-19 13:56:36 +02: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.
|
2021-05-01 20:40:35 +02:00
|
|
|
#include <functional> // for function
|
2021-05-09 20:32:27 +02:00
|
|
|
#include <iostream> // for basic_ostream::operator<<, operator<<, endl, basic_ostream, basic_ostream<>::__ostream_type, cout, ostream
|
2021-08-09 00:27:37 +02:00
|
|
|
#include <string> // for string, basic_string, allocator
|
2021-05-09 20:32:27 +02:00
|
|
|
#include <vector> // for vector
|
2020-03-22 22:32:44 +01:00
|
|
|
|
2021-05-09 20:32:27 +02:00
|
|
|
#include "ftxui/component/captured_mouse.hpp" // for ftxui
|
|
|
|
#include "ftxui/component/component.hpp" // for Menu
|
2021-07-10 13:20:43 +02:00
|
|
|
#include "ftxui/component/component_options.hpp" // for MenuOption
|
2021-05-01 20:40:35 +02:00
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
|
2018-10-09 19:06:03 +02:00
|
|
|
|
2023-06-03 13:59:39 +02:00
|
|
|
int main() {
|
2019-01-12 15:00:08 +01:00
|
|
|
using namespace ftxui;
|
2019-02-02 16:28:44 +01:00
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
2019-01-12 18:24:46 +01:00
|
|
|
|
2021-08-09 00:27:37 +02:00
|
|
|
std::vector<std::string> entries = {
|
|
|
|
"entry 1",
|
|
|
|
"entry 2",
|
|
|
|
"entry 3",
|
2021-05-09 20:32:27 +02:00
|
|
|
};
|
|
|
|
int selected = 0;
|
2018-10-09 19:06:03 +02:00
|
|
|
|
2021-07-07 22:13:33 +02:00
|
|
|
MenuOption option;
|
|
|
|
option.on_enter = screen.ExitLoopClosure();
|
2023-06-25 17:22:05 +02:00
|
|
|
auto menu = Menu(&entries, &selected, option);
|
2019-01-12 18:24:46 +01:00
|
|
|
|
2021-05-09 20:32:27 +02:00
|
|
|
screen.Loop(menu);
|
|
|
|
|
|
|
|
std::cout << "Selected element = " << selected << std::endl;
|
2018-10-09 19:06:03 +02:00
|
|
|
}
|