FTXUI/examples/component/tab_horizontal.cpp

72 lines
1.9 KiB
C++
Raw Normal View History

#include <memory> // for allocator, __shared_ptr_access, shared_ptr
#include <string> // for wstring, 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(int argc, const char* argv[]) {
std::vector<std::wstring> tab_values{
2021-05-10 02:32:27 +08:00
L"tab_1",
L"tab_2",
L"tab_3",
};
int tab_selected = 0;
auto tab_toggle = Toggle(&tab_values, &tab_selected);
2019-01-13 05:25:49 +08:00
std::vector<std::wstring> tab_1_entries{
2021-05-10 02:32:27 +08:00
L"Forest",
L"Water",
L"I don't know",
};
int tab_1_selected = 0;
2019-01-13 05:25:49 +08:00
std::vector<std::wstring> tab_2_entries{
2021-05-10 02:32:27 +08:00
L"Hello",
L"Hi",
L"Hay",
};
int tab_2_selected = 0;
2019-01-13 05:25:49 +08:00
std::vector<std::wstring> tab_3_entries{
2021-05-10 02:32:27 +08:00
L"Table",
L"Nothing",
L"Is",
L"Empty",
};
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
}
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.