mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
43 lines
1.0 KiB
C++
43 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. */
|
|
|
|
#include "progressdialog.h"
|
|
|
|
ProgressDialog::ProgressDialog(QWidget * parent):
|
|
QDialog(parent, Qt::Popup)
|
|
{
|
|
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);
|
|
}
|
|
|
|
ProgressDialog::~ProgressDialog()
|
|
{
|
|
}
|
|
|
|
void ProgressDialog::doUpdateProgress(int cnt, int total)
|
|
{
|
|
progress->setMaximum(total);
|
|
progress->setValue(cnt);
|
|
}
|
|
|
|
|
|
void ProgressDialog::setMessage(QString msg) {
|
|
waitmsg->setText(msg); update();
|
|
}
|