mirror of https://github.com/bsnes-emu/bsnes.git
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
#if defined(Hiro_Frame)
|
|
|
|
namespace hiro {
|
|
|
|
auto pFrame::construct() -> void {
|
|
hwnd = CreateWindow(L"BUTTON", L"",
|
|
WS_CHILD | BS_GROUPBOX,
|
|
0, 0, 0, 0, _parentHandle(), nullptr, GetModuleHandle(0), 0);
|
|
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&reference);
|
|
pWidget::_setState();
|
|
setText(state().text);
|
|
}
|
|
|
|
auto pFrame::destruct() -> void {
|
|
DestroyWindow(hwnd);
|
|
}
|
|
|
|
auto pFrame::append(sLayout layout) -> void {
|
|
}
|
|
|
|
auto pFrame::remove(sLayout layout) -> void {
|
|
}
|
|
|
|
auto pFrame::setEnabled(bool enabled) -> void {
|
|
if(auto layout = state().layout) layout->setEnabled(layout->enabled());
|
|
pWidget::setEnabled(enabled);
|
|
}
|
|
|
|
auto pFrame::setGeometry(Geometry geometry) -> void {
|
|
bool empty = !state().text;
|
|
auto size = pFont::size(hfont, state().text);
|
|
pWidget::setGeometry({
|
|
geometry.x(),
|
|
geometry.y() - (empty ? size.height() >> 1 : 0),
|
|
geometry.width(),
|
|
geometry.height() + (empty ? size.height() >> 1 : 0)
|
|
});
|
|
if(auto layout = state().layout) {
|
|
if(empty) size.setHeight(1);
|
|
layout->setGeometry({
|
|
geometry.x() + 1,
|
|
geometry.y() + size.height(),
|
|
geometry.width() - 2,
|
|
geometry.height() - (size.height() + 2)
|
|
});
|
|
}
|
|
}
|
|
|
|
auto pFrame::setText(const string& text) -> void {
|
|
SetWindowText(hwnd, utf16_t(text));
|
|
}
|
|
|
|
auto pFrame::setVisible(bool visible) -> void {
|
|
if(auto layout = state().layout) layout->setVisible(layout->visible());
|
|
pWidget::setVisible(visible);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|