150 lines
3.0 KiB
Lua
150 lines
3.0 KiB
Lua
local Element = require("gfx.element")
|
|
local List = Element:new{
|
|
children = {},
|
|
vertical = false
|
|
}
|
|
|
|
local function adjustPositions(elements, vertical, from)
|
|
local newDims = 0
|
|
local getDim = vertical and function(e) return e:getHeight() end or function(e) return e:getWidth() end
|
|
for i=1,from-1 do
|
|
newDims = newDims + getDim(elements[i])
|
|
end
|
|
|
|
local setDim = vertical and function(e, dim) e:setPos(0, dim) end or function(e, dim) e:setPos(dim, 0) end
|
|
for i=from,#elements do
|
|
setDim(elements[i])
|
|
newDims = newDims + getDim(elements[i])
|
|
end
|
|
end
|
|
|
|
function List:insertChild(child, atIndex)
|
|
local index = math.min(math.max(1, atIndex or #self.children), #self.children)
|
|
table.insert(self.children, index, child)
|
|
|
|
-- Update window references
|
|
self:_reload()
|
|
|
|
-- Update render positions
|
|
adjustPositions(self.children, self:isVertical(), index)
|
|
end
|
|
|
|
function List:setParent(parent)
|
|
Element.setParent(self, parent)
|
|
local win = self:_getWindow()
|
|
for _,child in ipairs(self.children) do
|
|
child:setParent(win)
|
|
end
|
|
end
|
|
|
|
function List:removeChild(child)
|
|
local index
|
|
local searchType = type(child)
|
|
if searchType == "string" then
|
|
for i,v in ipairs(self.children) do
|
|
if v:getId() == child then
|
|
index = i
|
|
break
|
|
end
|
|
end
|
|
return false, nil
|
|
elseif searchType == "table" then
|
|
for i,v in ipairs(self.children) do
|
|
if v == child then
|
|
index = i
|
|
end
|
|
end
|
|
return false, nil
|
|
else
|
|
index = child
|
|
end
|
|
|
|
if index <= 0 or index > #self.children then
|
|
return false, nil
|
|
end
|
|
|
|
local removed = table.remove(self.children, index)
|
|
self:_reload()
|
|
if index <= #self.children then
|
|
adjustPositions(self.children, self:isVertical(), index)
|
|
end
|
|
|
|
return true, removed
|
|
end
|
|
|
|
function List:isVertical()
|
|
return self.vertical
|
|
end
|
|
|
|
function List:isHorizontal()
|
|
return not self:isVertical()
|
|
end
|
|
|
|
function List:draw()
|
|
local dirty = Element.draw(self)
|
|
if dirty then
|
|
self:_getWindow().clear()
|
|
for _,child in ipairs(self.children) do
|
|
child:draw()
|
|
end
|
|
end
|
|
return dirty
|
|
end
|
|
|
|
function List:getHeight()
|
|
local h = 0
|
|
for _,v in ipairs(self.children) do
|
|
h = h + v:getHeight()
|
|
end
|
|
return h
|
|
end
|
|
|
|
function List:getWidth()
|
|
local h = 0
|
|
for _,v in ipairs(self.children) do
|
|
h = h + v:getHeight()
|
|
end
|
|
return h
|
|
end
|
|
|
|
function List:findById(id)
|
|
local find = Element.findById(self, id)
|
|
if find then
|
|
return find
|
|
end
|
|
|
|
for _,v in ipairs(self.children) do
|
|
local result = v:findById(id)
|
|
if result then
|
|
return result
|
|
end
|
|
end
|
|
return nil
|
|
end
|
|
|
|
function List:_isDirty()
|
|
if Element._isDirty(self) then
|
|
return true
|
|
end
|
|
|
|
for _,child in ipairs(self.childrent) do
|
|
if child:_isDirty() then
|
|
return true
|
|
end
|
|
end
|
|
return false
|
|
end
|
|
|
|
function List:_reload()
|
|
Element._reload(self)
|
|
|
|
-- Reload child windows
|
|
local win = self:_getWindow()
|
|
for _,child in ipairs(self.children) do
|
|
if child:_getWindow() ~= win then
|
|
child:setParent(win)
|
|
end
|
|
end
|
|
end
|
|
|
|
return List |