From a96102dc48da79ca239adf3f1e85d177d2cd67ac Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 06:00:32 +0200 Subject: [PATCH] Implement freeform container --- gfx/container.lua | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 gfx/container.lua diff --git a/gfx/container.lua b/gfx/container.lua new file mode 100644 index 0000000..4124932 --- /dev/null +++ b/gfx/container.lua @@ -0,0 +1,43 @@ +local Prop = require("gfx.prop") +local Children = require("gfx.prop.children") +local Element = require("gfx.element") + +local Container = Prop.attach(Element:new(), Children) + +function Container:draw() + local dirty = Element.draw(self) + if dirty then + self:_getWindow().clear() + for _,child in self:_iterateChildren() do + child:draw() + end + end + return dirty +end + +function Container:_isDirty() + if Element._isDirty(self) then + return true + end + + for _,child in self:_iterateChildren() do + if child:_isDirty() then + return true + end + end + return false +end + +function Container:_reload() + Element._reload(self) + + -- Reload child windows + local win = self:_getWindow() + for _,child in self:_iterateChildren() do + if child:_getWindow() ~= win then + child:setParent(win) + end + end +end + +return Container \ No newline at end of file