libui/windows/combobox.cpp

125 lines
2.9 KiB
C++
Raw Normal View History

2015-05-20 16:09:58 -05:00
// 20 may 2015
2016-04-22 19:14:12 -05:00
#include "uipriv_windows.hpp"
2015-05-20 16:09:58 -05:00
// TODO
// - is there extra space on the bottom?
2015-06-02 11:55:12 -05:00
// we as Common Controls 6 users don't need to worry about the height of comboboxes; see http://blogs.msdn.com/b/oldnewthing/archive/2006/03/10/548537.aspx
2015-05-22 08:43:45 -05:00
struct uiCombobox {
uiWindowsControl c;
2015-05-20 16:09:58 -05:00
HWND hwnd;
void (*onSelected)(uiCombobox *, void *);
void *onSelectedData;
2015-05-20 16:09:58 -05:00
};
// TODO: NOT triggered on entering text
static BOOL onWM_COMMAND(uiControl *cc, HWND hwnd, WORD code, LRESULT *lResult)
{
uiCombobox *c = uiCombobox(cc);
if (code != CBN_SELCHANGE)
return FALSE;
(*(c->onSelected))(c, c->onSelectedData);
*lResult = 0;
return TRUE;
}
void uiComboboxDestroy(uiControl *cc)
{
uiCombobox *c = uiCombobox(cc);
uiWindowsUnregisterWM_COMMANDHandler(c->hwnd);
uiWindowsEnsureDestroyWindow(c->hwnd);
uiFreeControl(uiControl(c));
}
2016-04-29 12:50:08 -05:00
uiWindowsControlAllDefaultsExceptDestroy(uiCombobox)
2015-05-20 16:09:58 -05:00
// from http://msdn.microsoft.com/en-us/library/windows/desktop/dn742486.aspx#sizingandspacing
#define comboboxWidth 107 /* this is actually the shorter progress bar width, but Microsoft only indicates as wide as necessary; TODO */
2015-05-20 16:09:58 -05:00
#define comboboxHeight 14
static void uiComboboxMinimumSize(uiWindowsControl *cc, intmax_t *width, intmax_t *height)
2015-05-20 16:09:58 -05:00
{
uiCombobox *c = uiCombobox(cc);
uiWindowsSizing sizing;
int x, y;
x = comboboxWidth;
y = comboboxHeight;
uiWindowsGetSizing(c->hwnd, &sizing);
uiWindowsSizingDlgUnitsToPixels(&sizing, &x, &y);
*width = x;
*height = y;
2015-05-20 16:09:58 -05:00
}
static void defaultOnSelected(uiCombobox *c, void *data)
{
// do nothing
}
void uiComboboxAppend(uiCombobox *c, const char *text)
2015-05-20 16:09:58 -05:00
{
WCHAR *wtext;
LRESULT res;
wtext = toUTF16(text);
res = SendMessageW(c->hwnd, CB_ADDSTRING, 0, (LPARAM) wtext);
if (res == (LRESULT) CB_ERR)
2016-04-22 19:14:12 -05:00
logLastError(L"error appending item to uiCombobox");
2015-05-20 16:09:58 -05:00
else if (res == (LRESULT) CB_ERRSPACE)
2016-04-22 19:14:12 -05:00
logLastError(L"memory exhausted appending item to uiCombobox");
2015-05-20 16:09:58 -05:00
uiFree(wtext);
}
intmax_t uiComboboxSelected(uiCombobox *c)
{
LRESULT n;
n = SendMessage(c->hwnd, CB_GETCURSEL, 0, 0);
if (n == (LRESULT) CB_ERR)
return -1;
return (intmax_t) n;
}
void uiComboboxSetSelected(uiCombobox *c, intmax_t n)
{
// TODO error check
SendMessageW(c->hwnd, CB_SETCURSEL, (WPARAM) n, 0);
}
void uiComboboxOnSelected(uiCombobox *c, void (*f)(uiCombobox *c, void *data), void *data)
{
c->onSelected = f;
c->onSelectedData = data;
}
static uiCombobox *finishNewCombobox(DWORD style)
2015-05-20 16:09:58 -05:00
{
uiCombobox *c;
2015-05-20 16:09:58 -05:00
uiWindowsNewControl(uiCombobox, c);
2015-05-20 16:09:58 -05:00
2015-08-31 11:33:44 -05:00
c->hwnd = uiWindowsEnsureCreateControlHWND(WS_EX_CLIENTEDGE,
L"combobox", L"",
style | WS_TABSTOP,
hInstance, NULL,
TRUE);
2015-05-20 16:09:58 -05:00
uiWindowsRegisterWM_COMMANDHandler(c->hwnd, onWM_COMMAND, uiControl(c));
uiComboboxOnSelected(c, defaultOnSelected, NULL);
return c;
2015-05-20 16:09:58 -05:00
}
uiCombobox *uiNewCombobox(void)
{
return finishNewCombobox(CBS_DROPDOWNLIST);
}
uiCombobox *uiNewEditableCombobox(void)
{
return finishNewCombobox(CBS_DROPDOWN);
}