FTXUI/examples/component/radiobox_in_frame.cpp

34 lines
1.2 KiB
C++
Raw Normal View History

#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
#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
#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;
int main(int argc, const char* argv[]) {
std::vector<std::string> entries;
int selected = 0;
2019-01-20 05:06:05 +08:00
for (int i = 0; i < 30; ++i)
entries.push_back("RadioBox " + std::to_string(i));
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;
});
2019-01-20 05:06:05 +08:00
auto screen = ScreenInteractive::FitComponent();
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.