From 3a46e08f37afd709be02e7237b2aaf11b1a9c715 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 07:35:29 +0200 Subject: [PATCH] Allow lenient Container dimensions --- gfx/container.lua | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gfx/container.lua b/gfx/container.lua index 14be45a..44dc18e 100644 --- a/gfx/container.lua +++ b/gfx/container.lua @@ -4,6 +4,40 @@ local Element = require("gfx.element") local Container = Prop.attach(Element:new(), Children) +function Container:getHeight() + if self:isStrict() then + return Element.getHeight(self) + end + local max = 0 + for _,child in self:_iterateChildren() do + max = math.max(max, child:getY() + child:getHeight()) + end + return max +end + +function Container:getWidth() + if self:isStrict() then + return Element.getWidth(self) + end + local max = 0 + for _,child in self:_iterateChildren() do + max = math.max(max, child:getX() + child:getWidth()) + end + return max +end + +function Container:isStrict() + return self.strict == true +end + +function Container:setStrict(strict) + local needReload = (not not self.strict) ~= strict + self.strict = strict + if needReload then + self:_reload() + end +end + function Container:_reload() Element._reload(self)