OSCAR-code/sleepyhead/SleepLib/progressdialog.h
2018-05-07 11:57:58 +10:00

45 lines
1.0 KiB
C++

/* SleepLib Progress Dialog Header
*
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* 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 <QDialog>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLabel>
#include <QProgressBar>
#include <QPushButton>
class ProgressDialog:public QDialog {
Q_OBJECT
public:
explicit ProgressDialog(QWidget * parent);
virtual ~ProgressDialog();
void addAbortButton();
void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); }
QProgressBar * progress;
public slots:
void setMessage(QString msg);
void doUpdateProgress(int cnt, int total);
void onAbortClicked();
signals:
void abortClicked();
protected:
QLabel * waitmsg;
QHBoxLayout *hlayout;
QLabel * imglabel;
QVBoxLayout * vlayout;
QPushButton * abortButton;
};
#endif // PROGRESSDIALOG_H