45 lines
973 B
C++
45 lines
973 B
C++
// 20 may 2015
|
|
#include "uipriv_windows.hpp"
|
|
|
|
// 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;
|
|
HWND hwnd;
|
|
};
|
|
|
|
uiWindowsControlAllDefaults(uiSeparator)
|
|
|
|
// 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)
|
|
{
|
|
uiSeparator *s = uiSeparator(c);
|
|
uiWindowsSizing sizing;
|
|
int y;
|
|
|
|
*width = 1; // TODO
|
|
y = separatorHeight;
|
|
uiWindowsGetSizing(s->hwnd, &sizing);
|
|
uiWindowsSizingDlgUnitsToPixels(&sizing, NULL, &y);
|
|
*height = y;
|
|
}
|
|
|
|
uiSeparator *uiNewHorizontalSeparator(void)
|
|
{
|
|
uiSeparator *s;
|
|
|
|
uiWindowsNewControl(uiSeparator, s);
|
|
|
|
s->hwnd = uiWindowsEnsureCreateControlHWND(0,
|
|
L"static", L"",
|
|
SS_ETCHEDHORZ,
|
|
hInstance, NULL,
|
|
TRUE);
|
|
|
|
return s;
|
|
}
|