QWidget.customKeyboardEvent

custom keyboard event, if not null, it should be called before doing anything else in keyboardEvent.

Like:

override void keyboardEvent(KeyPress key){
	super.keyboardEvent(key);
	// rest of the code here
}
class QWidget
protected
KeyboardEventFunction customKeyboardEvent;

Meta