i have a QWidget object and want to add handlers for some key presses, the traditional way
is to inherit QWidget and reimplement the virtual funcitons, my question is: can i add
event handlers without inheriting QWidget ?
is there signals for keyboard events ?