How do I intercept rqt plugin mouse events?
I'm trying to create a virtual joystick plugin for rqt in Python. When I wrote the stand-alone python node, I just made my main window inherit QtGui.QMainWindow, then I could simply override mousePressEvent.
When I make an rqt plugin, the mousePressEvent doesn't work, I assume because there's nothing to override in the Plugin class.
Is there another way to do this? Can I connect some QT signal?
Thanks, -Jon