calamares/src/libcalamaresui/InstallationViewStep.cpp
Aurélien Gâteau e9da5cb6cb Change signature of JobQueue::progress, add finished() signal
Now uses a qreal for progress instead of current and total
Also added a finished() signal because determining whether the queue is
finished should not be done by comparing a qreal with 1.0 as this is not
precise.
2014-07-23 10:58:08 +02:00

99 lines
2.1 KiB
C++

/* === This file is part of Calamares - <http://github.com/calamares> ===
*
* Copyright 2014, Aurélien Gâteau <agateau@kde.org>
*
* Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Calamares is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#include <InstallationViewStep.h>
#include <JobQueue.h>
#include <QLabel>
#include <QProgressBar>
#include <QVBoxLayout>
namespace Calamares
{
InstallationViewStep::InstallationViewStep( QObject* parent )
: ViewStep( parent )
, m_widget( new QWidget )
{
m_progressBar = new QProgressBar;
m_progressBar->setMaximum( 10000 );
m_label = new QLabel;
QVBoxLayout* layout = new QVBoxLayout( m_widget );
layout->addWidget(m_progressBar);
layout->addWidget(m_label);
connect( JobQueue::instance(), &JobQueue::progress, this, &InstallationViewStep::updateFromJobQueue );
}
QString
InstallationViewStep::prettyName() const
{
return tr( "Install" );
}
QWidget*
InstallationViewStep::widget()
{
return m_widget;
}
void
InstallationViewStep::next()
{
}
void
InstallationViewStep::back()
{
}
bool
InstallationViewStep::isNextEnabled() const
{
return false;
}
bool
InstallationViewStep::isAtBeginning() const
{
return false;
}
bool
InstallationViewStep::isAtEnd() const
{
return false;
}
QList< Calamares::job_ptr >
InstallationViewStep::jobs() const
{
return QList< Calamares::job_ptr >();
}
void
InstallationViewStep::updateFromJobQueue( qreal percent, const QString& message )
{
m_progressBar->setValue( percent * m_progressBar->maximum() );
m_label->setText( message );
}
} // namespace