libui/redo/windows/entry.c

129 lines
3.0 KiB
C
Raw Normal View History

2015-04-08 22:43:01 -05:00
// 8 april 2015
#include "uipriv_windows.h"
struct entry {
uiEntry e;
HWND hwnd;
void (*onChanged)(uiEntry *, void *);
void *onChangedData;
BOOL inhibitChanged;
void (*baseCommitDestroy)(uiControl *);
2015-04-08 22:43:01 -05:00
};
uiDefineControlType(uiEntry, uiTypeEntry, struct entry)
static BOOL onWM_COMMAND(uiControl *c, HWND hwnd, WORD code, LRESULT *lResult)
2015-04-08 22:43:01 -05:00
{
struct entry *e = (struct entry *) c;
if (code != EN_CHANGE)
return FALSE;
if (e->inhibitChanged)
return FALSE;
(*(e->onChanged))(uiEntry(e), e->onChangedData);
*lResult = 0;
return TRUE;
2015-04-08 22:43:01 -05:00
}
static void entryCommitDestroy(uiControl *c)
2015-04-08 22:43:01 -05:00
{
struct entry *e = (struct entry *) c;
2015-04-08 22:43:01 -05:00
uiWindowsUnregisterWM_COMMANDHandler(e->hwnd);
(*(e->baseCommitDestroy))(uiControl(e));
2015-04-08 22:43:01 -05:00
}
static uintptr_t entryHandle(uiControl *c)
{
struct entry *e = (struct entry *) c;
return (uintptr_t) (e->hwnd);
}
2015-04-08 22:43:01 -05:00
// 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 entryPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
2015-04-08 22:43:01 -05:00
{
2015-05-07 13:33:46 -05:00
*width = uiWindowsDlgUnitsToX(entryWidth, d->Sys->BaseX);
*height = uiWindowsDlgUnitsToY(entryHeight, d->Sys->BaseY);
2015-04-08 22:43:01 -05:00
}
static void defaultOnChanged(uiEntry *e, void *data)
{
// do nothing
}
static char *entryText(uiEntry *e)
{
return uiWindowsControlText(uiControl(e));
}
static void entrySetText(uiEntry *ee, const char *text)
{
struct entry *e = (struct entry *) ee;
// doing this raises an EN_CHANGED
e->inhibitChanged = TRUE;
uiWindowsControlSetText(uiControl(e), text);
e->inhibitChanged = FALSE;
}
static void entryOnChanged(uiEntry *ee, void (*f)(uiEntry *, void *), void *data)
{
struct entry *e = (struct entry *) ee;
e->onChanged = f;
e->onChangedData = data;
}
static int entryReadOnly(uiEntry *ee)
{
struct entry *e = (struct entry *) ee;
return (getStyle(e->hwnd) & ES_READONLY) != 0;
}
static void entrySetReadOnly(uiEntry *ee, int readonly)
{
struct entry *e = (struct entry *) ee;
WPARAM ro;
ro = (WPARAM) FALSE;
if (readonly)
ro = (WPARAM) TRUE;
if (SendMessage(e->hwnd, EM_SETREADONLY, ro, 0) == 0)
logLastError("error making uiEntry read-only in entrySetReadOnly()");
}
2015-04-16 08:33:21 -05:00
uiEntry *uiNewEntry(void)
2015-04-08 22:43:01 -05:00
{
struct entry *e;
e = (struct entry *) uiWindowsNewSingleHWNDControl(uiTypeEntry());
e->hwnd = uiWindowsNewSingleHWNDControl(WS_EX_CLIENTEDGE,
L"edit", L"",
ES_AUTOHSCROLL | ES_LEFT | ES_NOHIDESEL | WS_TABSTOP,
hInstance, NULL,
TRUE);
uiWindowsRegisterWM_COMMANDHandler(e->hwnd, onWM_COMMAND, uiControl(e));
e->onChanged = defaultOnChanged;
uiControl(e)->Handle = entryHandle;
uiControl(e)->PreferredSize = entryPreferredSize;
e->baseCommitDestroy = uiControl(e)->CommitDestroy;
uiControl(e)->CommitDestroy = entryCommitDestroy;
2015-04-08 22:43:01 -05:00
uiEntry(e)->Text = entryText;
uiEntry(e)->SetText = entrySetText;
uiEntry(e)->OnChanged = entryOnChanged;
uiEntry(e)->ReadOnly = entryReadOnly;
uiEntry(e)->SetReadOnly = entrySetReadOnly;
return uiEntry(e);
}