You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/frontend/ui/widget/eventlistener.lua

42 lines
1.1 KiB
Lua

--[[--
The EventListener is an interface that handles events. This is the base class
for @{ui.widget.widget|Widget}
EventListeners have a rudimentary event handler/dispatcher that
will call a method "onEventName" for an event with name
"EventName"
]]
local EventListener = {}
function EventListener:extend(subclass_prototype)
local o = subclass_prototype or {}
setmetatable(o, self)
self.__index = self
return o
end
function EventListener:new(o)
o = self:extend(o)
if o.init then o:init() end
return o
end
--[[--
Invoke handler method for an event.
Handler method name is determined by @{ui.event.Event}'s handler field.
By default, it's `"on"..Event.name`.
@tparam ui.event.Event event
@treturn bool return true if event is consumed successfully.
]]
function EventListener:handleEvent(event)
if self[event.handler] then
--print("EventListener:handleEvent:", event.handler, "handled by", debug.getinfo(self[event.handler], "S").short_src, self)
return self[event.handler](self, unpack(event.args))
end
end
return EventListener