I try with no success to activate a slot when the mouse enters a widget's boundary.
Once activated I would like to change the cursor shape (hope i find that by myself!!)
This, below, does not do anything. I thought when hovering over the widget the window would close as a proof the event occured.
connect( pbDestin,
SIGNAL( QEvent::Enter ),
this,
SLOT( close
() ) );
connect( pbDestin, SIGNAL( QEvent::Enter ), this, SLOT( close() ) );
To copy to clipboard, switch view to plain text mode
But it does not close the window...
Bookmarks