/* SleepLib Progress Dialog Header * * Copyright (C) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. */ #ifndef PROGRESSDIALOG_H #define PROGRESSDIALOG_H #include #include #include #include #include class ProgressDialog:public QDialog { public: explicit ProgressDialog(QWidget * parent); virtual ~ProgressDialog(); void setMessage(QString msg) { waitmsg->setText(msg); } void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); } QProgressBar * progress; public slots: void doUpdateProgress(int cnt, int total); protected: QLabel * waitmsg; QHBoxLayout *hlayout; QLabel * imglabel; QVBoxLayout * vlayout; }; #endif // PROGRESSDIALOG_H