FTXUI/examples/component/menu.cpp

34 lines
1.1 KiB
C++
Raw Normal View History

2021-05-02 02:40:35 +08:00
#include <functional> // for function
2021-05-10 02:32:27 +08:00
#include <iostream> // for basic_ostream::operator<<, operator<<, endl, basic_ostream, basic_ostream<>::__ostream_type, cout, ostream
2021-07-10 19:20:43 +08:00
#include <string> // for wstring, basic_string, allocator
2021-05-10 02:32:27 +08:00
#include <vector> // for vector
2020-03-23 05:32:44 +08:00
2021-05-10 02:32:27 +08:00
#include "ftxui/component/captured_mouse.hpp" // for ftxui
#include "ftxui/component/component.hpp" // for Menu
2021-07-10 19:20:43 +08:00
#include "ftxui/component/component_options.hpp" // for MenuOption
2021-05-02 02:40:35 +08:00
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
int main(int argc, const char* argv[]) {
using namespace ftxui;
auto screen = ScreenInteractive::TerminalOutput();
2019-01-13 01:24:46 +08:00
2021-05-10 02:32:27 +08:00
std::vector<std::wstring> entries = {
L"entry 1",
L"entry 2",
L"entry 3",
};
int selected = 0;
MenuOption option;
option.on_enter = screen.ExitLoopClosure();
auto menu = Menu(&entries, &selected, &option);
2019-01-13 01:24:46 +08:00
2021-05-10 02:32:27 +08:00
screen.Loop(menu);
std::cout << "Selected element = " << selected << std::endl;
}
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.