FTXUI/src/ftxui/dom/text.cpp

44 lines
882 B
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.
#include "ftxui/dom/node.hpp"
#include "ftxui/screen/string.hpp"
2018-09-18 14:48:40 +08:00
namespace ftxui {
using ftxui::Screen;
2018-09-18 14:48:40 +08:00
class Text : public Node {
public:
Text(std::wstring text) : Node(), text_(text) {}
~Text() {}
void ComputeRequirement() override {
2020-06-01 22:13:29 +08:00
requirement_.min_x = wstring_width(text_);
requirement_.min_y = 1;
2018-09-18 14:48:40 +08:00
}
void Render(Screen& screen) override {
2019-01-20 05:06:05 +08:00
int x = box_.x_min;
int y = box_.y_min;
if (y > box_.y_max)
2018-09-18 14:48:40 +08:00
return;
for (wchar_t c : text_) {
2019-01-20 05:06:05 +08:00
if (x > box_.x_max)
2018-09-18 14:48:40 +08:00
return;
screen.at(x, y) = c;
x += wchar_width(c);
2018-09-18 14:48:40 +08:00
}
}
private:
std::wstring text_;
};
Element text(std::wstring text) {
return std::make_shared<Text>(text);
2018-09-18 14:48:40 +08:00
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui