| 166 | } |
| 167 | |
| 168 | static float internalCalcStringWidth(std::string_view s, std::string_view fontName, float fontSize) |
| 169 | { |
| 170 | auto label = _createLabel(std::string{s}, fontName, fontSize); |
| 171 | return label->getContentSize().width; |
| 172 | } |
| 173 | |
| 174 | static std::string internalUTF8MoveLeft(std::string_view utf8Text, int length /* default utf8Text.length() */) |
| 175 | { |
no test coverage detected