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