You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.5 KiB
118 lines
3.5 KiB
/* |
|
* main.h |
|
* |
|
* Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> |
|
* KDE Frameworks 5 port Copyright (C) 2013 Jonathan Riddell <jr@jriddell.org> |
|
* Copyright (c) 2018 Kai Uwe Broulik <kde@privat.broulik.de> |
|
* Copyright (C) 2019 Benjamin Port <benjamin.port@enioka.com> |
|
* |
|
* Requires the Qt widget libraries, available at no cost at |
|
* https://www.qt.io/ |
|
* |
|
* 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 2 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, write to the Free Software |
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <KQuickAddons/ManagedConfigModule> |
|
|
|
#include <QScopedPointer> |
|
#include <QCache> |
|
|
|
class KIconTheme; |
|
class IconsSettings; |
|
class IconsData; |
|
|
|
class QQuickItem; |
|
class QTemporaryFile; |
|
|
|
namespace KIO |
|
{ |
|
class FileCopyJob; |
|
} |
|
|
|
class IconsModel; |
|
class IconSizeCategoryModel; |
|
|
|
class IconModule : public KQuickAddons::ManagedConfigModule |
|
{ |
|
Q_OBJECT |
|
Q_PROPERTY(IconsSettings *iconsSettings READ iconsSettings CONSTANT) |
|
Q_PROPERTY(IconsModel *iconsModel READ iconsModel CONSTANT) |
|
Q_PROPERTY(IconSizeCategoryModel *iconSizeCategoryModel READ iconSizeCategoryModel CONSTANT) |
|
Q_PROPERTY(bool downloadingFile READ downloadingFile NOTIFY downloadingFileChanged) |
|
|
|
public: |
|
IconModule(QObject *parent, const QVariantList &args); |
|
~IconModule() override; |
|
|
|
enum Roles { |
|
ThemeNameRole = Qt::UserRole + 1, |
|
DescriptionRole, |
|
RemovableRole, |
|
PendingDeletionRole |
|
}; |
|
|
|
IconsSettings *iconsSettings() const; |
|
IconsModel *iconsModel() const; |
|
IconSizeCategoryModel *iconSizeCategoryModel() const; |
|
|
|
bool downloadingFile() const; |
|
|
|
void load() override; |
|
void save() override; |
|
|
|
Q_INVOKABLE void ghnsEntriesChanged(const QQmlListReference &changedEntries); |
|
Q_INVOKABLE void installThemeFromFile(const QUrl &url); |
|
|
|
Q_INVOKABLE QList<int> availableIconSizes(int group) const; |
|
|
|
Q_INVOKABLE int pluginIndex(const QString &pluginName) const; |
|
|
|
// QML doesn't understand QList<QPixmap>, hence wrapped in a QVariantList |
|
Q_INVOKABLE QVariantList previewIcons(const QString &themeName, int size, qreal dpr, int limit = -1); |
|
|
|
signals: |
|
void downloadingFileChanged(); |
|
|
|
void showSuccessMessage(const QString &message); |
|
void showErrorMessage(const QString &message); |
|
|
|
void showProgress(const QString &message); |
|
void hideProgress(); |
|
|
|
private: |
|
bool isSaveNeeded() const override; |
|
|
|
void processPendingDeletions(); |
|
|
|
static QStringList findThemeDirs(const QString &archiveName); |
|
bool installThemes(const QStringList &themes, const QString &archiveName); |
|
void installThemeFile(const QString &path); |
|
|
|
void exportToKDE4(); |
|
|
|
static QPixmap getBestIcon(KIconTheme &theme, const QStringList &iconNames, int size, qreal dpr); |
|
|
|
IconsData *m_data; |
|
IconsModel *m_model; |
|
IconSizeCategoryModel *m_iconSizeCategoryModel; |
|
|
|
mutable QCache<QString, KIconTheme> m_kiconThemeCache; |
|
|
|
QScopedPointer<QTemporaryFile> m_tempInstallFile; |
|
QPointer<KIO::FileCopyJob> m_tempCopyJob; |
|
|
|
};
|
|
|