Grx.Application::event

def callback(application, event, user_param1, ...)
  

This signal is emitted when an event occurs. Handlers can return True to prevent any further handlers from running.

user_param1

application

instance of Grx.Application that is emitting the signal

event

the event that triggered the signal

...

additional user parameters (if any)

Returns

True if the handler handled the event, or False to continue propagating the event.