OSCAR-code/sleepyhead/SleepLib/progressdialog.cpp

63 lines
1.5 KiB
C++
Raw Normal View History

/* SleepLib Progress Dialog Header
2014-08-17 15:55:40 +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
* 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)
2014-08-17 15:55:40 +00:00
{
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);
2018-05-07 01:57:58 +00:00
abortButton = nullptr;
2014-08-17 15:55:40 +00:00
}
ProgressDialog::~ProgressDialog()
{
2018-05-07 01:57:58 +00:00
if (abortButton) {
disconnect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
}
2014-08-17 15:55:40 +00:00
}
void ProgressDialog::setProgressMax(int max)
2014-08-17 17:03:50 +00:00
{
progress->setMaximum(max);
}
void ProgressDialog::setProgressValue(int val)
{
progress->setValue(val);
2014-08-17 17:03:50 +00:00
}
void ProgressDialog::setMessage(QString msg) {
waitmsg->setText(msg); update();
}
2018-05-07 01:57:58 +00:00
void ProgressDialog::addAbortButton()
{
abortButton = new QPushButton(tr("Abort"),this);
connect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
hlayout->addWidget(abortButton);
}
void ProgressDialog::onAbortClicked()
{
emit abortClicked();
}