FTXUI/src/ftxui/dom
Arthur Sonzogni 3b4ab618a3
Prefer std::string over std::wstring. (#179)
In the past, FTXUI switched from std::string to std::wstring to support
fullwidth characters. The reasons was that fullwidth characters can be
stored inside a single wchar_t.

Then FTXUI added support for combining characters. A single glygh
doesn't even fit a wchar_t. Instead, a glyph can be arbitrary large.

The usage of wstring doesn't really fit the new model and have several
drawbacks:
1. It doesn't simplify the implementation of FTXUI, because of combining
   characters.
2. It reduces drawing performance by 2x.
3. It increase Screen's memory allocation by 2x.

This patch converts FTXUI to use std::string internally. It now exposes
std::string based API. The std::wstring API remains, but is now
deprecated.

Tests and examples haven't been update to show the breakage is limited.
They will be updated in a second set of patches.

Bug: https://github.com/ArthurSonzogni/FTXUI/issues/153
Co-authored-by: Tushar Maheshwari <tushar27192@gmail.com>
2021-08-08 23:25:20 +02:00
..
benchmark_test.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
blink.cpp Miscellaneous refactoring (#160) 2021-07-20 09:59:47 +02:00
bold.cpp Miscellaneous refactoring (#160) 2021-07-20 09:59:47 +02:00
border.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
clear_under.cpp Add focusable Renderer. (#173) 2021-08-06 20:32:33 +02:00
color.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
composite_decorator.cpp Improve the documentation. 2021-07-11 12:23:42 +02:00
dbox.cpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
dim.cpp Miscellaneous refactoring (#160) 2021-07-20 09:59:47 +02:00
flex.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
frame.cpp Miscellaneous refactoring (#160) 2021-07-20 09:59:47 +02:00
gauge_test.cpp Use IWYU. 2021-05-01 23:19:07 +02:00
gauge.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
graph.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
hbox_test.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
hbox.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
hflow.cpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
inverted.cpp Add focusable Renderer. (#173) 2021-08-06 20:32:33 +02:00
node_decorator.cpp Pass -Wshadow (#97) 2021-05-16 17:18:11 +02:00
node_decorator.hpp Add focusable Renderer. (#173) 2021-08-06 20:32:33 +02:00
node.cpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
paragraph.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
reflect.cpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
separator.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
size.cpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
spinner.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
text_test.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
text.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
underlined.cpp Add focusable Renderer. (#173) 2021-08-06 20:32:33 +02:00
util.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
vbox_test.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00
vbox.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00