mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-26 04:31:34 +08:00
711b71688e
This commit deserve to be cut into at least 8 sub commit. Sorry, I acknowledge this is bad... Here are the new features: * dom decorator: bold, dim, underlined, inverted. * component mechanism * components * menu * toogle
22 lines
422 B
C++
22 lines
422 B
C++
#include <chrono>
|
|
#include <iostream>
|
|
#include <thread>
|
|
|
|
#include "ftxui/screen_interactive.hpp"
|
|
#include "ftxui/component/menu.hpp"
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
ftxui::ScreenInteractive screen(30,3);
|
|
ftxui::component::Menu menu(screen.delegate());
|
|
menu.entries = {
|
|
L"entry 1",
|
|
L"entry 2",
|
|
L"entry 3"
|
|
};
|
|
menu.selected = 0;
|
|
menu.on_enter = screen.ExitLoopClosure();
|
|
|
|
screen.Loop();
|
|
}
|