Add more event handling
This commit is contained in:
parent
5eafe25b1a
commit
fc121adcb8
@ -14,7 +14,9 @@ local Element = {
|
|||||||
dirty = true,
|
dirty = true,
|
||||||
id = "",
|
id = "",
|
||||||
onClick = nil,
|
onClick = nil,
|
||||||
onKey = nil
|
onKey = nil,
|
||||||
|
onChar = nil,
|
||||||
|
onEvent = nil
|
||||||
}
|
}
|
||||||
Element.__index = Element
|
Element.__index = Element
|
||||||
|
|
||||||
@ -205,10 +207,13 @@ function Element:handleEvent(evt)
|
|||||||
local x, y, source = Event.getClickParams(evt)
|
local x, y, source = Event.getClickParams(evt)
|
||||||
return not not self.onClick(self, x, y, source)
|
return not not self.onClick(self, x, y, source)
|
||||||
elseif Event.isKeyEvent(evt) and self.onKey ~= nil then
|
elseif Event.isKeyEvent(evt) and self.onKey ~= nil then
|
||||||
local key, held = Key.getKeyParams(evt)
|
local key, held = Event.getKeyParams(evt)
|
||||||
return not not self.onKey(self, key, held)
|
return not not self.onKey(self, key, held)
|
||||||
|
elseif Event.isCharEvent(evt) and self.onChar ~= nil then
|
||||||
|
local keyChar = Event.getCharValue(evt)
|
||||||
|
return not not self.onChar(self, keyChar)
|
||||||
end
|
end
|
||||||
return false
|
return self.onEvent ~= nil and self.onEvent(self, evt)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:setOnClick(onClick)
|
function Element:setOnClick(onClick)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user