mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-06 17:21:13 +08:00
37 lines
932 B
C++
37 lines
932 B
C++
#include <memory>
|
|
|
|
#include "ftxui/dom/elements.hpp"
|
|
#include "ftxui/dom/node.hpp"
|
|
#include "ftxui/dom/node_decorator.hpp"
|
|
#include "ftxui/screen/box.hpp"
|
|
#include "ftxui/screen/screen.hpp"
|
|
|
|
namespace ftxui {
|
|
|
|
class Bold : public NodeDecorator {
|
|
public:
|
|
Bold(Elements children) : NodeDecorator(std::move(children)) {}
|
|
~Bold() override {}
|
|
|
|
void Render(Screen& screen) override {
|
|
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);
|
|
}
|
|
};
|
|
|
|
/// @brief Use a bold font, for elements with more emphasis.
|
|
/// @ingroup dom
|
|
Element bold(Element child) {
|
|
return std::make_shared<Bold>(unpack(std::move(child)));
|
|
}
|
|
|
|
} // namespace ftxui
|
|
|
|
// 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.
|