Files
FTXUI/src/ftxui/dom/bold.cpp

38 lines
1.0 KiB
C++
Raw Normal View History

2023-08-19 13:56:36 +02: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.
2021-05-09 20:32:27 +02:00
#include <memory> // for make_shared
#include <utility> // for move
2021-05-01 20:40:35 +02:00
#include "ftxui/dom/elements.hpp" // for Element, bold
2021-05-09 20:32:27 +02:00
#include "ftxui/dom/node.hpp" // for Node
#include "ftxui/dom/node_decorator.hpp" // for NodeDecorator
#include "ftxui/screen/box.hpp" // for Box
#include "ftxui/screen/screen.hpp" // for Pixel, Screen
namespace ftxui {
namespace {
2018-10-12 09:23:37 +02:00
class Bold : public NodeDecorator {
public:
using NodeDecorator::NodeDecorator;
void Render(Screen& screen) override {
2019-01-19 22:06:05 +01:00
for (int y = box_.y_min; y <= box_.y_max; ++y) {
for (int x = box_.x_min; x <= box_.x_max; ++x) {
2020-03-22 22:32:44 +01:00
screen.PixelAt(x, y).bold = true;
}
}
Node::Render(screen);
}
};
} // namespace
2020-05-25 01:34:13 +02:00
/// @brief Use a bold font, for elements with more emphasis.
/// @ingroup dom
Element bold(Element child) {
return std::make_shared<Bold>(std::move(child));
}
2020-02-11 21:44:55 +01:00
} // namespace ftxui