Add key click handler to Element

This commit is contained in:
Gabriel Tofvesson 2024-11-14 02:38:49 +00:00
parent 14153522b6
commit 2f72ef4904

View File

@ -13,7 +13,8 @@ local Element = {
visible = true,
dirty = true,
id = "",
onClick = nil
onClick = nil,
onKey = nil
}
Element.__index = Element
@ -203,6 +204,9 @@ function Element:handleEvent(evt)
if Event.isClickEvent(evt) and Event.containsClick(self, evt) and self.onClick ~= nil then
local x, y, source = Event.getClickParams(evt)
return not not self.onClick(self, x, y, source)
elseif Event.isKeyEvent(evt) and self.onKey ~= nil then
local key, held = Key.getKeyParams(evt)
return not not self.onKey(self, key, held)
end
return false
end