I have searched some solution for my problem and nothing... I'm using a QMovie with a GIF animation in one QLabel for a loading status, ok? It's simple and i learned in this link: GIF animation in Qt, this works perfectly when i open a menu, for example, than owns one label and i put the QMovie in a QLabel of that menu.
My problem now is, i made a specific UI for loading status, when i know than some UI will be slow to open, i would show my loading status UI and when the UI ends to open i would close my loading status UI. In this loading status UI i puted one QMovie (GIF animation) and a simple QLabel written 'Loading...', very simple, right? Buuuut, when i use this specific UI, the QMovie does not work. In fact it does not stay in looping... See, when i use the QMovie in the UI than i am opening, the QMovie stays in looping.
My english is not so good, but do you understand my problem? =/
I'm using the same code of the link:
this->m_pMovie = new QMovie(":/ui/images/my_image_loading.gif");
this->m_pMovie->setScaledSize(QSize(50, 50));
this->ui->labelImageLoading->setMovie(this->m_pMovie);
this->m_pMovie->start();
Someone know about that?
Thank you...