Hi everybody! I have a little problem getting a QLabel (some text from a database) displayed above a video that is continuously played in Phonon::VideoPlayer widget. Both in windowed and fullscreen modes.

The "standard procedure":
Qt Code:
  1. QLabel *lbl = new QLabel(ui->videoPlayer); //same results with ui->videoPlayer->videoWidget() as parent
  2. lbl->setText("test");
To copy to clipboard, switch view to plain text mode 

does not work very well. Neither does placing VideoPlayer inside a QGraphicsView.

So I'll be thankful if somebody could help solving this problem.