1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-14 11:02:19 +01:00
falkonOfficial/src/lib/preferences/thememanager.cpp
2018-03-02 10:48:55 +01:00

158 lines
4.7 KiB
C++

/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "thememanager.h"
#include "ui_thememanager.h"
#include "qztools.h"
#include "settings.h"
#include "datapaths.h"
#include "licenseviewer.h"
#include "preferences.h"
#include "desktopfile.h"
#include "mainapplication.h"
#include <QDir>
ThemeManager::ThemeManager(QWidget* parent, Preferences* preferences)
: QWidget()
, ui(new Ui::ThemeManager)
, m_preferences(preferences)
{
ui->setupUi(parent);
ui->listWidget->setLayoutDirection(Qt::LeftToRight);
ui->license->hide();
Settings settings;
settings.beginGroup("Themes");
m_activeTheme = settings.value("activeTheme", DEFAULT_THEME_NAME).toString();
settings.endGroup();
const QStringList themePaths = DataPaths::allPaths(DataPaths::Themes);
foreach (const QString &path, themePaths) {
QDir dir(path);
QStringList list = dir.entryList(QDir::AllDirs | QDir::NoDotAndDotDot);
foreach (const QString &name, list) {
Theme themeInfo = parseTheme(dir.absoluteFilePath(name) + QLatin1Char('/'), name);
if (!themeInfo.isValid) {
continue;
}
QListWidgetItem* item = new QListWidgetItem(ui->listWidget);
item->setText(themeInfo.name);
item->setIcon(themeInfo.icon);
item->setData(Qt::UserRole, name);
if (m_activeTheme == name) {
ui->listWidget->setCurrentItem(item);
}
ui->listWidget->addItem(item);
}
}
connect(ui->listWidget, SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)), this, SLOT(currentChanged()));
connect(ui->license, SIGNAL(clicked(QPoint)), this, SLOT(showLicense()));
currentChanged();
}
void ThemeManager::showLicense()
{
QListWidgetItem* currentItem = ui->listWidget->currentItem();
if (!currentItem) {
return;
}
Theme currentTheme = m_themeHash[currentItem->data(Qt::UserRole).toString()];
LicenseViewer* v = new LicenseViewer(m_preferences);
v->setText(currentTheme.license);
v->show();
}
void ThemeManager::currentChanged()
{
QListWidgetItem* currentItem = ui->listWidget->currentItem();
if (!currentItem) {
return;
}
Theme currentTheme = m_themeHash[currentItem->data(Qt::UserRole).toString()];
ui->name->setText(currentTheme.name);
ui->author->setText(currentTheme.author);
ui->descirption->setText(currentTheme.description);
ui->license->setHidden(currentTheme.license.isEmpty());
}
ThemeManager::Theme ThemeManager::parseTheme(const QString &path, const QString &name)
{
Theme info;
info.isValid = false;
if (!QFile(path + "main.css").exists() || !QFile(path + "metadata.desktop").exists()) {
info.isValid = false;
return info;
}
DesktopFile metadata(path + QSL("metadata.desktop"));
info.name = metadata.name();
info.description = metadata.comment();
info.author = metadata.value(QSL("X-Falkon-Author")).toString();
const QString iconName = metadata.icon();
if (!iconName.isEmpty()) {
if (QFileInfo::exists(path + iconName)) {
info.icon = QIcon(path + iconName);
} else {
info.icon = QIcon::fromTheme(iconName);
}
}
const QString licensePath = metadata.value(QSL("X-Falkon-License")).toString();
if (!licensePath.isEmpty() && QFileInfo::exists(path + licensePath)) {
info.license = QzTools::readAllFileContents(path + licensePath);
}
if (info.name.isEmpty() || m_themeHash.contains(name)) {
return info;
}
info.isValid = true;
m_themeHash.insert(name, info);
return info;
}
void ThemeManager::save()
{
QListWidgetItem* currentItem = ui->listWidget->currentItem();
if (!currentItem) {
return;
}
Settings settings;
settings.beginGroup("Themes");
settings.setValue("activeTheme", currentItem->data(Qt::UserRole));
settings.endGroup();
}
ThemeManager::~ThemeManager()
{
delete ui;
}