2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2020-02-09 01:03:52 +01:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-FileCopyrightText: 2020 Anke Boersma <demm@kaosx.us>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2020-02-09 01:03:52 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "NotesQmlViewStep.h"
|
|
|
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
NotesQmlViewStep::NotesQmlViewStep( QObject* parent )
|
2020-03-11 15:57:08 +01:00
|
|
|
: Calamares::QmlViewStep( parent )
|
2020-02-09 01:03:52 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NotesQmlViewStep::~NotesQmlViewStep() {}
|
|
|
|
|
|
|
|
QString
|
|
|
|
NotesQmlViewStep::prettyName() const
|
|
|
|
{
|
|
|
|
return m_notesName ? m_notesName->get() : tr( "Notes" );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NotesQmlViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
2020-02-12 22:33:49 +01:00
|
|
|
{
|
2020-02-09 01:03:52 +01:00
|
|
|
bool qmlLabel_ok = false;
|
|
|
|
auto qmlLabel = CalamaresUtils::getSubMap( configurationMap, "qmlLabel", qmlLabel_ok );
|
|
|
|
|
|
|
|
if ( qmlLabel.contains( "notes" ) )
|
|
|
|
{
|
|
|
|
m_notesName = new CalamaresUtils::Locale::TranslatedString( qmlLabel, "notes" );
|
|
|
|
}
|
2020-02-12 22:33:49 +01:00
|
|
|
|
2020-08-22 01:19:58 +02:00
|
|
|
Calamares::QmlViewStep::setConfigurationMap( configurationMap ); // call parent implementation last
|
2020-02-09 01:03:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( NotesQmlViewStepFactory, registerPlugin< NotesQmlViewStep >(); )
|