Refactor component containers.

This commit is contained in:
Arthur Sonzogni
2019-01-12 18:24:46 +01:00
parent 21644eea6b
commit dba019139b
41 changed files with 293 additions and 423 deletions

View File

@@ -8,10 +8,13 @@
int main(int argc, const char* argv[]) {
using namespace ftxui;
auto screen = ScreenInteractive::FixedSize(30, 3);
Menu menu(screen.delegate());
Menu menu;
menu.entries = {L"entry 1", L"entry 2", L"entry 3"};
menu.selected = 0;
menu.on_enter = screen.ExitLoopClosure();
screen.Loop();
screen.Loop(&menu);
std::cout << "Selected element = " << menu.selected << std::endl;
}