2022-01-16 15:50:21 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "ui/pages/BasePage.h"
|
|
|
|
#include <Application.h>
|
|
|
|
#include "tasks/Task.h"
|
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class FlameModPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ModDownloadDialog;
|
|
|
|
|
|
|
|
namespace FlameMod {
|
|
|
|
class ListModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
class FlameModPage : public QWidget, public BasePage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit FlameModPage(ModDownloadDialog *dialog, BaseInstance *instance);
|
|
|
|
virtual ~FlameModPage();
|
|
|
|
virtual QString displayName() const override
|
|
|
|
{
|
|
|
|
return tr("CurseForge");
|
|
|
|
}
|
|
|
|
virtual QIcon icon() const override
|
|
|
|
{
|
|
|
|
return APPLICATION->getThemedIcon("flame");
|
|
|
|
}
|
|
|
|
virtual QString id() const override
|
|
|
|
{
|
|
|
|
return "curseforge";
|
|
|
|
}
|
|
|
|
virtual QString helpPage() const override
|
|
|
|
{
|
|
|
|
return "Flame-platform";
|
|
|
|
}
|
|
|
|
virtual bool shouldDisplay() const override;
|
|
|
|
|
|
|
|
void openedImpl() override;
|
|
|
|
|
|
|
|
bool eventFilter(QObject * watched, QEvent * event) override;
|
|
|
|
|
|
|
|
BaseInstance *m_instance;
|
|
|
|
|
|
|
|
private:
|
2022-02-22 06:23:21 +05:30
|
|
|
void updateSelectionButton();
|
2022-01-16 15:50:21 +05:30
|
|
|
|
|
|
|
private slots:
|
|
|
|
void triggerSearch();
|
|
|
|
void onSelectionChanged(QModelIndex first, QModelIndex second);
|
|
|
|
void onVersionSelectionChanged(QString data);
|
2022-02-22 06:23:21 +05:30
|
|
|
void onModSelected();
|
2022-01-16 15:50:21 +05:30
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::FlameModPage *ui = nullptr;
|
|
|
|
ModDownloadDialog* dialog = nullptr;
|
|
|
|
FlameMod::ListModel* listModel = nullptr;
|
|
|
|
FlameMod::IndexedPack current;
|
|
|
|
|
2022-02-04 20:54:19 +05:30
|
|
|
int selectedVersion = -1;
|
2022-01-16 15:50:21 +05:30
|
|
|
};
|