FTXUI/src/ftxui/dom/text.cpp

122 lines
2.1 KiB
C++
Raw Normal View History

2020-05-25 07:34:13 +08:00
#include <algorithm>
#include "ftxui/dom/elements.hpp"
#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_;
};
class VText : public Node {
public:
VText(std::wstring text) : Node(), text_(text) {
for (auto& c : text_)
width_ = std::max(width_, wchar_width(c));
}
~VText() {}
void ComputeRequirement() override {
requirement_.min_x = width_;
requirement_.min_y = text_.size();
}
void Render(Screen& screen) override {
int x = box_.x_min;
int y = box_.y_min;
if (x + width_ - 1 > box_.x_max)
return;
for (wchar_t c : text_) {
if (y > box_.y_max)
return;
screen.at(x, y) = c;
y += 1;
}
}
private:
std::wstring text_;
int width_ = 1;
};
2020-08-16 08:24:50 +08:00
/// @brief Display a pieve of unicode text.
/// @ingroup dom
/// @see ftxui::to_wstring
///
/// ### Example
///
/// ```cpp
/// Element document = text(L"Hello world!");
/// ```
///
/// ### Output
///
/// ```bash
/// Hello world!
/// ```
Element text(std::wstring text) {
return std::make_shared<Text>(text);
2018-09-18 14:48:40 +08:00
}
2020-08-16 08:24:50 +08:00
/// @brief Display a pieve of unicode text vertically.
/// @ingroup dom
/// @see ftxui::to_wstring
///
/// ### Example
///
/// ```cpp
/// Element document = vtext(L"Hello world!");
/// ```
///
/// ### Output
///
/// ```bash
/// H
/// e
/// l
/// l
/// o
///
/// w
/// o
/// r
/// l
/// d
/// !
/// ```
Element vtext(std::wstring text) {
return std::make_shared<VText>(text);
}
2020-02-12 04:44:55 +08: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.