2017-12-03 18:47:41 +01:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2017, 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 "PlasmaLnfPage.h"
|
|
|
|
|
|
|
|
#include "ui_page_plasmalnf.h"
|
|
|
|
|
|
|
|
#include "utils/Logger.h"
|
|
|
|
#include "utils/Retranslator.h"
|
|
|
|
|
2017-12-03 21:34:06 +01:00
|
|
|
#include <KPackage/Package>
|
|
|
|
#include <KPackage/PackageLoader>
|
|
|
|
|
2017-12-12 11:42:35 +01:00
|
|
|
static ThemeInfoList plasma_themes()
|
2017-12-03 21:34:06 +01:00
|
|
|
{
|
2017-12-12 11:42:35 +01:00
|
|
|
ThemeInfoList packages;
|
2017-12-03 21:34:06 +01:00
|
|
|
|
2017-12-04 12:44:37 +01:00
|
|
|
QList<KPluginMetaData> pkgs = KPackage::PackageLoader::self()->listPackages( "Plasma/LookAndFeel" );
|
2017-12-03 21:34:06 +01:00
|
|
|
|
2017-12-04 12:44:37 +01:00
|
|
|
for ( const KPluginMetaData& data : pkgs )
|
|
|
|
{
|
2017-12-04 18:27:30 +01:00
|
|
|
if ( data.isValid() && !data.isHidden() && !data.name().isEmpty() )
|
|
|
|
{
|
2017-12-12 11:42:35 +01:00
|
|
|
packages << ThemeInfo{ data.pluginId(), data.name() };
|
2017-12-04 18:27:30 +01:00
|
|
|
}
|
2017-12-03 21:34:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return packages;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-04 12:44:37 +01:00
|
|
|
PlasmaLnfPage::PlasmaLnfPage( QWidget* parent )
|
2017-12-03 18:47:41 +01:00
|
|
|
: QWidget( parent )
|
|
|
|
, ui( new Ui::PlasmaLnfPage )
|
|
|
|
{
|
|
|
|
ui->setupUi( this );
|
|
|
|
CALAMARES_RETRANSLATE(
|
2017-12-04 12:44:37 +01:00
|
|
|
{
|
2017-12-03 18:47:41 +01:00
|
|
|
ui->retranslateUi( this );
|
|
|
|
ui->generalExplanation->setText( tr( "Please choose a look-and-feel for the KDE Plasma Desktop, below." ) );
|
2017-12-04 18:27:30 +01:00
|
|
|
winnowThemes();
|
2017-12-04 12:44:37 +01:00
|
|
|
}
|
2017-12-03 18:47:41 +01:00
|
|
|
)
|
|
|
|
|
2017-12-04 12:44:37 +01:00
|
|
|
QObject::connect<void( QComboBox::* )( int )>( ui->lnfCombo, &QComboBox::activated, this, &PlasmaLnfPage::activated );
|
2017-12-03 18:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-12-04 12:40:13 +01:00
|
|
|
PlasmaLnfPage::activated( int index )
|
2017-12-03 18:47:41 +01:00
|
|
|
{
|
2017-12-12 11:42:35 +01:00
|
|
|
if ( ( index < 0 ) || ( index > m_enabledThemes.length() ) )
|
2017-12-03 22:09:34 +01:00
|
|
|
{
|
2017-12-04 12:40:13 +01:00
|
|
|
cDebug() << "Plasma LNF index" << index << "out of range.";
|
2017-12-03 22:09:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:42:35 +01:00
|
|
|
const ThemeInfo& lnf = m_enabledThemes.at( index );
|
2017-12-04 12:40:13 +01:00
|
|
|
cDebug() << "Changed to" << index << lnf.id << lnf.name;
|
|
|
|
emit plasmaThemeSelected( lnf.id );
|
2017-12-03 18:47:41 +01:00
|
|
|
}
|
2017-12-03 21:41:52 +01:00
|
|
|
|
|
|
|
void
|
2017-12-04 12:44:37 +01:00
|
|
|
PlasmaLnfPage::setLnfPath( const QString& path )
|
2017-12-03 21:41:52 +01:00
|
|
|
{
|
|
|
|
m_lnfPath = path;
|
|
|
|
}
|
2017-12-04 18:27:30 +01:00
|
|
|
|
|
|
|
void
|
2017-12-12 11:42:35 +01:00
|
|
|
PlasmaLnfPage::setEnabledThemes(const ThemeInfoList& themes)
|
2017-12-04 18:27:30 +01:00
|
|
|
{
|
2017-12-12 11:42:35 +01:00
|
|
|
if ( themes.isEmpty() )
|
|
|
|
m_enabledThemes = plasma_themes();
|
|
|
|
else
|
|
|
|
m_enabledThemes = themes;
|
2017-12-04 18:27:30 +01:00
|
|
|
winnowThemes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlasmaLnfPage::winnowThemes()
|
|
|
|
{
|
2017-12-12 11:42:35 +01:00
|
|
|
auto plasmaThemes = plasma_themes();
|
2017-12-04 18:27:30 +01:00
|
|
|
ui->lnfCombo->clear();
|
2017-12-12 11:42:35 +01:00
|
|
|
for ( auto& enabled_theme : m_enabledThemes )
|
|
|
|
{
|
|
|
|
ThemeInfo* t = plasmaThemes.findById( enabled_theme.id );
|
|
|
|
if ( t != nullptr )
|
|
|
|
{
|
|
|
|
enabled_theme.name = t->name;
|
|
|
|
ui->lnfCombo->addItem( enabled_theme.name );
|
|
|
|
cDebug() << "Enabled" << enabled_theme.id << "as" << enabled_theme.name;
|
|
|
|
}
|
|
|
|
}
|
2017-12-04 18:27:30 +01:00
|
|
|
}
|