2022-06-02 01:33:51 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-11-06 15:38:54 +05:30
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-06-02 01:33:51 +05:30
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-11-01 22:32:24 +05:30
|
|
|
* Copyright (C) 2022 TheKodeToad <TheKodeToad@proton.me>
|
2022-06-02 01:33:51 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "ModDownloadTask.h"
|
2022-07-15 18:04:11 +05:30
|
|
|
#include "minecraft/mod/ModFolderModel.h"
|
|
|
|
#include "ui/pages/BasePageProvider.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ModDownloadDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PageContainer;
|
|
|
|
class QDialogButtonBox;
|
2022-11-02 14:13:42 +05:30
|
|
|
class ModPage;
|
2022-05-14 23:16:52 +05:30
|
|
|
class ModrinthModPage;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-07-15 19:50:08 +05:30
|
|
|
class ModDownloadDialog final : public QDialog, public BasePageProvider
|
2022-01-14 14:13:42 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2022-11-02 14:13:42 +05:30
|
|
|
public:
|
2022-07-15 18:04:11 +05:30
|
|
|
explicit ModDownloadDialog(const std::shared_ptr<ModFolderModel>& mods, QWidget* parent, BaseInstance* instance);
|
|
|
|
~ModDownloadDialog() override = default;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
QString dialogTitle() override;
|
2022-07-15 18:04:11 +05:30
|
|
|
QList<BasePage*> getPages() override;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-07-15 18:04:11 +05:30
|
|
|
void addSelectedMod(QString name = QString(), ModDownloadTask* task = nullptr);
|
|
|
|
void removeSelectedMod(QString name = QString());
|
|
|
|
bool isModSelected(QString name, QString filename) const;
|
|
|
|
bool isModSelected(QString name) const;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-02-22 06:04:06 +05:30
|
|
|
const QList<ModDownloadTask*> getTasks();
|
2022-11-02 14:13:42 +05:30
|
|
|
const std::shared_ptr<ModFolderModel>& mods;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-11-01 22:28:22 +05:30
|
|
|
bool selectPage(QString pageId);
|
2022-11-01 23:42:27 +05:30
|
|
|
ModPage* getSelectedPage();
|
|
|
|
|
2022-11-02 14:13:42 +05:30
|
|
|
public slots:
|
2022-02-22 07:30:50 +05:30
|
|
|
void confirm();
|
2022-01-14 14:13:42 +05:30
|
|
|
void accept() override;
|
|
|
|
void reject() override;
|
|
|
|
|
2022-11-02 14:13:42 +05:30
|
|
|
private slots:
|
2022-07-15 19:50:08 +05:30
|
|
|
void selectedPageChanged(BasePage* previous, BasePage* selected);
|
|
|
|
|
2022-11-02 14:13:42 +05:30
|
|
|
private:
|
|
|
|
Ui::ModDownloadDialog* ui = nullptr;
|
|
|
|
PageContainer* m_container = nullptr;
|
|
|
|
QDialogButtonBox* m_buttons = nullptr;
|
|
|
|
QVBoxLayout* m_verticalLayout = nullptr;
|
|
|
|
ModPage* m_selectedPage = nullptr;
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-02-22 06:04:06 +05:30
|
|
|
QHash<QString, ModDownloadTask*> modTask;
|
2022-11-02 14:13:42 +05:30
|
|
|
BaseInstance* m_instance;
|
2022-01-14 14:13:42 +05:30
|
|
|
};
|