- the page doesn't need to remember what step it belongs to, if the step tells it when creating widgets. - detach naming from the viewstep API that calls it.
98 lines
1.5 KiB
C++
98 lines
1.5 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "SummaryViewStep.h"
|
|
|
|
#include "SummaryPage.h"
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( SummaryViewStepFactory, registerPlugin< SummaryViewStep >(); )
|
|
|
|
SummaryViewStep::SummaryViewStep( QObject* parent )
|
|
: Calamares::ViewStep( parent )
|
|
, m_config( new Config( this ) )
|
|
, m_widget( new SummaryPage( m_config ) )
|
|
{
|
|
emit nextStatusChanged( true );
|
|
}
|
|
|
|
|
|
SummaryViewStep::~SummaryViewStep()
|
|
{
|
|
if ( m_widget && m_widget->parent() == nullptr )
|
|
{
|
|
m_widget->deleteLater();
|
|
}
|
|
delete m_config;
|
|
}
|
|
|
|
|
|
QString
|
|
SummaryViewStep::prettyName() const
|
|
{
|
|
return m_config->title();
|
|
}
|
|
|
|
|
|
QWidget*
|
|
SummaryViewStep::widget()
|
|
{
|
|
return m_widget;
|
|
}
|
|
|
|
|
|
bool
|
|
SummaryViewStep::isNextEnabled() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
SummaryViewStep::isBackEnabled() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
SummaryViewStep::isAtBeginning() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
SummaryViewStep::isAtEnd() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Calamares::JobList
|
|
SummaryViewStep::jobs() const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
|
|
void
|
|
SummaryViewStep::onActivate()
|
|
{
|
|
m_config->collectSummaries( this, Config::Widgets::Enabled );
|
|
m_widget->buildWidgets( m_config, this );
|
|
}
|
|
|
|
|
|
void
|
|
SummaryViewStep::onLeave()
|
|
{
|
|
m_config->clearSummaries();
|
|
m_widget->cleanup();
|
|
}
|