2021-05-15 03:43:35 +08:00
|
|
|
#include <memory> // for allocator, __shared_ptr_access, shared_ptr
|
2021-08-09 06:27:37 +08:00
|
|
|
#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
|
2021-05-15 03:43:35 +08:00
|
|
|
#include "ftxui/component/component.hpp" // for Radiobox, Horizontal, Menu, Renderer, Tab
|
|
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
|
|
|
|
#include "ftxui/dom/elements.hpp" // for Element, separator, hbox, operator|, border
|
2019-01-13 05:25:49 +08:00
|
|
|
|
|
|
|
using namespace ftxui;
|
|
|
|
|
2023-06-03 19:59:39 +08:00
|
|
|
int main() {
|
2021-08-09 06:27:37 +08:00
|
|
|
std::vector<std::string> tab_values{
|
|
|
|
"tab_1",
|
|
|
|
"tab_2",
|
|
|
|
"tab_3",
|
2021-05-10 02:32:27 +08:00
|
|
|
};
|
2021-05-14 06:45:03 +08:00
|
|
|
int tab_selected = 0;
|
|
|
|
auto tab_menu = Menu(&tab_values, &tab_selected);
|
2020-03-27 08:42:46 +08:00
|
|
|
|
2021-08-09 06:27:37 +08:00
|
|
|
std::vector<std::string> tab_1_entries{
|
|
|
|
"Forest",
|
|
|
|
"Water",
|
|
|
|
"I don't know",
|
2021-05-10 02:32:27 +08:00
|
|
|
};
|
2021-05-14 06:45:03 +08:00
|
|
|
int tab_1_selected = 0;
|
2020-03-27 08:42:46 +08:00
|
|
|
|
2021-08-09 06:27:37 +08:00
|
|
|
std::vector<std::string> tab_2_entries{
|
|
|
|
"Hello",
|
|
|
|
"Hi",
|
|
|
|
"Hay",
|
2021-05-10 02:32:27 +08:00
|
|
|
};
|
2021-05-14 06:45:03 +08:00
|
|
|
int tab_2_selected = 0;
|
2020-03-27 08:42:46 +08:00
|
|
|
|
2021-08-09 06:27:37 +08:00
|
|
|
std::vector<std::string> tab_3_entries{
|
|
|
|
"Table",
|
|
|
|
"Nothing",
|
|
|
|
"Is",
|
|
|
|
"Empty",
|
2021-05-10 02:32:27 +08:00
|
|
|
};
|
2021-05-14 06:45:03 +08:00
|
|
|
int tab_3_selected = 0;
|
|
|
|
auto tab_container = Container::Tab(
|
2021-05-15 08:32:42 +08:00
|
|
|
{
|
|
|
|
Radiobox(&tab_1_entries, &tab_1_selected),
|
|
|
|
Radiobox(&tab_2_entries, &tab_2_selected),
|
|
|
|
Radiobox(&tab_3_entries, &tab_3_selected),
|
|
|
|
},
|
|
|
|
&tab_selected);
|
2020-03-27 08:42:46 +08:00
|
|
|
|
2021-05-14 06:45:03 +08:00
|
|
|
auto container = Container::Horizontal({
|
|
|
|
tab_menu,
|
|
|
|
tab_container,
|
2021-05-10 02:32:27 +08:00
|
|
|
});
|
2020-03-27 08:42:46 +08:00
|
|
|
|
2021-05-14 06:45:03 +08:00
|
|
|
auto renderer = Renderer(container, [&] {
|
2021-05-10 02:32:27 +08:00
|
|
|
return hbox({
|
2021-05-14 06:45:03 +08:00
|
|
|
tab_menu->Render(),
|
2021-05-10 02:32:27 +08:00
|
|
|
separator(),
|
2021-05-14 06:45:03 +08:00
|
|
|
tab_container->Render(),
|
2021-05-10 02:32:27 +08:00
|
|
|
}) |
|
|
|
|
border;
|
2021-05-14 06:45:03 +08:00
|
|
|
});
|
2019-01-13 05:25:49 +08:00
|
|
|
|
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
2021-05-14 06:45:03 +08:00
|
|
|
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.
|