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