FTXUI/src/ftxui/dom/bold.cpp

26 lines
595 B
C++
Raw Normal View History

2018-10-12 15:23:37 +08:00
#include "ftxui/dom/node_decorator.hpp"
#include "ftxui/dom/elements.hpp"
namespace ftxui {
2018-10-12 15:23:37 +08:00
class Bold : public NodeDecorator {
public:
2019-01-13 01:24:46 +08:00
Bold(Elements children) : NodeDecorator(std::move(children)) {}
~Bold() override {}
void Render(Screen& screen) override {
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) {
screen.PixelAt(x,y).bold = true;
}
}
Node::Render(screen);
}
};
2019-01-13 01:24:46 +08:00
std::unique_ptr<Node> bold(Element child) {
return std::make_unique<Bold>(unpack(std::move(child)));
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui