OSCAR-code/oscar/SleepLib/progressdialog.h

49 lines
1.1 KiB
C
Raw Permalink Normal View History

/* SleepLib Progress Dialog Header
2014-08-17 15:55:40 +00:00
*
* Copyright (c) 2019-2024 The OSCAR Team
* Copyright (C) 2011-2018 Mark Watkins
2014-08-17 15:55:40 +00:00
*
* 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 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 {
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:
void setMessage(QString msg);
2018-05-07 01:57:58 +00:00
void onAbortClicked();
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:
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