2021-08-09 06:27:37 +08:00
|
|
|
#include <memory> // for shared_ptr, __shared_ptr_access
|
|
|
|
#include <string> // for string, basic_string, operator+, to_string
|
2021-05-02 02:40:35 +08:00
|
|
|
#include <vector> // for vector
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#include "ftxui/component/captured_mouse.hpp" // for ftxui
|
2021-05-15 03:43:35 +08:00
|
|
|
#include "ftxui/component/component.hpp" // for Radiobox, Renderer
|
2021-05-10 02:32:27 +08:00
|
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
2021-05-02 02:40:35 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
|
2021-08-09 06:27:37 +08:00
|
|
|
#include "ftxui/dom/elements.hpp" // for operator|, Element, size, border, frame, HEIGHT, LESS_THAN
|
2019-01-20 05:06:05 +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> entries;
|
2021-05-14 06:45:03 +08:00
|
|
|
int selected = 0;
|
2019-01-20 05:06:05 +08:00
|
|
|
|
2021-05-14 06:45:03 +08:00
|
|
|
for (int i = 0; i < 30; ++i)
|
2021-08-09 06:27:37 +08:00
|
|
|
entries.push_back("RadioBox " + std::to_string(i));
|
2021-05-14 06:45:03 +08:00
|
|
|
auto radiobox = Radiobox(&entries, &selected);
|
|
|
|
auto renderer = Renderer(radiobox, [&] {
|
2021-09-26 23:30:41 +08:00
|
|
|
return radiobox->Render() | vscroll_indicator | frame |
|
|
|
|
size(HEIGHT, LESS_THAN, 10) | border;
|
2021-05-14 06:45:03 +08:00
|
|
|
});
|
2019-01-20 05:06:05 +08:00
|
|
|
|
|
|
|
auto screen = ScreenInteractive::FitComponent();
|
2021-05-14 06:45:03 +08:00
|
|
|
screen.Loop(renderer);
|
2019-01-20 05:06:05 +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.
|