2021-08-09 06:27:37 +08:00
|
|
|
#include <string> // for string, allocator, basic_string
|
2021-05-10 02:32:27 +08:00
|
|
|
#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;
|
|
|
|
|
2023-06-03 19:59:39 +08:00
|
|
|
int main() {
|
2021-08-09 06:27:37 +08:00
|
|
|
std::vector<std::string> radiobox_list = {
|
|
|
|
"Use gcc",
|
|
|
|
"Use clang",
|
|
|
|
"Use emscripten",
|
|
|
|
"Use tcc",
|
2019-01-19 05:41:33 +08:00
|
|
|
};
|
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.
|