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

59 lines
1.5 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. */
#include "progressdialog.h"
ProgressDialog::ProgressDialog(QWidget * parent):
QDialog(parent, Qt::Tool | Qt::FramelessWindowHint)
{
waitmsg = new QLabel(QObject::tr("PLease Wait..."));
hlayout = new QHBoxLayout;
imglabel = new QLabel(this);
vlayout = new QVBoxLayout;
progress = new QProgressBar(this);
this->setLayout(vlayout);
vlayout->addLayout(hlayout);
hlayout->addWidget(imglabel);
hlayout->addWidget(waitmsg,1,Qt::AlignCenter);
vlayout->addWidget(progress,1);
progress->setMaximum(100);
abortButton = nullptr;
}
ProgressDialog::~ProgressDialog()
{
if (abortButton) {
disconnect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
}
}
void ProgressDialog::doUpdateProgress(int cnt, int total)
{
progress->setMaximum(total);
progress->setValue(cnt);
}
void ProgressDialog::setMessage(QString msg) {
waitmsg->setText(msg); update();
}
void ProgressDialog::addAbortButton()
{
abortButton = new QPushButton(tr("Abort"),this);
connect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
hlayout->addWidget(abortButton);
}
void ProgressDialog::onAbortClicked()
{
emit abortClicked();
}