libui/windows/separator.cpp

45 lines
973 B
C++
Raw Normal View History

2015-05-20 13:08:34 -05:00
// 20 may 2015
2016-04-22 19:03:10 -05:00
#include "uipriv_windows.hpp"
2015-05-20 13:08:34 -05:00
// references:
// - http://stackoverflow.com/questions/2892703/how-do-i-draw-separators
// - https://msdn.microsoft.com/en-us/library/windows/desktop/dn742405%28v=vs.85%29.aspx
struct uiSeparator {
uiWindowsControl c;
2015-05-20 13:08:34 -05:00
HWND hwnd;
};
uiWindowsControlAllDefaults(uiSeparator)
2015-06-02 17:48:41 -05:00
// via https://msdn.microsoft.com/en-us/library/windows/desktop/bb226818%28v=vs.85%29.aspx
#define separatorHeight 1
static void uiSeparatorMinimumSize(uiWindowsControl *c, int *width, int *height)
2015-05-20 13:08:34 -05:00
{
uiSeparator *s = uiSeparator(c);
uiWindowsSizing sizing;
int y;
2015-05-20 13:08:34 -05:00
*width = 1; // TODO
y = separatorHeight;
uiWindowsGetSizing(s->hwnd, &sizing);
uiWindowsSizingDlgUnitsToPixels(&sizing, NULL, &y);
*height = y;
2015-05-20 13:08:34 -05:00
}
uiSeparator *uiNewHorizontalSeparator(void)
{
uiSeparator *s;
uiWindowsNewControl(uiSeparator, s);
2015-08-31 11:33:44 -05:00
s->hwnd = uiWindowsEnsureCreateControlHWND(0,
L"static", L"",
SS_ETCHEDHORZ,
hInstance, NULL,
TRUE);
2015-05-20 13:08:34 -05:00
return s;
2015-05-20 13:08:34 -05:00
}