Simplify lists and visibility
This commit is contained in:
parent
ab65943ee0
commit
9ba0ada978
@ -38,17 +38,4 @@ function Container:setStrict(strict)
|
|||||||
end
|
end
|
||||||
end
|
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)
|
|
||||||
child:_reload()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return Container
|
return Container
|
@ -121,10 +121,13 @@ function Element:_getWindow()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:_setWindow(window)
|
function Element:_setWindow(window)
|
||||||
|
self:setDirty()
|
||||||
self.window = window
|
self.window = window
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:setVisible(visible)
|
function Element:setVisible(visible)
|
||||||
|
self:setDirty()
|
||||||
|
self.visible = visible
|
||||||
self:_getWindow().setVisible(visible)
|
self:_getWindow().setVisible(visible)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -189,10 +192,6 @@ function Element:getId()
|
|||||||
return self.id
|
return self.id
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:redraw()
|
|
||||||
self:_getWindow().redraw()
|
|
||||||
end
|
|
||||||
|
|
||||||
function Element:handleEvent(evt)
|
function Element:handleEvent(evt)
|
||||||
if Event.isClickEvent(evt) and Event.containsClick(self, evt) and self.onClick ~= nil then
|
if Event.isClickEvent(evt) and Event.containsClick(self, evt) and self.onClick ~= nil then
|
||||||
local x, y, source = Event.getClickParams(evt)
|
local x, y, source = Event.getClickParams(evt)
|
||||||
@ -210,6 +209,7 @@ function Element:_reload()
|
|||||||
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
||||||
win.setBackgroundColor(self:getBgColor())
|
win.setBackgroundColor(self:getBgColor())
|
||||||
win.setTextColor(self:getFgColor())
|
win.setTextColor(self:getFgColor())
|
||||||
|
win.setVisible(self.visible)
|
||||||
self:_setWindow(win)
|
self:_setWindow(win)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
10
gfx/list.lua
10
gfx/list.lua
@ -57,16 +57,6 @@ function List:getWidth()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function List:_reload()
|
function List:_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
|
|
||||||
|
|
||||||
self:adjustPositions()
|
self:adjustPositions()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" }
|
|||||||
|
|
||||||
function Children:with(elementType)
|
function Children:with(elementType)
|
||||||
local propSelf = self
|
local propSelf = self
|
||||||
|
local defaultReload = elementType._reload
|
||||||
function elementType:_iterateChildren()
|
function elementType:_iterateChildren()
|
||||||
return ipairs(self:_children())
|
return ipairs(self:_children())
|
||||||
end
|
end
|
||||||
@ -147,6 +148,22 @@ function Children:with(elementType)
|
|||||||
return Element.handleEvent(self, evt)
|
return Element.handleEvent(self, evt)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function elementType:_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
|
||||||
|
|
||||||
|
if defaultReload ~= nil and defaultReload ~= Element._reload then
|
||||||
|
defaultReload(self)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return elementType
|
return elementType
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user