FTXUI/examples/component/radiobox.cpp

27 lines
795 B
C++
Raw Normal View History

2021-05-10 02:32:27 +08:00
#include <string> // for wstring, allocator, basic_string
#include <vector> // for vector
#include "ftxui/component/captured_mouse.hpp" // for ftxui
#include "ftxui/component/component.hpp" // for Radiobox
2021-05-02 02:40:35 +08:00
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
2019-01-19 05:41:33 +08:00
using namespace ftxui;
int main(int argc, const char* argv[]) {
2021-05-10 02:32:27 +08:00
std::vector<std::wstring> radiobox_list = {
2019-01-19 05:41:33 +08:00
L"Use gcc",
L"Use clang",
L"Use emscripten",
L"Use tcc",
};
2021-05-10 02:32:27 +08:00
int selected = 0;
auto screen = ScreenInteractive::TerminalOutput();
screen.Loop(Radiobox(&radiobox_list, &selected));
2019-01-19 05:41:33 +08:00
return 0;
}
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.