2015-04-11 21:22:19 -05:00
|
|
|
// 11 april 2015
|
|
|
|
#include "uipriv_windows.h"
|
|
|
|
|
|
|
|
struct label {
|
2015-04-16 08:20:00 -05:00
|
|
|
uiLabel l;
|
2015-04-17 10:13:42 -05:00
|
|
|
HWND hwnd;
|
2015-04-11 21:22:19 -05:00
|
|
|
};
|
|
|
|
|
2015-05-29 17:03:24 -05:00
|
|
|
uiDefineControlType(uiLabel, uiTypeLabel, struct label)
|
2015-04-11 21:22:19 -05:00
|
|
|
|
|
|
|
// via http://msdn.microsoft.com/en-us/library/windows/desktop/dn742486.aspx#sizingandspacing
|
|
|
|
#define labelHeight 8
|
|
|
|
|
2015-05-04 13:56:26 -05:00
|
|
|
static void labelPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
|
2015-04-11 21:22:19 -05:00
|
|
|
{
|
2015-04-17 10:13:42 -05:00
|
|
|
struct label *l = (struct label *) c;
|
|
|
|
|
|
|
|
*width = uiWindowsWindowTextWidth(l->hwnd);
|
2015-05-07 13:33:46 -05:00
|
|
|
*height = uiWindowsDlgUnitsToY(labelHeight, d->Sys->BaseY);
|
2015-04-11 21:22:19 -05:00
|
|
|
}
|
|
|
|
|
2015-04-17 10:13:42 -05:00
|
|
|
static char *labelText(uiLabel *l)
|
2015-04-16 08:20:00 -05:00
|
|
|
{
|
|
|
|
return uiWindowsControlText(uiControl(l));
|
|
|
|
}
|
|
|
|
|
2015-04-17 10:13:42 -05:00
|
|
|
static void labelSetText(uiLabel *l, const char *text)
|
2015-04-16 08:20:00 -05:00
|
|
|
{
|
|
|
|
uiWindowsControlSetText(uiControl(l), text);
|
|
|
|
}
|
|
|
|
|
2015-04-16 08:33:21 -05:00
|
|
|
uiLabel *uiNewLabel(const char *text)
|
2015-04-11 21:22:19 -05:00
|
|
|
{
|
|
|
|
struct label *l;
|
|
|
|
WCHAR *wtext;
|
|
|
|
|
2015-05-29 17:03:24 -05:00
|
|
|
l = (struct label *) uiWindowsNewSingleHWNDControl(uiTypeLabel());
|
2015-04-16 08:20:00 -05:00
|
|
|
|
2015-04-11 21:22:19 -05:00
|
|
|
wtext = toUTF16(text);
|
2015-05-29 17:03:24 -05:00
|
|
|
l->hwnd = uiWindowsNewSingleHWNDControl(0,
|
|
|
|
L"static", wtext,
|
|
|
|
// SS_LEFTNOWORDWRAP clips text past the end; SS_NOPREFIX avoids accelerator translation
|
|
|
|
// controls are vertically aligned to the top by default (thanks Xeek in irc.freenode.net/#winapi)
|
|
|
|
SS_LEFTNOWORDWRAP | SS_NOPREFIX,
|
|
|
|
hInstance, NULL,
|
|
|
|
TRUE);
|
2015-04-11 21:22:19 -05:00
|
|
|
uiFree(wtext);
|
|
|
|
|
2015-05-04 13:56:26 -05:00
|
|
|
uiControl(l)->PreferredSize = labelPreferredSize;
|
2015-04-11 21:22:19 -05:00
|
|
|
|
2015-04-17 10:13:42 -05:00
|
|
|
uiLabel(l)->Text = labelText;
|
|
|
|
uiLabel(l)->SetText = labelSetText;
|
2015-04-11 21:22:19 -05:00
|
|
|
|
2015-04-16 08:20:00 -05:00
|
|
|
return uiLabel(l);
|
2015-04-11 21:22:19 -05:00
|
|
|
}
|