Refactor to more abstract field accesses
This commit is contained in:
parent
8b1228fa9e
commit
f47a839341
@ -17,7 +17,7 @@ local Element = {
|
|||||||
Element.__index = Element
|
Element.__index = Element
|
||||||
|
|
||||||
local function createWindow(element)
|
local function createWindow(element)
|
||||||
return window.create(element.render.parent, element:getX(), element:getY(), element:getWidth(), element:getHeight(), element:isVisible())
|
return window.create(element.parent, element:getX(), element:getY(), element:getWidth(), element:getHeight(), element:isVisible())
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ function Element:setFgColor(color)
|
|||||||
if color ~= self.fgColor then
|
if color ~= self.fgColor then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self.fgColor = color
|
self.fgColor = color
|
||||||
self.render.window.setTextColor(color)
|
self:_getWindow().setTextColor(color)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -91,12 +91,28 @@ function Element:setBgColor(color)
|
|||||||
if color ~= self.bgColor then
|
if color ~= self.bgColor then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self.bgColor = color
|
self.bgColor = color
|
||||||
self.render.window.setBackgroundColor(color)
|
self:_getWindow().setBackgroundColor(color)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Element:getFgColor()
|
||||||
|
return self.fgColor
|
||||||
|
end
|
||||||
|
|
||||||
|
function Element:getBgColor()
|
||||||
|
return self.bgColor
|
||||||
|
end
|
||||||
|
|
||||||
|
function Element:_getWindow()
|
||||||
|
return self.window
|
||||||
|
end
|
||||||
|
|
||||||
|
function Element:_setWindow(window)
|
||||||
|
self.window = window
|
||||||
|
end
|
||||||
|
|
||||||
function Element:setVisible(visible)
|
function Element:setVisible(visible)
|
||||||
self.render.window.setVisible(visible)
|
self:_getWindow().setVisible(visible)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:resize(opts)
|
function Element:resize(opts)
|
||||||
@ -157,7 +173,7 @@ function Element:getId()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:redraw()
|
function Element:redraw()
|
||||||
self.render.window.redraw()
|
self:_getWindow().redraw()
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:handleEvent(evt)
|
function Element:handleEvent(evt)
|
||||||
@ -173,7 +189,7 @@ function Element:setOnClick(onClick)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:_reload()
|
function Element:_reload()
|
||||||
self.render.window = createWindow(self)
|
self:_setWindow(createWindow(self))
|
||||||
end
|
end
|
||||||
|
|
||||||
return Element
|
return Element
|
@ -68,7 +68,7 @@ end
|
|||||||
|
|
||||||
function List:draw()
|
function List:draw()
|
||||||
Element.draw(self)
|
Element.draw(self)
|
||||||
self.render.window.clear()
|
self:_getWindow().clear()
|
||||||
for _,v in ipairs(self.children) do
|
for _,v in ipairs(self.children) do
|
||||||
v:draw()
|
v:draw()
|
||||||
end
|
end
|
||||||
|
13
gfx/text.lua
13
gfx/text.lua
@ -9,10 +9,11 @@ function Text:new(o)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Text:setText(text)
|
function Text:setText(text)
|
||||||
if self.text ~= text then
|
local current = self:getText()
|
||||||
|
if current ~= text then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
|
|
||||||
local needReload = #self.text ~= #text
|
local needReload = #current ~= #text
|
||||||
self.text = text
|
self.text = text
|
||||||
if needReload then
|
if needReload then
|
||||||
self:_reload()
|
self:_reload()
|
||||||
@ -20,9 +21,13 @@ function Text:setText(text)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Text:getText()
|
||||||
|
return self.text
|
||||||
|
end
|
||||||
|
|
||||||
function Text:draw()
|
function Text:draw()
|
||||||
Element.draw(self)
|
Element.draw(self)
|
||||||
self.render.window.write(self.text)
|
self:_getWindow().write(self:getText())
|
||||||
end
|
end
|
||||||
|
|
||||||
function Text:getHeight()
|
function Text:getHeight()
|
||||||
@ -30,7 +35,7 @@ function Text:getHeight()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Text:getWidth()
|
function Text:getWidth()
|
||||||
return #self.text
|
return #self:getText()
|
||||||
end
|
end
|
||||||
|
|
||||||
function Text:setWidth()
|
function Text:setWidth()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user