/* * Copyright 2016, Luca Giambonini * Copyright 2016, Lisa Vitolo * Copyright 2017, Kyle Robbertze * Copyright 2017-2018, 2020, Adriaan de Groot * Copyright 2017, Gabriel Craciunescu * * 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 "NetInstallPage.h" #include "PackageModel.h" #include "ui_page_netinst.h" #include "JobQueue.h" #include "network/Manager.h" #include "utils/Logger.h" #include "utils/Retranslator.h" #include "utils/Yaml.h" #include #include NetInstallPage::NetInstallPage( QWidget* parent ) : QWidget( parent ) , ui( new Ui::Page_NetInst ) { ui->setupUi( this ); setPageTitle( nullptr ); CALAMARES_RETRANSLATE_SLOT( &NetInstallPage::retranslate ); } NetInstallPage::~NetInstallPage() {} void NetInstallPage::setPageTitle( CalamaresUtils::Locale::TranslatedString* t ) { m_title.reset( t ); if ( !m_title ) { ui->label->hide(); } else { ui->label->show(); } retranslate(); } void NetInstallPage::retranslate() { if ( ui && m_title ) { ui->label->setText( m_title->get() ); // That's get() on the TranslatedString } } void NetInstallPage::setModel( QAbstractItemModel* model ) { ui->groupswidget->setModel( model ); // Go backwards because expanding a group may cause rows to appear below it for ( int i = model->rowCount() - 1; i >= 0; --i ) { auto index = model->index( i, 0 ); if ( model->data( index, PackageModel::MetaExpandRole ).toBool() ) { ui->groupswidget->setExpanded( index, true ); } } } void NetInstallPage::onActivate() { ui->groupswidget->setFocus(); }