/* === This file is part of Calamares - === * * Copyright 2014, Teo Mrnjavac * * 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 . */ #include "LocaleViewStep.h" #include "LocalePage.h" #include "timezonewidget/localeglobal.h" #include "utils/CalamaresUtilsGui.h" #include #include #include LocaleViewStep::LocaleViewStep( QObject* parent ) : Calamares::ViewStep( parent ) , m_widget( new QWidget() ) , m_actualWidget( new LocalePage() ) , m_nextEnabled( false ) { 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 ); m_nextEnabled = true; emit nextStatusChanged( m_nextEnabled ); }); QFuture< void > initFuture = QtConcurrent::run( LocaleGlobal::init ); m_initWatcher.setFuture( initFuture ); emit nextStatusChanged( m_nextEnabled ); } 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 { return m_nextEnabled; } bool LocaleViewStep::isAtBeginning() const { return true; } bool LocaleViewStep::isAtEnd() const { return true; }