2022-01-14 14:13:42 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "ui/pages/BasePage.h"
|
|
|
|
#include <Application.h>
|
|
|
|
#include "tasks/Task.h"
|
|
|
|
#include "modplatform/modrinth/ModrinthPackIndex.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ModrinthPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ModDownloadDialog;
|
|
|
|
|
|
|
|
namespace Modrinth {
|
|
|
|
class ListModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ModrinthPage : public QWidget, public BasePage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-01-15 00:52:15 +05:30
|
|
|
explicit ModrinthPage(ModDownloadDialog *dialog, BaseInstance *instance);
|
2022-01-14 14:13:42 +05:30
|
|
|
virtual ~ModrinthPage();
|
|
|
|
virtual QString displayName() const override
|
|
|
|
{
|
2022-03-19 17:05:15 +05:30
|
|
|
return "Modrinth";
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
virtual QIcon icon() const override
|
|
|
|
{
|
2022-01-14 15:21:44 +05:30
|
|
|
return APPLICATION->getThemedIcon("modrinth");
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
virtual QString id() const override
|
|
|
|
{
|
|
|
|
return "modrinth";
|
|
|
|
}
|
|
|
|
virtual QString helpPage() const override
|
|
|
|
{
|
|
|
|
return "Modrinth-platform";
|
|
|
|
}
|
|
|
|
virtual bool shouldDisplay() const override;
|
|
|
|
|
|
|
|
void openedImpl() override;
|
|
|
|
|
|
|
|
bool eventFilter(QObject * watched, QEvent * event) override;
|
|
|
|
|
2022-01-15 13:21:47 +05:30
|
|
|
BaseInstance *m_instance;
|
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
private:
|
2022-02-22 06:04:53 +05:30
|
|
|
void updateSelectionButton();
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
private slots:
|
|
|
|
void triggerSearch();
|
|
|
|
void onSelectionChanged(QModelIndex first, QModelIndex second);
|
|
|
|
void onVersionSelectionChanged(QString data);
|
2022-02-22 06:04:53 +05:30
|
|
|
void onModSelected();
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ModrinthPage *ui = nullptr;
|
|
|
|
ModDownloadDialog* dialog = nullptr;
|
|
|
|
Modrinth::ListModel* listModel = nullptr;
|
|
|
|
Modrinth::IndexedPack current;
|
|
|
|
|
2022-02-04 20:54:19 +05:30
|
|
|
int selectedVersion = -1;
|
2022-01-14 14:13:42 +05:30
|
|
|
};
|