I used this code to get Full screen in my project.
Qt Code:
qView->setResizeMode(QDeclarativeView::SizeRootObjectToView); showFullScreen(); setCentralWidget(qView);To copy to clipboard, switch view to plain text mode
But the problem is that the buttons like play, options are not seen when we navigate to full screen option(I used animation on those buttons to fall from top to bottom).what can I do i n this ? i tried to set the x, y positions yo those buttons when we click fullscreen options. But it doesn't work properly.
Bookmarks