- 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.
104 lines
2.0 KiB
C++
104 lines
2.0 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "InteractiveTerminalViewStep.h"
|
|
|
|
#include "InteractiveTerminalPage.h"
|
|
|
|
#include "utils/Logger.h"
|
|
|
|
#include <QVariant>
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( InteractiveTerminalViewStepFactory,
|
|
registerPlugin< InteractiveTerminalViewStep >(); )
|
|
|
|
InteractiveTerminalViewStep::InteractiveTerminalViewStep( QObject* parent )
|
|
: Calamares::ViewStep( parent )
|
|
, m_widget( new InteractiveTerminalPage() )
|
|
{
|
|
emit nextStatusChanged( true );
|
|
}
|
|
|
|
|
|
InteractiveTerminalViewStep::~InteractiveTerminalViewStep()
|
|
{
|
|
if ( m_widget && m_widget->parent() == nullptr )
|
|
{
|
|
m_widget->deleteLater();
|
|
}
|
|
}
|
|
|
|
|
|
QString
|
|
InteractiveTerminalViewStep::prettyName() const
|
|
{
|
|
return tr( "Script" );
|
|
}
|
|
|
|
|
|
QWidget*
|
|
InteractiveTerminalViewStep::widget()
|
|
{
|
|
return m_widget;
|
|
}
|
|
|
|
|
|
bool
|
|
InteractiveTerminalViewStep::isNextEnabled() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
InteractiveTerminalViewStep::isBackEnabled() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
InteractiveTerminalViewStep::isAtBeginning() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool
|
|
InteractiveTerminalViewStep::isAtEnd() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
QList< Calamares::job_ptr >
|
|
InteractiveTerminalViewStep::jobs() const
|
|
{
|
|
cDebug() << "InteractiveTerminal" << prettyName() << "asked for jobs(), this is probably wrong.";
|
|
return QList< Calamares::job_ptr >();
|
|
}
|
|
|
|
|
|
void
|
|
InteractiveTerminalViewStep::onActivate()
|
|
{
|
|
cDebug() << "InteractiveTerminal" << prettyName() << "activated.";
|
|
m_widget->onActivate();
|
|
}
|
|
|
|
|
|
void
|
|
InteractiveTerminalViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|
{
|
|
if ( configurationMap.contains( "command" ) && configurationMap.value( "command" ).type() == QVariant::String )
|
|
{
|
|
m_widget->setCommand( configurationMap.value( "command" ).toString() );
|
|
}
|
|
}
|