FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
string.hpp
Go to the documentation of this file.
1// Copyright 2020 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4#ifndef FTXUI_SCREEN_STRING_HPP
5#define FTXUI_SCREEN_STRING_HPP
6
7#include <string> // for string, wstring, to_string
8#include <string_view> // for string_view
9#include <vector> // for vector
10
11#include "ftxui/util/export.hpp"
12
13namespace ftxui {
14FTXUI_EXPORT(SCREEN) std::string to_string(std::wstring_view s);
15FTXUI_EXPORT(SCREEN) std::wstring to_wstring(std::string_view s);
16
17template <typename T>
18std::wstring to_wstring(T s) {
19 return to_wstring(std::string_view(std::to_string(s)));
20}
21template <>
22inline std::wstring to_wstring(const char* s) {
23 return to_wstring(std::string_view(s));
24}
25
26FTXUI_EXPORT(SCREEN) int string_width(std::string_view);
27
28// Split the string into a its glyphs. An empty one is inserted ater fullwidth
29// ones.
30FTXUI_EXPORT(SCREEN)
31std::vector<std::string> Utf8ToGlyphs(std::string_view input);
32
33// Map every cells drawn by |input| to their corresponding Glyphs. Half-size
34// Glyphs takes one cell, full-size Glyphs take two cells.
35FTXUI_EXPORT(SCREEN)
36std::vector<int> CellToGlyphIndex(std::string_view input);
37
38} // namespace ftxui
39
40#endif /* end of include guard: FTXUI_SCREEN_STRING_HPP */
#define FTXUI_EXPORT(component)
Definition export.hpp:24
The FTXUI ftxui:: namespace.
Definition animation.hpp:11
FTXUI_EXPORT(SCREEN) int string_width(std std::vector< std::string > Utf8ToGlyphs(std::string_view input)
Definition string.cpp:1387
int string_width(std::string_view input)
Definition string.cpp:1337
std::string to_string(std::wstring_view s)
Convert a std::wstring into a UTF8 std::string.
Definition string.cpp:1594
std::vector< int > CellToGlyphIndex(std::string_view input)
Definition string.cpp:1494
FTXUI_EXPORT(SCREEN) std FTXUI_EXPORT(SCREEN) std std::wstring to_wstring(T s)
Definition string.hpp:18