2023-08-19 19:56:36 +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.
|
2021-12-12 00:58:25 +08:00
|
|
|
#include <ftxui/dom/elements.hpp> // for operator|, text, Element, Fit, borderDouble, borderHeavy, borderLight, borderRounded, vbox
|
|
|
|
#include <ftxui/screen/screen.hpp> // for Screen
|
|
|
|
#include <iostream> // for endl, cout, ostream
|
|
|
|
#include <memory> // for allocator
|
2021-09-12 06:36:59 +08:00
|
|
|
|
2022-01-07 18:03:54 +08:00
|
|
|
#include "ftxui/dom/node.hpp" // for Render
|
|
|
|
#include "ftxui/screen/color.hpp" // for ftxui
|
2021-09-12 06:36:59 +08:00
|
|
|
|
2023-06-03 19:59:39 +08:00
|
|
|
int main() {
|
2021-09-12 06:36:59 +08:00
|
|
|
using namespace ftxui;
|
|
|
|
|
|
|
|
auto document = vbox({
|
|
|
|
text("borderLight") | borderLight,
|
2023-03-16 05:50:27 +08:00
|
|
|
text("borderDashed") | borderDashed,
|
2021-09-12 06:36:59 +08:00
|
|
|
text("borderHeavy") | borderHeavy,
|
|
|
|
text("borderDouble") | borderDouble,
|
|
|
|
text("borderRounded") | borderRounded,
|
|
|
|
});
|
|
|
|
|
|
|
|
auto screen =
|
|
|
|
Screen::Create(Dimension::Fit(document), Dimension::Fit(document));
|
|
|
|
Render(screen, document);
|
|
|
|
screen.Print();
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|