calamares/src/modules/users/UsersViewStep.cpp
Adriaan de Groot 1cd9b93a22 REUSE: Giant boilerplate cleanup
- point to main Calamares site in the 'part of' headers instead
  of to github (this is the "this file is part of Calamares"
  opening line for most files).
- remove boilerplate from all source files, CMake modules and completions,
  this is the 3-paragraph summary of the GPL-3.0-or-later, which has
  a meaning entirely covered by the SPDX tag.
2020-08-26 02:28:38 +02:00

121 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: 2017-2018 Adriaan de Groot <groot@kde.org>
* SPDX-FileCopyrightText: 2017 Gabriel Craciunescu <crazy@frugalware.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#include "UsersViewStep.h"
#include "Config.h"
#include "UsersPage.h"
#include "GlobalStorage.h"
#include "JobQueue.h"
#include "utils/Logger.h"
#include "utils/NamedEnum.h"
#include "utils/Variant.h"
CALAMARES_PLUGIN_FACTORY_DEFINITION( UsersViewStepFactory, registerPlugin< UsersViewStep >(); )
UsersViewStep::UsersViewStep( QObject* parent )
: Calamares::ViewStep( parent )
, m_widget( nullptr )
, m_config( new Config( this ) )
{
connect( m_config, &Config::readyChanged, this, &UsersViewStep::nextStatusChanged );
emit nextStatusChanged( m_config->isReady() );
}
UsersViewStep::~UsersViewStep()
{
if ( m_widget && m_widget->parent() == nullptr )
{
m_widget->deleteLater();
}
}
QString
UsersViewStep::prettyName() const
{
return tr( "Users" );
}
QWidget*
UsersViewStep::widget()
{
if ( !m_widget )
{
m_widget = new UsersPage( m_config );
}
return m_widget;
}
bool
UsersViewStep::isNextEnabled() const
{
return m_config->isReady();
}
bool
UsersViewStep::isBackEnabled() const
{
return true;
}
bool
UsersViewStep::isAtBeginning() const
{
return true;
}
bool
UsersViewStep::isAtEnd() const
{
return true;
}
QList< Calamares::job_ptr >
UsersViewStep::jobs() const
{
return m_jobs;
}
void
UsersViewStep::onActivate()
{
if ( m_widget )
{
m_widget->onActivate();
}
}
void
UsersViewStep::onLeave()
{
m_jobs = m_config->createJobs();
m_config->finalizeGlobalStorage();
}
void
UsersViewStep::setConfigurationMap( const QVariantMap& configurationMap )
{
m_config->setConfigurationMap( configurationMap );
}