-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
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
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers