FTXUI/examples/component/radiobox_in_frame.cpp

34 lines
1.2 KiB
C++
Raw Normal View History

#include <memory> // for __shared_ptr_access, shared_ptr
2021-05-02 02:40:35 +08:00
#include <string> // for wstring, operator+
#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
2021-05-10 02:32:27 +08:00
#include "ftxui/dom/elements.hpp" // for Element, operator|, size, border, frame, HEIGHT, LESS_THAN
#include "ftxui/screen/string.hpp" // for to_wstring
2019-01-20 05:06:05 +08:00
using namespace ftxui;
int main(int argc, const char* argv[]) {
std::vector<std::wstring> entries;
int selected = 0;
2019-01-20 05:06:05 +08:00
for (int i = 0; i < 30; ++i)
entries.push_back(L"RadioBox " + to_wstring(i));
auto radiobox = Radiobox(&entries, &selected);
auto renderer = Renderer(radiobox, [&] {
return radiobox->Render() | 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.