Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hey
I'd like to create a "action" that would behave like :
Any idea how to bite it ?
Hi,
One way could be to create a transparent widget on top of your UI, make it track the mouse moves and draw a QRubberBand on the widget that's under the mouse cursor. You enable that widget with your button.
Set a stylesheet for the widgets:
QWidget:hover { border: 1px solid red; }
And get the clicked widget's pointers by connecting to QApplication::focusChanged(QWidget *old, QWidget *now).