Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
2f895e22b0 Fix click handler 2024-10-04 16:19:37 +02:00
Gabriel Tofvesson
d9f9add3c2 Implement event management for List 2024-10-04 16:19:20 +02:00
2 changed files with 32 additions and 2 deletions

View File

@ -1,3 +1,4 @@
local Event = require("gfx.event")
local Element = require("gfx.element")
local List = Element:new{
children = {},
@ -125,6 +126,35 @@ function List:findById(id)
return nil
end
function List:handleEvent(evt)
if Element.handleEvent(self, evt) then
return true
end
if Event.isClickEvent(evt) then
local wOffset = 0
local hOffset = 0
for _,child in ipairs(self.children) do
if Event.containsClick(child, evt, -wOffset, -hOffset) then
return child:handleEvent({Event.repositionEvent(evt, -wOffset, -hOffset)})
end
if self:isVertical() then
hOffset = hOffset + child:getHeight()
else
wOffset = wOffset + child:getWidth()
end
end
return false
else
local handled = false
for _,child in ipairs(self.children) do
handled = child:handleEvent(evt) or handled
end
return handled
end
end
function List:_isDirty()
if Element._isDirty(self) then
return true

View File

@ -165,8 +165,8 @@ local PAGES = {
table.insert(subset, found[i])
end
local listResult = itemList(subset, state.width, function(group, x, y, source)
print("Clicked: "..group:getDisplayName())
local listResult = itemList(subset, state.width, function(element, x, y, source)
print("Clicked: "..x.." "..y)
end)
listResult:setParent(state.monitor)