mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
36 lines
864 B
C++
36 lines
864 B
C++
|
#include "container.hpp"
|
||
|
|
||
|
#include <algorithm>
|
||
|
|
||
|
namespace LuaUi
|
||
|
{
|
||
|
void LuaContainer::updateChildren()
|
||
|
{
|
||
|
WidgetExtension::updateChildren();
|
||
|
for (auto w : children())
|
||
|
{
|
||
|
w->onCoordChange([this](WidgetExtension* child, MyGUI::IntCoord coord)
|
||
|
{ updateSizeToFit(); });
|
||
|
}
|
||
|
updateSizeToFit();
|
||
|
}
|
||
|
|
||
|
MyGUI::IntSize LuaContainer::childScalingSize()
|
||
|
{
|
||
|
return MyGUI::IntSize();
|
||
|
}
|
||
|
|
||
|
void LuaContainer::updateSizeToFit()
|
||
|
{
|
||
|
MyGUI::IntSize size;
|
||
|
for (auto w : children())
|
||
|
{
|
||
|
MyGUI::IntCoord coord = w->widget()->getCoord();
|
||
|
size.width = std::max(size.width, coord.left + coord.width);
|
||
|
size.height = std::max(size.height, coord.top + coord.height);
|
||
|
}
|
||
|
setForcedSize(size);
|
||
|
updateCoord();
|
||
|
}
|
||
|
}
|