1234567891011121314151617181920 |
- #ifndef LOADINGDIALOG_H
- #define LOADINGDIALOG_H
- #include <QDialog>
- #include <QLabel>
- #include <QMovie>
- class LoadingDialog : public QDialog
- {
- Q_OBJECT
- public:
- explicit LoadingDialog(QWidget *parent = nullptr);
- ~LoadingDialog();
- private:
- QLabel *loadingLabel;
- QMovie *loadingMovie;
- };
- #endif // LOADINGDIALOG_H
|