FTXUI/src/ftxui/dom/color.cpp

62 lines
1.5 KiB
C++
Raw Normal View History

2020-04-20 03:00:37 +08:00
// 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.
2018-10-12 15:23:37 +08:00
#include "ftxui/dom/elements.hpp"
2020-03-23 05:32:44 +08:00
#include "ftxui/dom/node_decorator.hpp"
2018-10-12 15:23:37 +08:00
namespace ftxui {
2018-10-12 15:23:37 +08:00
class BgColor : public NodeDecorator {
public:
2019-01-13 01:24:46 +08:00
BgColor(Elements children, Color color)
2018-10-12 15:23:37 +08:00
: NodeDecorator(std::move(children)), color_(color) {}
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) {
2018-10-12 15:23:37 +08:00
screen.PixelAt(x, y).background_color = color_;
}
}
NodeDecorator::Render(screen);
2018-10-12 15:23:37 +08:00
}
Color color_;
};
class FgColor : public NodeDecorator {
public:
2019-01-13 01:24:46 +08:00
FgColor(Elements children, Color color)
2018-10-12 15:23:37 +08:00
: NodeDecorator(std::move(children)), color_(color) {}
~FgColor() 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) {
2018-10-12 15:23:37 +08:00
screen.PixelAt(x, y).foreground_color = color_;
}
}
NodeDecorator::Render(screen);
2018-10-12 15:23:37 +08:00
}
Color color_;
};
Element color(Color c, Element child) {
return std::make_shared<FgColor>(unpack(std::move(child)), c);
2018-10-12 15:23:37 +08:00
}
Element bgcolor(Color c, Element child) {
return std::make_shared<BgColor>(unpack(std::move(child)), c);
2018-10-12 15:23:37 +08:00
}
2019-01-03 07:35:59 +08:00
Decorator color(Color c) {
2020-03-23 05:32:44 +08:00
return [c](Element child) { return color(c, std::move(child)); };
2019-01-03 07:35:59 +08:00
}
Decorator bgcolor(Color c) {
2020-03-23 05:32:44 +08:00
return [c](Element child) { return bgcolor(c, std::move(child)); };
2019-01-03 07:35:59 +08:00
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui