74 lines
1.6 KiB
C
74 lines
1.6 KiB
C
// 8 april 2015
|
|
#include "uipriv_windows.h"
|
|
|
|
struct entry {
|
|
uiEntry e;
|
|
HWND hwnd;
|
|
};
|
|
|
|
static BOOL onWM_COMMAND(uiControl *c, WORD code, LRESULT *lResult)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static BOOL onWM_NOTIFY(uiControl *c, NMHDR *nm, LRESULT *lResult)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static void onDestroy(void *data)
|
|
{
|
|
struct entry *e = (struct entry *) data;
|
|
|
|
uiFree(e);
|
|
}
|
|
|
|
// from http://msdn.microsoft.com/en-us/library/windows/desktop/dn742486.aspx#sizingandspacing
|
|
#define entryWidth 107 /* this is actually the shorter progress bar width, but Microsoft only indicates as wide as necessary */
|
|
#define entryHeight 14
|
|
|
|
static void preferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
|
|
{
|
|
*width = uiDlgUnitsToX(entryWidth, d->sys->baseX);
|
|
*height = uiDlgUnitsToY(entryHeight, d->sys->baseY);
|
|
}
|
|
|
|
static char *entryText(uiEntry *e)
|
|
{
|
|
return uiWindowsControlText(uiControl(e));
|
|
}
|
|
|
|
static void entrySetText(uiEntry *e, const char *text)
|
|
{
|
|
uiWindowsControlSetText(uiControl(e), text);
|
|
}
|
|
|
|
uiEntry *uiNewEntry(void)
|
|
{
|
|
struct entry *e;
|
|
uiWindowsNewControlParams p;
|
|
|
|
e = uiNew(struct entry);
|
|
|
|
p.dwExStyle = WS_EX_CLIENTEDGE;
|
|
p.lpClassName = L"edit";
|
|
p.lpWindowName = L"";
|
|
p.dwStyle = ES_AUTOHSCROLL | ES_LEFT | ES_NOHIDESEL | WS_TABSTOP;
|
|
p.hInstance = hInstance;
|
|
p.useStandardControlFont = TRUE;
|
|
p.onWM_COMMAND = onWM_COMMAND;
|
|
p.onWM_NOTIFY = onWM_NOTIFY;
|
|
p.onDestroy = onDestroy;
|
|
p.onDestroyData = e;
|
|
uiWindowsNewControl(uiControl(e), &p);
|
|
|
|
e->hwnd = HWND(e);
|
|
|
|
uiControl(e)->PreferredSize = preferredSize;
|
|
|
|
uiEntry(e)->Text = entryText;
|
|
uiEntry(e)->SetText = entrySetText;
|
|
|
|
return uiEntry(e);
|
|
}
|