To indicate that the application is loading a big file from disk(and can't do anything other in the meantime), show a spinner widget on the screen
=>How-to:
- Load a gif or Qt "movie":
Pseudocode:
QLabel *lbl = new QLabel;
QMovie *movie = new QMovie("G:/loader.gif");
lbl->setMovie(movie);
lbl->show();
movie->start();
Limitation: not resizeable
- Use widgets which are free on github like:
https://github.com/snowwlex/QtWaitingSpinner
or
https://github.com/mojocorp/QProgressIndicator
To indicate that the application is loading a big file from disk(and can't do anything other in the meantime), show a spinner widget on the screen
=>How-to:
Pseudocode:
QLabel *lbl = new QLabel;
QMovie *movie = new QMovie("G:/loader.gif");
lbl->setMovie(movie);
lbl->show();
movie->start();
Limitation: not resizeable
https://github.com/snowwlex/QtWaitingSpinner
or
https://github.com/mojocorp/QProgressIndicator