FTXUI/src/ftxui/dom/blink.cpp

26 lines
601 B
C++
Raw Normal View History

2019-01-03 05:33:59 +08:00
#include "ftxui/dom/elements.hpp"
2020-03-23 05:32:44 +08:00
#include "ftxui/dom/node_decorator.hpp"
2019-01-03 05:33:59 +08:00
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);
2019-01-20 05:06:05 +08:00
for (int y = box_.y_min; y <= box_.y_max; ++y) {
for (int x = box_.x_min; x <= box_.x_max; ++x) {
2019-01-03 05:33:59 +08:00
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)));
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui