2015-04-06 16:41:33 -05:00
|
|
|
// 6 april 2015
|
2015-04-06 23:26:27 -05:00
|
|
|
#include "uipriv_windows.h"
|
2015-04-06 16:41:33 -05:00
|
|
|
|
|
|
|
#define MBTWC(str, wstr, bufsiz) MultiByteToWideChar(CP_UTF8, 0, str, -1, wstr, bufsiz)
|
|
|
|
|
|
|
|
WCHAR *toUTF16(const char *str)
|
|
|
|
{
|
|
|
|
WCHAR *wstr;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = MBTWC(str, NULL, 0);
|
|
|
|
if (n == 0)
|
|
|
|
logLastError("error figuring out number of characters to convert to in toUTF16()");
|
2015-04-07 22:40:18 -05:00
|
|
|
wstr = (WCHAR *) uiAlloc(n * sizeof (WCHAR), "WCHAR[]");
|
2015-04-06 16:41:33 -05:00
|
|
|
if (MBTWC(str, wstr, n) != n)
|
|
|
|
logLastError("error converting from UTF-8 to UTF-16 in toUTF16()");
|
|
|
|
return wstr;
|
|
|
|
}
|
2015-04-07 18:32:16 -05:00
|
|
|
|
|
|
|
// TODO this and resize(): initialize size and other values to avoid garbage on failure
|
|
|
|
intmax_t uiWindowsWindowTextWidth(HWND hwnd)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
WCHAR *text;
|
|
|
|
HDC dc;
|
|
|
|
HFONT prevfont;
|
2015-04-07 18:36:46 -05:00
|
|
|
SIZE size;
|
2015-04-07 18:32:16 -05:00
|
|
|
|
|
|
|
// TODO check for error
|
|
|
|
len = GetWindowTextLengthW(hwnd);
|
|
|
|
if (len == 0) // no text; nothing to do
|
|
|
|
return 0;
|
2015-04-07 22:40:18 -05:00
|
|
|
text = (WCHAR *) uiAlloc((len + 1) * sizeof (WCHAR), "WCHAR[]");
|
2015-04-07 18:32:16 -05:00
|
|
|
if (GetWindowText(hwnd, text, len + 1) == 0) // should only happen on error given explicit test for len == 0 above
|
|
|
|
logLastError("error getting window text in uiWindowsWindowTextWidth()");
|
2015-04-07 18:36:46 -05:00
|
|
|
dc = GetDC(hwnd);
|
2015-04-07 18:32:16 -05:00
|
|
|
if (dc == NULL)
|
|
|
|
logLastError("error getting DC in uiWindowsWindowTextWidth()");
|
2015-04-07 18:36:46 -05:00
|
|
|
prevfont = (HFONT) SelectObject(dc, hMessageFont);
|
|
|
|
if (prevfont == NULL)
|
2015-04-07 18:32:16 -05:00
|
|
|
logLastError("error loading control font into device context in uiWindowsWindowTextWidth()");
|
|
|
|
if (GetTextExtentPoint32W(dc, text, len, &size) == 0)
|
|
|
|
logLastError("error getting text extent point in uiWindowsWindowTextWidth()");
|
2015-04-07 18:36:46 -05:00
|
|
|
if (SelectObject(dc, prevfont) != hMessageFont)
|
2015-04-07 18:32:16 -05:00
|
|
|
logLastError("error restoring previous font into device context in uiWindowsWindowTextWidth()");
|
2015-04-07 18:36:46 -05:00
|
|
|
if (ReleaseDC(hwnd, dc) == 0)
|
2015-04-07 18:32:16 -05:00
|
|
|
logLastError("error releasing DC in uiWindowsWindowTextWidth()");
|
|
|
|
uiFree(text);
|
|
|
|
return size.cx;
|
|
|
|
}
|