OSCAR-code/sleepyhead/SleepLib/progressdialog.cpp

39 lines
979 B
C++
Raw Normal View History

2014-08-17 15:55:40 +00:00
/* SleepLib Progress Dialog Header
*
* 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::SplashScreen)
{
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()
{
}
2014-08-17 17:03:50 +00:00
void ProgressDialog::doUpdateProgress(int cnt, int total)
{
progress->setMaximum(total);
progress->setValue(cnt);
}