95 lines
2.0 KiB
C++
95 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 "WelcomeQmlViewStep.h"
|
|
|
|
#include "checker/GeneralRequirements.h"
|
|
|
|
#include "locale/TranslationsModel.h"
|
|
#include "utils/Dirs.h"
|
|
#include "utils/Logger.h"
|
|
#include "utils/Variant.h"
|
|
|
|
#include "Branding.h"
|
|
#include "modulesystem/ModuleManager.h"
|
|
#include "utils/Yaml.h"
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( WelcomeQmlViewStepFactory, registerPlugin< WelcomeQmlViewStep >(); )
|
|
|
|
WelcomeQmlViewStep::WelcomeQmlViewStep( QObject* parent )
|
|
: Calamares::QmlViewStep( parent )
|
|
, m_config( new Config( this ) )
|
|
{
|
|
connect( Calamares::ModuleManager::instance(),
|
|
&Calamares::ModuleManager::requirementsComplete,
|
|
this,
|
|
&WelcomeQmlViewStep::nextStatusChanged );
|
|
}
|
|
|
|
|
|
QString
|
|
WelcomeQmlViewStep::prettyName() const
|
|
{
|
|
return tr( "Welcome" );
|
|
}
|
|
|
|
bool
|
|
WelcomeQmlViewStep::isNextEnabled() const
|
|
{
|
|
return m_config->requirementsModel()->satisfiedMandatory();
|
|
}
|
|
|
|
bool
|
|
WelcomeQmlViewStep::isBackEnabled() const
|
|
{
|
|
// TODO: should return true (it's weird that you are not allowed to have welcome *after* anything
|
|
return false;
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeQmlViewStep::isAtBeginning() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
WelcomeQmlViewStep::isAtEnd() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Calamares::JobList
|
|
WelcomeQmlViewStep::jobs() const
|
|
{
|
|
return Calamares::JobList();
|
|
}
|
|
|
|
void
|
|
WelcomeQmlViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|
{
|
|
m_config->setConfigurationMap( configurationMap );
|
|
Calamares::QmlViewStep::setConfigurationMap( configurationMap ); // call parent implementation last
|
|
}
|
|
|
|
Calamares::RequirementsList
|
|
WelcomeQmlViewStep::checkRequirements()
|
|
{
|
|
return m_config->checkRequirements();
|
|
}
|
|
|
|
QObject*
|
|
WelcomeQmlViewStep::getConfig()
|
|
{
|
|
return m_config;
|
|
}
|