ad76a2cbe8
The Config object can hold all of the configuration information, including also the requirements-checking parts. Move requirements- checking configuration there, so it is shared and consistent across welcome and welcomeq, regardless. This repairs the test that expects the Config object to handle **all** of the configuration, too.
106 lines
2.0 KiB
C++
106 lines
2.0 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "WelcomeViewStep.h"
|
|
|
|
#include "Config.h"
|
|
#include "WelcomePage.h"
|
|
|
|
#include "Branding.h"
|
|
#include "modulesystem/ModuleManager.h"
|
|
#include "utils/Logger.h"
|
|
#include "utils/Variant.h"
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( WelcomeViewStepFactory, registerPlugin< WelcomeViewStep >(); )
|
|
|
|
WelcomeViewStep::WelcomeViewStep( QObject* parent )
|
|
: Calamares::ViewStep( parent )
|
|
, m_conf( new Config( this ) )
|
|
, m_widget( new WelcomePage( m_conf ) )
|
|
{
|
|
connect( Calamares::ModuleManager::instance(),
|
|
&Calamares::ModuleManager::requirementsComplete,
|
|
this,
|
|
&WelcomeViewStep::nextStatusChanged );
|
|
connect( m_conf, &Config::localeIndexChanged, m_widget, &WelcomePage::externallySelectedLanguage );
|
|
}
|
|
|
|
WelcomeViewStep::~WelcomeViewStep()
|
|
{
|
|
if ( m_widget && m_widget->parent() == nullptr )
|
|
{
|
|
m_widget->deleteLater();
|
|
}
|
|
}
|
|
|
|
QString
|
|
WelcomeViewStep::prettyName() const
|
|
{
|
|
return tr( "Welcome" );
|
|
}
|
|
|
|
|
|
QWidget*
|
|
WelcomeViewStep::widget()
|
|
{
|
|
return m_widget;
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeViewStep::isNextEnabled() const
|
|
{
|
|
return m_widget->verdict();
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeViewStep::isBackEnabled() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeViewStep::isAtBeginning() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeViewStep::isAtEnd() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Calamares::JobList
|
|
WelcomeViewStep::jobs() const
|
|
{
|
|
return Calamares::JobList();
|
|
}
|
|
|
|
|
|
void
|
|
WelcomeViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|
{
|
|
m_conf->setConfigurationMap( configurationMap );
|
|
|
|
//here init the qml or qwidgets needed bits
|
|
m_widget->init();
|
|
}
|
|
|
|
Calamares::RequirementsList
|
|
WelcomeViewStep::checkRequirements()
|
|
{
|
|
return m_conf->checkRequirements();
|
|
}
|