FTXUI/ftxui/src/ftxui/dom/blink.cpp

26 lines
600 B
C++
Raw Normal View History

2019-01-03 05:33:59 +08:00
#include "ftxui/dom/node_decorator.hpp"
#include "ftxui/dom/elements.hpp"
namespace ftxui {
2019-01-03 05:33:59 +08:00
class Blink : public NodeDecorator {
public:
2019-01-13 01:24:46 +08:00
Blink(Elements children) : NodeDecorator(std::move(children)) {}
2019-01-03 05:33:59 +08:00
~Blink() override {}
void Render(Screen& screen) override {
2019-01-03 05:33:59 +08:00
Node::Render(screen);
for (int y = box_.top; y <= box_.bottom; ++y) {
for (int x = box_.left; x <= box_.right; ++x) {
screen.PixelAt(x, y).blink = true;
}
}
}
};
2019-01-13 01:24:46 +08:00
std::unique_ptr<Node> blink(Element child) {
2019-01-03 05:33:59 +08:00
return std::make_unique<Blink>(unpack(std::move(child)));
}
}; // namespace ftxui