2023-07-27 23:12:15 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* Prism Launcher - Minecraft Launcher
|
|
|
|
* Copyright (c) 2023 Trial97 <alexandru.tripon97@gmail.com>
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2023-07-27 23:12:15 +01:00
|
|
|
* 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, version 3.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2023-07-27 23:12:15 +01:00
|
|
|
* 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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2023-07-27 23:12:15 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-11-04 01:53:05 +00:00
|
|
|
*/
|
2013-08-10 17:34:08 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2013-12-31 00:24:28 +00:00
|
|
|
#include <QDir>
|
2023-07-27 23:09:21 +01:00
|
|
|
#include <QFile>
|
|
|
|
#include <QMutex>
|
2013-08-10 17:34:08 +01:00
|
|
|
#include <QtGui/QIcon>
|
2013-12-31 00:24:28 +00:00
|
|
|
#include <memory>
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2013-12-31 00:24:28 +00:00
|
|
|
#include "MMCIcon.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/Setting.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
|
|
|
#include "QObjectPtr.h"
|
2013-08-10 17:34:08 +01:00
|
|
|
|
2013-12-31 00:24:28 +00:00
|
|
|
class QFileSystemWatcher;
|
2013-08-10 17:34:08 +01:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
class IconList : public QAbstractListModel {
|
2013-12-31 00:24:28 +00:00
|
|
|
Q_OBJECT
|
2023-07-27 23:09:21 +01:00
|
|
|
public:
|
|
|
|
explicit IconList(const QStringList& builtinPaths, QString path, QObject* parent = 0);
|
|
|
|
virtual ~IconList(){};
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
QIcon getIcon(const QString& key) const;
|
|
|
|
int getIconIndex(const QString& key) const;
|
2018-02-05 01:01:12 +00:00
|
|
|
QString getDirectory() const;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2016-05-02 23:27:28 +01:00
|
|
|
virtual QStringList mimeTypes() const override;
|
|
|
|
virtual Qt::DropActions supportedDropActions() const override;
|
2023-07-27 23:09:21 +01:00
|
|
|
virtual bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) override;
|
|
|
|
virtual Qt::ItemFlags flags(const QModelIndex& index) const override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
bool addThemeIcon(const QString& key);
|
|
|
|
bool addIcon(const QString& key, const QString& name, const QString& path, const IconType type);
|
|
|
|
void saveIcon(const QString& key, const QString& path, const char* format) const;
|
|
|
|
bool deleteIcon(const QString& key);
|
|
|
|
bool trashIcon(const QString& key);
|
|
|
|
bool iconFileExists(const QString& key) const;
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
void installIcons(const QStringList& iconFiles);
|
|
|
|
void installIcon(const QString& file, const QString& name);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
const MMCIcon* icon(const QString& key) const;
|
2015-06-01 00:19:12 +01:00
|
|
|
|
2013-12-31 00:24:28 +00:00
|
|
|
void startWatching();
|
|
|
|
void stopWatching();
|
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
signals:
|
2013-12-31 00:24:28 +00:00
|
|
|
void iconUpdated(QString key);
|
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
private:
|
2013-08-10 17:34:08 +01:00
|
|
|
// hide copy constructor
|
2023-07-27 23:09:21 +01:00
|
|
|
IconList(const IconList&) = delete;
|
2013-08-10 17:34:08 +01:00
|
|
|
// hide assign op
|
2023-07-27 23:09:21 +01:00
|
|
|
IconList& operator=(const IconList&) = delete;
|
2013-08-27 04:39:49 +01:00
|
|
|
void reindex();
|
2022-06-06 18:12:50 +01:00
|
|
|
void sortIconList();
|
2013-12-31 00:24:28 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
public slots:
|
|
|
|
void directoryChanged(const QString& path);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void fileChanged(const QString& path);
|
|
|
|
void SettingChanged(const Setting& setting, QVariant value);
|
2015-01-31 15:59:03 +00:00
|
|
|
|
2023-07-27 23:09:21 +01:00
|
|
|
private:
|
2019-04-07 22:59:04 +01:00
|
|
|
shared_qobject_ptr<QFileSystemWatcher> m_watcher;
|
2013-12-31 00:24:28 +00:00
|
|
|
bool is_watching;
|
|
|
|
QMap<QString, int> name_index;
|
|
|
|
QVector<MMCIcon> icons;
|
|
|
|
QDir m_dir;
|
2013-08-10 17:34:08 +01:00
|
|
|
};
|