#include <memory>
#include <string>
#include <vector>
int main(int argc, const char* argv[]) {
int depth = 0;
std::string rating = "3/5 stars";
auto button_rate_ftxui =
Button(
"Rate FTXUI", [&] { depth = 1; });
auto button_quit =
Button(
"Quit", screen.ExitLoopClosure());
button_rate_ftxui,
button_quit,
});
auto depth_0_renderer =
Renderer(depth_0_container, [&] {
text(
"Modal dialog example"),
text(
"☆☆☆ FTXUI:" + rating +
" ☆☆☆") |
bold,
button_rate_ftxui->Render(),
button_quit->Render(),
}),
}) |
});
std::vector<std::string> rating_labels = {
"1/5 stars", "2/5 stars", "3/5 stars", "4/5 stars", "5/5 stars",
};
auto on_rating = [&](std::string new_rating) {
rating = new_rating;
depth = 0;
};
Button(&rating_labels[0], [&] { on_rating(rating_labels[0]); }),
Button(&rating_labels[1], [&] { on_rating(rating_labels[1]); }),
Button(&rating_labels[2], [&] { on_rating(rating_labels[2]); }),
Button(&rating_labels[3], [&] { on_rating(rating_labels[3]); }),
Button(&rating_labels[4], [&] { on_rating(rating_labels[4]); }),
});
auto depth_1_renderer =
Renderer(depth_1_container, [&] {
text(
"Do you like FTXUI?"),
hbox(depth_1_container->Render()),
}) |
});
{
depth_0_renderer,
depth_1_renderer,
},
&depth);
auto main_renderer =
Renderer(main_container, [&] {
Element document = depth_0_renderer->Render();
if (depth == 1) {
document,
});
}
return document;
});
screen.Loop(main_renderer);
return 0;
}