libui/windows/spinbox.cpp

205 lines
5.8 KiB
C++
Raw Normal View History

// 8 april 2015
#include "uipriv_windows.hpp"
struct uiSpinbox {
uiWindowsControl c;
HWND hwnd;
HWND updown;
2015-05-19 17:17:30 -05:00
void (*onChanged)(uiSpinbox *, void *);
void *onChangedData;
BOOL inhibitChanged;
HWND parent;
};
static void onDestroy(uiSpinbox *);
2015-08-31 11:33:44 -05:00
uiWindowsDefineControlWithOnDestroy(
uiSpinbox, // type name
onDestroy(me); // on destroy
2015-08-31 11:33:44 -05:00
)
2015-05-19 17:17:30 -05:00
// utility functions
static intmax_t value(uiSpinbox *s)
{
BOOL neededCap = FALSE;
LRESULT val;
// This verifies the value put in, capping it automatically.
// We don't need to worry about checking for an error; that flag should really be called "did we have to cap?".
// We DO need to set the value in case of a cap though.
val = SendMessageW(s->updown, UDM_GETPOS32, 0, (LPARAM) (&neededCap));
2015-05-19 17:17:30 -05:00
if (neededCap) {
s->inhibitChanged = TRUE;
SendMessageW(s->updown, UDM_SETPOS32, 0, (LPARAM) val);
2015-05-19 17:17:30 -05:00
s->inhibitChanged = FALSE;
}
return (intmax_t) val;
}
// control implementation
static BOOL onWM_COMMAND(uiControl *c, HWND hwnd, WORD code, LRESULT *lResult)
2015-05-19 17:17:30 -05:00
{
uiSpinbox *s = (uiSpinbox *) c;
2015-06-05 15:13:03 -05:00
WCHAR *wtext;
2015-05-19 17:17:30 -05:00
if (code != EN_CHANGE)
return FALSE;
if (s->inhibitChanged)
return FALSE;
2015-06-05 15:13:03 -05:00
// We want to allow typing negative numbers; the natural way to do so is to start with a -.
// However, if we just have the code below, the up-down will catch the bare - and reject it.
// Let's fix that.
// This won't handle leading spaces, but spaces aren't allowed *anyway*.
wtext = windowText(s->hwnd);
if (wcscmp(wtext, L"-") == 0) {
uiFree(wtext);
return TRUE;
}
2015-09-02 18:46:10 -05:00
uiFree(wtext);
2015-05-19 17:17:30 -05:00
// value() does the work for us
value(s);
(*(s->onChanged))(s, s->onChangedData);
2015-05-19 17:17:30 -05:00
return TRUE;
}
static void onDestroy(uiSpinbox *s)
{
uiWindowsUnregisterWM_COMMANDHandler(s->hwnd);
uiWindowsEnsureDestroyWindow(s->updown);
}
static void spinboxCommitSetParent(uiWindowsControl *c, HWND parent)
{
uiSpinbox *s = uiSpinbox(c);
s->parent = parent;
uiWindowsEnsureSetParent(s->hwnd, s->parent);
uiWindowsEnsureSetParent(s->updown, s->parent);
}
// 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 minimumSize(uiWindowsControl *c, uiWindowsSizing *d, intmax_t *width, intmax_t *height)
{
*width = uiWindowsDlgUnitsToX(entryWidth, d->BaseX);
*height = uiWindowsDlgUnitsToY(entryHeight, d->BaseY);
}
// an up-down control will only properly position itself the first time
// stupidly, there are no messages to force a size calculation, nor can I seem to reset the buddy window to force a new position
// alas, we have to make a new up/down control each time :(
static void recreateUpDown(uiSpinbox *s)
{
2015-05-20 11:24:06 -05:00
BOOL preserve = FALSE;
intmax_t current;
// Microsoft's commctrl.h says to use this type
2015-05-20 11:24:06 -05:00
INT min, max;
2015-05-20 11:24:06 -05:00
if (s->updown != NULL) {
preserve = TRUE;
current = value(s);
SendMessageW(s->updown, UDM_GETRANGE32, (WPARAM) (&min), (LPARAM) (&max));
uiWindowsEnsureDestroyWindow(s->updown);
2015-05-20 11:24:06 -05:00
}
s->inhibitChanged = TRUE;
s->updown = CreateWindowExW(0,
UPDOWN_CLASSW, L"",
// no WS_VISIBLE; we set visibility ourselves
2015-06-05 15:35:56 -05:00
// up-down control should not be a tab stop
WS_CHILD | UDS_ALIGNRIGHT | UDS_ARROWKEYS | UDS_HOTTRACK | UDS_NOTHOUSANDS | UDS_SETBUDDYINT,
// this is important; it's necessary for autosizing to work
0, 0, 0, 0,
s->parent, NULL, hInstance, NULL);
if (s->updown == NULL)
logLastError(L"error creating updown");
SendMessageW(s->updown, UDM_SETBUDDY, (WPARAM) (s->hwnd), 0);
2015-05-20 11:24:06 -05:00
if (preserve) {
SendMessageW(s->updown, UDM_SETRANGE32, (WPARAM) min, (LPARAM) max);
SendMessageW(s->updown, UDM_SETPOS32, 0, (LPARAM) current);
}
2015-06-03 14:58:47 -05:00
// preserve the z-order
uiWindowsRearrangeControlIDsZOrder(uiControl(s));
// TODO properly show/enable
ShowWindow(s->updown, SW_SHOW);
2015-05-20 11:24:06 -05:00
s->inhibitChanged = FALSE;
}
2015-09-01 06:21:18 -05:00
static void spinboxRelayout(uiWindowsControl *c, intmax_t x, intmax_t y, intmax_t width, intmax_t height)
{
uiSpinbox *s = uiSpinbox(c);
2016-04-23 21:23:07 -05:00
uiWindowsEnsureMoveWindowDuringResize(s->hwnd, x, y, width, height);
recreateUpDown(s);
}
static void spinboxAssignControlIDZOrder(uiWindowsControl *c, LONG_PTR *controlID, HWND *insertAfter)
{
uiSpinbox *s = uiSpinbox(c);
2015-06-03 14:58:47 -05:00
uiWindowsEnsureAssignControlIDZOrder(s->hwnd, *controlID, *insertAfter);
uiWindowsEnsureAssignControlIDZOrder(s->updown, *controlID + 1, s->hwnd);
*controlID += 2;
*insertAfter = s->updown;
2015-06-03 14:58:47 -05:00
}
2015-05-19 17:17:30 -05:00
static void defaultOnChanged(uiSpinbox *s, void *data)
{
// do nothing
}
intmax_t uiSpinboxValue(uiSpinbox *s)
2015-05-19 17:17:30 -05:00
{
return value(s);
}
void uiSpinboxSetValue(uiSpinbox *s, intmax_t value)
2015-05-20 11:24:06 -05:00
{
s->inhibitChanged = TRUE;
SendMessageW(s->updown, UDM_SETPOS32, 0, (LPARAM) value);
s->inhibitChanged = FALSE;
}
void uiSpinboxOnChanged(uiSpinbox *s, void (*f)(uiSpinbox *, void *), void *data)
2015-05-19 17:17:30 -05:00
{
s->onChanged = f;
s->onChangedData = data;
}
2015-05-20 12:25:45 -05:00
uiSpinbox *uiNewSpinbox(intmax_t min, intmax_t max)
{
uiSpinbox *s;
2015-06-05 15:52:21 -05:00
if (min >= max)
complain("error: min >= max in uiNewSpinbox()");
s = (uiSpinbox *) uiNewControl(uiSpinbox);
2015-08-31 11:33:44 -05:00
s->hwnd = uiWindowsEnsureCreateControlHWND(WS_EX_CLIENTEDGE,
L"edit", L"",
2015-06-05 15:13:03 -05:00
// don't use ES_NUMBER; it doesn't allow typing in a leading -
ES_AUTOHSCROLL | ES_LEFT | ES_NOHIDESEL | WS_TABSTOP,
hInstance, NULL,
TRUE);
uiWindowsRegisterWM_COMMANDHandler(s->hwnd, onWM_COMMAND, uiControl(s));
uiSpinboxOnChanged(s, defaultOnChanged, NULL);
s->parent = utilWindow;
recreateUpDown(s);
2015-05-20 12:25:45 -05:00
s->inhibitChanged = TRUE;
SendMessageW(s->updown, UDM_SETRANGE32, (WPARAM) min, (LPARAM) max);
SendMessageW(s->updown, UDM_SETPOS32, 0, (LPARAM) min);
s->inhibitChanged = FALSE;
2015-08-31 11:33:44 -05:00
uiWindowsFinishNewControl(s, uiSpinbox);
uiWindowsControl(s)->CommitSetParent = spinboxCommitSetParent;
2015-09-01 06:21:18 -05:00
uiWindowsControl(s)->Relayout = spinboxRelayout;
uiWindowsControl(s)->AssignControlIDZOrder = spinboxAssignControlIDZOrder;
return s;
}