2014-07-02 17:59:24 +02:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2014, Teo Mrnjavac <teo@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 "LocaleViewStep.h"
|
|
|
|
|
|
|
|
#include "LocalePage.h"
|
|
|
|
#include "timezonewidget/localeglobal.h"
|
|
|
|
|
2014-07-03 13:13:38 +02:00
|
|
|
#include "utils/CalamaresUtilsGui.h"
|
|
|
|
|
|
|
|
#include <QBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QtConcurrent/QtConcurrentRun>
|
|
|
|
|
2014-07-02 17:59:24 +02:00
|
|
|
LocaleViewStep::LocaleViewStep( QObject* parent )
|
|
|
|
: Calamares::ViewStep( parent )
|
2014-07-03 13:13:38 +02:00
|
|
|
, m_widget( new QWidget() )
|
|
|
|
, m_actualWidget( new LocalePage() )
|
2014-07-03 13:19:32 +02:00
|
|
|
, m_nextEnabled( false )
|
2014-07-02 17:59:24 +02:00
|
|
|
{
|
2014-07-03 13:13:38 +02:00
|
|
|
QBoxLayout* mainLayout = new QHBoxLayout;
|
|
|
|
m_widget->setLayout( mainLayout );
|
|
|
|
CalamaresUtils::unmarginLayout( mainLayout );
|
|
|
|
|
|
|
|
QLabel* waitingLabel = new QLabel( "Loading location data..." );
|
|
|
|
waitingLabel->setAlignment( Qt::AlignCenter );
|
|
|
|
mainLayout->addWidget( waitingLabel );
|
|
|
|
|
|
|
|
connect( &m_initWatcher, &QFutureWatcher< void >::finished,
|
|
|
|
[=]
|
|
|
|
{
|
|
|
|
m_actualWidget->init();
|
|
|
|
m_widget->layout()->removeWidget( waitingLabel );
|
|
|
|
waitingLabel->deleteLater();
|
|
|
|
m_widget->layout()->addWidget( m_actualWidget );
|
2014-07-03 13:19:32 +02:00
|
|
|
m_nextEnabled = true;
|
|
|
|
emit nextStatusChanged( m_nextEnabled );
|
2014-07-03 13:13:38 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
QFuture< void > initFuture = QtConcurrent::run( LocaleGlobal::init );
|
|
|
|
m_initWatcher.setFuture( initFuture );
|
|
|
|
|
2014-07-03 13:19:32 +02:00
|
|
|
emit nextStatusChanged( m_nextEnabled );
|
2014-07-02 17:59:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LocaleViewStep::~LocaleViewStep()
|
|
|
|
{
|
|
|
|
if ( m_widget && m_widget->parent() == nullptr )
|
|
|
|
m_widget->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
|
|
|
LocaleViewStep::prettyName() const
|
|
|
|
{
|
|
|
|
return tr( "Location" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QWidget*
|
|
|
|
LocaleViewStep::widget()
|
|
|
|
{
|
|
|
|
return m_widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
LocaleViewStep::next()
|
|
|
|
{
|
|
|
|
//TODO: actually save those settings somewhere
|
|
|
|
emit done();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
LocaleViewStep::back()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
LocaleViewStep::isNextEnabled() const
|
|
|
|
{
|
2014-07-03 13:19:32 +02:00
|
|
|
return m_nextEnabled;
|
2014-07-02 17:59:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
LocaleViewStep::isAtBeginning() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
LocaleViewStep::isAtEnd() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|