This commit is contained in:
Weijie Zhao 2021-01-02 10:21:30 -05:00 committed by GitHub
commit 6b83f0bd06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 6 deletions

View File

@ -48,8 +48,11 @@ int uiWindowsWindowTextWidth(HWND hwnd)
size.cx = 0; size.cx = 0;
size.cy = 0; size.cy = 0;
//save the max width of multiline text
auto maxWidth = size.cx;
text = windowTextAndLen(hwnd, &len); text = windowTextAndLen(hwnd, &len);
WCHAR *start = text, *end = text;
if (len == 0) // no text; nothing to do if (len == 0) // no text; nothing to do
goto noTextOrError; goto noTextOrError;
@ -66,12 +69,31 @@ int uiWindowsWindowTextWidth(HWND hwnd)
ReleaseDC(hwnd, dc); ReleaseDC(hwnd, dc);
goto noTextOrError; goto noTextOrError;
} }
if (GetTextExtentPoint32W(dc, text, len, &size) == 0) {
logLastError(L"error getting text extent point"); // calculate width of each line
// continue anyway, assuming size is 0 while(start != text + len) {
size.cx = 0; while(*start == '\n' && start != text + len) {
size.cy = 0; start++;
}
if(start == text + len) {
break;
}
end = start + 1;
while(*end != '\n' && end != text + len){
end++;
}
if (GetTextExtentPoint32W(dc, start, end - start, &size) == 0) {
logLastError(L"error getting text extent point");
// continue anyway, assuming size is 0
size.cx = 0;
size.cy = 0;
}
if(size.cx > maxWidth) {
maxWidth = size.cx;
}
start = end;
} }
// continue on errors; we got what we want // continue on errors; we got what we want
if (SelectObject(dc, prevfont) != hMessageFont) if (SelectObject(dc, prevfont) != hMessageFont)
logLastError(L"error restoring previous font into device context"); logLastError(L"error restoring previous font into device context");
@ -79,7 +101,7 @@ int uiWindowsWindowTextWidth(HWND hwnd)
logLastError(L"error releasing DC"); logLastError(L"error releasing DC");
uiprivFree(text); uiprivFree(text);
return size.cx; return maxWidth;
noTextOrError: noTextOrError:
uiprivFree(text); uiprivFree(text);