2019-04-29 14:49:53 +02:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
2019-04-29 16:16:59 +02:00
|
|
|
#include "utils/Retranslator.h"
|
2019-04-29 14:49:53 +02:00
|
|
|
#include "utils/Variant.h"
|
|
|
|
|
2019-04-29 15:03:10 +02:00
|
|
|
#include <QDate>
|
2019-04-29 14:49:53 +02:00
|
|
|
#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
|
|
|
|
|
|
|
CALAMARES_RETRANSLATE(
|
|
|
|
m_ui->retranslateUi( this );
|
|
|
|
)
|
2019-04-29 15:40:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Ui_OEMPage* m_ui;
|
|
|
|
} ;
|
|
|
|
|
2019-04-29 14:49:53 +02:00
|
|
|
|
|
|
|
OEMViewStep::OEMViewStep(QObject* parent)
|
|
|
|
: Calamares::ViewStep( parent )
|
|
|
|
, m_widget( nullptr )
|
2019-04-29 15:03:10 +02:00
|
|
|
, m_visited( false )
|
2019-04-29 14:49:53 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OEMViewStep::~OEMViewStep()
|
|
|
|
{
|
2019-04-29 15:40:13 +02:00
|
|
|
if ( m_widget && m_widget->parent() == nullptr )
|
|
|
|
m_widget->deleteLater();
|
2019-04-29 14:49:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool OEMViewStep::isBackEnabled() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OEMViewStep::isNextEnabled() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OEMViewStep::isAtBeginning() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OEMViewStep::isAtEnd() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-29 15:03:10 +02:00
|
|
|
static QString substitute( QString s )
|
|
|
|
{
|
|
|
|
QString t_date = QStringLiteral( "@@DATE@@" );
|
|
|
|
if ( s.contains( t_date ) )
|
|
|
|
{
|
|
|
|
auto date = QDate::currentDate();
|
|
|
|
s = s.replace( t_date, date.toString( Qt::ISODate ));
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OEMViewStep::onActivate()
|
|
|
|
{
|
2019-04-29 15:40:13 +02:00
|
|
|
if ( !m_widget )
|
|
|
|
(void) widget();
|
|
|
|
if ( !m_visited && m_widget )
|
|
|
|
m_widget->m_ui->batchIdentifier->setText( m_user_batchIdentifier );
|
2019-04-29 15:03:10 +02:00
|
|
|
m_visited = true;
|
2019-04-29 16:16:59 +02:00
|
|
|
|
|
|
|
ViewStep::onActivate();
|
2019-04-29 15:03:10 +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();
|
2019-04-29 15:03:10 +02:00
|
|
|
}
|
|
|
|
|
2019-04-29 14:49:53 +02:00
|
|
|
QString OEMViewStep::prettyName() const
|
|
|
|
{
|
|
|
|
return tr( "OEM Configuration" );
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget * OEMViewStep::widget()
|
|
|
|
{
|
2019-04-29 15:40:13 +02:00
|
|
|
if (!m_widget)
|
|
|
|
m_widget = new OEMPage;
|
|
|
|
return m_widget;
|
2019-04-29 14:49:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Calamares::JobList OEMViewStep::jobs() const
|
|
|
|
{
|
|
|
|
return Calamares::JobList();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OEMViewStep::setConfigurationMap(const QVariantMap& configurationMap)
|
|
|
|
{
|
2019-04-29 15:03:10 +02:00
|
|
|
m_conf_batchIdentifier = CalamaresUtils::getString( configurationMap, "batch-identifier" );
|
2019-04-29 15:40:13 +02:00
|
|
|
m_user_batchIdentifier = substitute( m_conf_batchIdentifier );
|
2019-04-29 14:49:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( OEMViewStepFactory, registerPlugin<OEMViewStep>(); )
|