Flatten Element structure for simplicity

This commit is contained in:
Gabriel Tofvesson 2024-10-02 13:40:44 +02:00
parent f23c10c160
commit 8b1228fa9e

View File

@ -5,14 +5,10 @@ local Element = {
y = 1, y = 1,
width = 1, width = 1,
height = 1, height = 1,
color = { bgColor = colors.black,
bg = colors.black, fgColor = colors.white,
fg = colors.white window = nil,
}, parent = nil,
render = {
window = nil,
parent = nil
},
visible = true, visible = true,
dirty = true, dirty = true,
id = "", id = "",
@ -31,7 +27,7 @@ function Element:new(o)
setmetatable(obj, self) setmetatable(obj, self)
obj.__index = obj obj.__index = obj
if obj.render and obj.render.parent then if obj.parent then
obj:_reload() obj:_reload()
end end
@ -84,17 +80,17 @@ function Element:setParent(parent)
end end
function Element:setFgColor(color) function Element:setFgColor(color)
if color ~= self.color.fg then if color ~= self.fgColor then
self:setDirty() self:setDirty()
self.color.fg = color self.fgColor = color
self.render.window.setTextColor(color) self.render.window.setTextColor(color)
end end
end end
function Element:setBgColor(color) function Element:setBgColor(color)
if color ~= self.color.bg then if color ~= self.bgColor then
self:setDirty() self:setDirty()
self.color.bg = color self.bgColor = color
self.render.window.setBackgroundColor(color) self.render.window.setBackgroundColor(color)
end end
end end