button ideal size setting (helps inline block layouts a lot)

This commit is contained in:
Adam D. Ruppe 2021-11-28 09:05:28 -05:00
parent 671aacf86d
commit c2c50fd576
1 changed files with 23 additions and 0 deletions

View File

@ -10167,6 +10167,29 @@ class Button : MouseActivatedWidget {
});
}
override int flexBasisWidth() {
version(win32_widgets) {
SIZE size;
SendMessage(hwnd, BCM_GETIDEALSIZE, 0, cast(LPARAM) &size);
if(size.cx == 0)
goto fallback;
return size.cx + scaleWithDpi(16);
}
fallback:
return scaleWithDpi(cast(int) label.length * 8 + 16);
}
override int flexBasisHeight() {
version(win32_widgets) {
SIZE size;
SendMessage(hwnd, BCM_GETIDEALSIZE, 0, cast(LPARAM) &size);
if(size.cy == 0)
goto fallback;
return size.cy + scaleWithDpi(6);
}
fallback:
return defaultLineHeight + 4;
}
}
/++