2021-05-02 02:40:35 +08:00
|
|
|
#include <algorithm> // for max
|
|
|
|
#include <memory> // for make_shared
|
|
|
|
#include <string> // for wstring
|
|
|
|
|
|
|
|
#include "ftxui/dom/elements.hpp" // for Element, text, vtext
|
|
|
|
#include "ftxui/dom/node.hpp" // for Node
|
|
|
|
#include "ftxui/dom/requirement.hpp" // for Requirement
|
|
|
|
#include "ftxui/screen/box.hpp" // for Box
|
|
|
|
#include "ftxui/screen/screen.hpp" // for Screen
|
|
|
|
#include "ftxui/screen/string.hpp" // for wchar_width, wstring_width
|
2018-09-18 14:48:40 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2019-01-07 00:10:35 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
using ftxui::Screen;
|
2018-09-18 14:48:40 +08:00
|
|
|
|
|
|
|
class Text : public Node {
|
|
|
|
public:
|
2021-07-17 18:02:08 +08:00
|
|
|
Text(std::wstring text) : text_(text) {}
|
2018-09-18 14:48:40 +08:00
|
|
|
|
|
|
|
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_) {
|
2021-06-26 07:32:27 +08:00
|
|
|
const int width = wchar_width(c);
|
|
|
|
if (width >= 1) {
|
|
|
|
if (x > box_.x_max)
|
|
|
|
return;
|
|
|
|
screen.PixelAt(x, y).character = c;
|
|
|
|
} else {
|
|
|
|
screen.PixelAt(x - 1, y).character += c;
|
|
|
|
}
|
|
|
|
x += std::max(width, 0);
|
2018-09-18 14:48:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::wstring text_;
|
|
|
|
};
|
|
|
|
|
2020-06-02 05:40:32 +08:00
|
|
|
class VText : public Node {
|
|
|
|
public:
|
2021-07-17 18:02:08 +08:00
|
|
|
VText(std::wstring text) : text_(text) {
|
2020-06-02 05:40:32 +08:00
|
|
|
for (auto& c : text_)
|
|
|
|
width_ = std::max(width_, wchar_width(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
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!
|
|
|
|
/// ```
|
2020-05-21 02:36:47 +08:00
|
|
|
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
|
|
|
|
/// !
|
|
|
|
/// ```
|
2020-06-02 05:40:32 +08:00
|
|
|
Element vtext(std::wstring text) {
|
|
|
|
return std::make_shared<VText>(text);
|
|
|
|
}
|
|
|
|
|
2020-02-12 04:44:55 +08:00
|
|
|
} // namespace ftxui
|
2020-08-16 06:24:18 +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.
|