| 894 | } |
| 895 | |
| 896 | CLabelResult CUi::DoLabel_AutoLineSize(const char *pText, float FontSize, int Align, CUIRect *pRect, float LineSize, const SLabelProperties &LabelProps) const |
| 897 | { |
| 898 | CUIRect LabelRect; |
| 899 | pRect->HSplitTop(LineSize, &LabelRect, pRect); |
| 900 | |
| 901 | return DoLabel(&LabelRect, pText, FontSize, Align); |
| 902 | } |
| 903 | |
| 904 | bool CUi::DoEditBox(CLineInput *pLineInput, const CUIRect *pRect, float FontSize, int Corners, const std::vector<STextColorSplit> &vColorSplits) |
| 905 | { |
no test coverage detected