2018-05-07 00:37:22 +00:00
|
|
|
|
/* SleepLib Progress Dialog Header
|
2014-08-17 15:55:40 +00:00
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-08-17 15:55:40 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2014-08-17 15:55:40 +00:00
|
|
|
|
|
|
|
|
|
#ifndef PROGRESSDIALOG_H
|
|
|
|
|
#define PROGRESSDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QProgressBar>
|
2018-05-07 01:57:58 +00:00
|
|
|
|
#include <QPushButton>
|
2014-08-17 15:55:40 +00:00
|
|
|
|
|
|
|
|
|
class ProgressDialog:public QDialog {
|
2018-05-07 00:37:22 +00:00
|
|
|
|
Q_OBJECT
|
2014-08-17 15:55:40 +00:00
|
|
|
|
public:
|
|
|
|
|
explicit ProgressDialog(QWidget * parent);
|
|
|
|
|
virtual ~ProgressDialog();
|
|
|
|
|
|
2018-05-07 01:57:58 +00:00
|
|
|
|
void addAbortButton();
|
|
|
|
|
|
2014-08-17 15:55:40 +00:00
|
|
|
|
void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); }
|
|
|
|
|
QProgressBar * progress;
|
2014-08-17 17:03:50 +00:00
|
|
|
|
public slots:
|
2018-05-07 00:37:22 +00:00
|
|
|
|
void setMessage(QString msg);
|
2018-05-07 01:57:58 +00:00
|
|
|
|
void onAbortClicked();
|
2018-05-07 18:42:23 +00:00
|
|
|
|
|
|
|
|
|
void setProgressMax(int max);
|
|
|
|
|
void setProgressValue(int val);
|
|
|
|
|
|
2018-05-07 01:57:58 +00:00
|
|
|
|
signals:
|
|
|
|
|
void abortClicked();
|
2014-08-17 15:55:40 +00:00
|
|
|
|
protected:
|
2018-06-05 01:16:03 +00:00
|
|
|
|
QLabel * statusMsg;
|
2014-08-17 15:55:40 +00:00
|
|
|
|
QHBoxLayout *hlayout;
|
|
|
|
|
QLabel * imglabel;
|
|
|
|
|
QVBoxLayout * vlayout;
|
2018-05-07 01:57:58 +00:00
|
|
|
|
QPushButton * abortButton;
|
2014-08-17 15:55:40 +00:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // PROGRESSDIALOG_H
|