Search code examples
qtclassinheritanceqpixmap

Class that inherits QMovie and QPixmap functions


Is there any Qt Class that Inherits everything from QMovie and QPixmap?


Solution

  • Don't subclass if you don't need to

    I don't think you need to...take a look at the documentation. The QMovie::currentPixmap method returns a QPixmap of the current frame. Can you explain what you need beyond that?

    Sources