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

37 lines
1.1 KiB
C++
Raw Normal View History

2021-05-09 20:32:27 +02:00
#include <memory> // for make_shared
#include <utility> // for move
#include "ftxui/dom/elements.hpp" // for Element, unpack, Elements, underlined
#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 {
2018-10-12 09:23:37 +02:00
class Underlined : public NodeDecorator {
public:
using NodeDecorator::NodeDecorator;
void Render(Screen& screen) override {
Node::Render(screen);
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) {
2018-10-12 09:23:37 +02:00
screen.PixelAt(x, y).underlined = true;
}
}
}
};
2020-08-16 02:24:50 +02:00
/// @brief Make the underlined element to be underlined.
/// @ingroup dom
Element underlined(Element child) {
return std::make_shared<Underlined>(unpack(std::move(child)));
}
2020-02-11 21:44:55 +01:00
} // 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.