Add the modal dialog example.

New component: clear_under.
This commit is contained in:
ArthurSonzogni
2020-08-26 17:58:18 +02:00
committed by Arthur Sonzogni
parent 5a8ed208da
commit 4ad4946de3
5 changed files with 170 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
#include "ftxui/dom/elements.hpp"
#include "ftxui/dom/node_decorator.hpp"
namespace ftxui {
using ftxui::Screen;
class ClearUnder : public NodeDecorator {
public:
ClearUnder(Elements children) : NodeDecorator(std::move(children)) {}
~ClearUnder() override {}
void Render(Screen& screen) override {
for (int y = box_.y_min; y <= box_.y_max; ++y) {
for (int x = box_.x_min; x <= box_.x_max; ++x) {
screen.PixelAt(x, y) = Pixel();
}
}
Node::Render(screen);
}
};
/// @brief Before drawing |child|, clear the pixels below. This is useful in
// combinaison with dbox.
/// @see ftxui::dbox
/// @ingroup dom
Element clear_under(Element child) {
return std::make_shared<ClearUnder>(unpack(std::move(child)));
}
} // namespace ftxui
// 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.