Dear all,

I want to track the mouse in a video widget and have sub-classed VideoWidget:

Qt Code:
  1. VideoWidgetPatch::VideoWidgetPatch( QWidget * parent) : Phonon::VideoWidget(parent)
  2. {
  3. setMouseTracking(true);
  4. }
  5.  
  6. void VideoWidgetPatch::mouseMoveEvent(QMouseEvent * event)
  7. {
  8. qDebug() << event->type() << hasMouseTracking();
  9. Phonon::VideoWidget::mouseMoveEvent(event);
  10. }
To copy to clipboard, switch view to plain text mode 

The problem is the mouseMoveEvent comes only when I press the mouse button.
Am I missing something?

Thanks Markus