calamares/src/modules/oemid/OEMViewStep.cpp

166 lines
3.3 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://github.com/calamares> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2019 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Calamares is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#include "OEMViewStep.h"
2019-04-29 15:40:13 +02:00
#include "ui_OEMPage.h"
#include "IDJob.h"
2019-04-29 16:16:59 +02:00
#include "utils/Retranslator.h"
#include "utils/Variant.h"
#include <QDate>
#include <QLabel>
2019-04-29 15:40:13 +02:00
#include <QWidget>
class OEMPage : public QWidget
{
public:
OEMPage()
: QWidget( nullptr )
, m_ui( new Ui_OEMPage() )
{
m_ui->setupUi( this );
2019-04-29 16:16:59 +02:00
2020-08-22 01:19:58 +02:00
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); )
2019-04-29 15:40:13 +02:00
}
virtual ~OEMPage() override;
2020-08-22 01:19:58 +02:00
2019-04-29 15:40:13 +02:00
Ui_OEMPage* m_ui;
2020-08-22 01:19:58 +02:00
};
2019-04-29 15:40:13 +02:00
2020-08-22 01:19:58 +02:00
OEMPage::~OEMPage() {}
2020-08-22 01:19:58 +02:00
OEMViewStep::OEMViewStep( QObject* parent )
: Calamares::ViewStep( parent )
, m_widget( nullptr )
, m_visited( false )
{
}
OEMViewStep::~OEMViewStep()
{
2019-04-29 15:40:13 +02:00
if ( m_widget && m_widget->parent() == nullptr )
2020-08-22 01:19:58 +02:00
{
2019-04-29 15:40:13 +02:00
m_widget->deleteLater();
2020-08-22 01:19:58 +02:00
}
}
2020-08-22 01:19:58 +02:00
bool
OEMViewStep::isBackEnabled() const
{
return true;
}
2020-08-22 01:19:58 +02:00
bool
OEMViewStep::isNextEnabled() const
{
return true;
}
2020-08-22 01:19:58 +02:00
bool
OEMViewStep::isAtBeginning() const
{
return true;
}
2020-08-22 01:19:58 +02:00
bool
OEMViewStep::isAtEnd() const
{
return true;
}
2020-08-22 01:19:58 +02:00
static QString
substitute( QString s )
{
QString t_date = QStringLiteral( "@@DATE@@" );
if ( s.contains( t_date ) )
{
auto date = QDate::currentDate();
2020-08-22 01:19:58 +02:00
s = s.replace( t_date, date.toString( Qt::ISODate ) );
}
return s;
}
2020-08-22 01:19:58 +02:00
void
OEMViewStep::onActivate()
{
2019-04-29 15:40:13 +02:00
if ( !m_widget )
2020-08-22 01:19:58 +02:00
{
(void)widget();
}
2019-04-29 15:40:13 +02:00
if ( !m_visited && m_widget )
2020-08-22 01:19:58 +02:00
{
2019-04-29 15:40:13 +02:00
m_widget->m_ui->batchIdentifier->setText( m_user_batchIdentifier );
2020-08-22 01:19:58 +02:00
}
m_visited = true;
2019-04-29 16:16:59 +02:00
ViewStep::onActivate();
}
2020-08-22 01:19:58 +02:00
void
OEMViewStep::onLeave()
{
2019-04-29 15:40:13 +02:00
m_user_batchIdentifier = m_widget->m_ui->batchIdentifier->text();
2019-04-29 16:16:59 +02:00
ViewStep::onLeave();
}
2020-08-22 01:19:58 +02:00
QString
OEMViewStep::prettyName() const
{
return tr( "OEM Configuration" );
}
2020-08-22 01:19:58 +02:00
QString
OEMViewStep::prettyStatus() const
2019-04-29 16:37:32 +02:00
{
return tr( "Set the OEM Batch Identifier to <code>%1</code>." ).arg( m_user_batchIdentifier );
}
2020-08-22 01:19:58 +02:00
QWidget*
OEMViewStep::widget()
{
2020-08-22 01:19:58 +02:00
if ( !m_widget )
{
2019-04-29 15:40:13 +02:00
m_widget = new OEMPage;
2020-08-22 01:19:58 +02:00
}
2019-04-29 15:40:13 +02:00
return m_widget;
}
2020-08-22 01:19:58 +02:00
Calamares::JobList
OEMViewStep::jobs() const
{
return Calamares::JobList() << Calamares::job_ptr( new IDJob( m_user_batchIdentifier ) );
}
2020-08-22 01:19:58 +02:00
void
OEMViewStep::setConfigurationMap( const QVariantMap& configurationMap )
{
m_conf_batchIdentifier = CalamaresUtils::getString( configurationMap, "batch-identifier" );
2019-04-29 15:40:13 +02:00
m_user_batchIdentifier = substitute( m_conf_batchIdentifier );
}
2020-08-22 01:19:58 +02:00
CALAMARES_PLUGIN_FACTORY_DEFINITION( OEMViewStepFactory, registerPlugin< OEMViewStep >(); )