OSCAR-code/sleepyhead/SleepLib/progressdialog.h

39 lines
916 B
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>
class ProgressDialog:public QDialog {
Q_OBJECT
public:
explicit ProgressDialog(QWidget * parent);
virtual ~ProgressDialog();
void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); }
QProgressBar * progress;
public slots:
void setMessage(QString msg);
void doUpdateProgress(int cnt, int total);
protected:
QLabel * waitmsg;
QHBoxLayout *hlayout;
QLabel * imglabel;
QVBoxLayout * vlayout;
};
#endif // PROGRESSDIALOG_H