FTXUI/examples/component/tab_horizontal.cpp

71 lines
1.8 KiB
C++
Raw Normal View History

2023-08-19 19:56:36 +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.
#include <memory> // for allocator, __shared_ptr_access, shared_ptr
#include <string> // for string, basic_string
2021-05-10 02:32:27 +08:00
#include <vector> // for vector
2019-01-13 05:25:49 +08:00
2021-05-10 02:32:27 +08:00
#include "ftxui/component/captured_mouse.hpp" // for ftxui
#include "ftxui/component/component.hpp" // for Radiobox, Renderer, Tab, Toggle, Vertical
#include "ftxui/component/component_base.hpp" // for ComponentBase
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
2021-05-10 02:32:27 +08:00
#include "ftxui/dom/elements.hpp" // for Element, separator, operator|, vbox, border
2019-01-13 05:25:49 +08:00
using namespace ftxui;
int main() {
std::vector<std::string> tab_values{
"tab_1",
"tab_2",
"tab_3",
2021-05-10 02:32:27 +08:00
};
int tab_selected = 0;
auto tab_toggle = Toggle(&tab_values, &tab_selected);
2019-01-13 05:25:49 +08:00
std::vector<std::string> tab_1_entries{
"Forest",
"Water",
"I don't know",
2021-05-10 02:32:27 +08:00
};
int tab_1_selected = 0;
2019-01-13 05:25:49 +08:00
std::vector<std::string> tab_2_entries{
"Hello",
"Hi",
"Hay",
2021-05-10 02:32:27 +08:00
};
int tab_2_selected = 0;
2019-01-13 05:25:49 +08:00
std::vector<std::string> tab_3_entries{
"Table",
"Nothing",
"Is",
"Empty",
2021-05-10 02:32:27 +08:00
};
int tab_3_selected = 0;
auto tab_container = Container::Tab(
{
Radiobox(&tab_1_entries, &tab_1_selected),
Radiobox(&tab_2_entries, &tab_2_selected),
Radiobox(&tab_3_entries, &tab_3_selected),
},
&tab_selected);
2019-01-13 05:25:49 +08:00
auto container = Container::Vertical({
tab_toggle,
tab_container,
2021-05-10 02:32:27 +08:00
});
2019-01-19 05:41:33 +08:00
auto renderer = Renderer(container, [&] {
2021-05-10 02:32:27 +08:00
return vbox({
tab_toggle->Render(),
2021-05-10 02:32:27 +08:00
separator(),
tab_container->Render(),
2021-05-10 02:32:27 +08:00
}) |
2020-03-23 05:32:44 +08:00
border;
});
2019-01-13 05:25:49 +08:00
auto screen = ScreenInteractive::TerminalOutput();
screen.Loop(renderer);
2019-01-13 05:25:49 +08:00
}