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

39 lines
975 B
C++
Raw Normal View History

2021-05-01 20:40:35 +02:00
#include <memory>
#include <utility>
#include "ftxui/dom/elements.hpp"
2020-03-22 22:32:44 +01:00
#include "ftxui/dom/node_decorator.hpp"
2021-05-01 20:40:35 +02:00
#include "ftxui/screen/box.hpp"
#include "ftxui/screen/screen.hpp"
namespace ftxui {
using ftxui::Screen;
2018-10-12 09:23:37 +02:00
class Underlined : public NodeDecorator {
public:
2019-01-12 18:24:46 +01:00
Underlined(Elements children) : NodeDecorator(std::move(children)) {}
~Underlined() override {}
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.