| 1234567891011121314151617181920212223242526272829303132333435 |
- class "EventHandler"
- function EventHandler:EventHandler(...)
- for k,v in pairs(arg) do
- if type(v) == "table" then
- if v.__ptr ~= nil then
- arg[k] = v.__ptr
- end
- end
- end
- if self.__ptr == nil and arg[1] ~= "__skip_ptr__" then
- self.__ptr = Polycore.EventHandler(self)
- Polycore.__ptr_lookup[self.__ptr] = self
- end
- end
- function EventHandler:__delete()
- Polycore.__ptr_lookup[self.__ptr] = nil
- Polycore.delete_EventHandler(self.__ptr)
- end
- function EventHandler:__handleEvent(event)
- evt = Event("__skip_ptr__")
- evt.__ptr = event
- self:handleEvent(evt)
- end
|