mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-27 21:58:29 +08:00
30 lines
758 B
C++
30 lines
758 B
C++
// 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.
|
|
|
|
#include "ftxui/dom/elements.hpp"
|
|
#include "ftxui/dom/node_decorator.hpp"
|
|
|
|
namespace ftxui {
|
|
|
|
class Blink : public NodeDecorator {
|
|
public:
|
|
Blink(Elements children) : NodeDecorator(std::move(children)) {}
|
|
~Blink() override {}
|
|
|
|
void Render(Screen& screen) override {
|
|
Node::Render(screen);
|
|
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).blink = true;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
std::unique_ptr<Node> blink(Element child) {
|
|
return std::make_unique<Blink>(unpack(std::move(child)));
|
|
}
|
|
|
|
} // namespace ftxui
|