class documentation

class QuickApplication(NSApplication): (source)

View In Hierarchy

QuickMacApp's main application class.

Method reportException_ Override [NSApplication reportException:] to report exceptions more legibly to Python developers.
Method sendEvent_ Hand off any incoming events to the key equivalent handler.
Instance Variable keyEquivalentHandler Set this attribute to a custom NSResponder if you want to handle key equivalents outside the responder chain. (I believe this is necessary in some apps because the responder chain can be more complicated in LSUIElement apps, but there might be a better way to do this...
def reportException_(self, exception): (source)

Override [NSApplication reportException:] to report exceptions more legibly to Python developers.

def sendEvent_(self, event: NSEvent): (source)

Hand off any incoming events to the key equivalent handler.

keyEquivalentHandler: NSResponder = (source)

Set this attribute to a custom NSResponder if you want to handle key equivalents outside the responder chain. (I believe this is necessary in some apps because the responder chain can be more complicated in LSUIElement apps, but there might be a better way to do this.)