summaryrefslogtreecommitdiffstats
path: root/application/pages/modplatform/ftb/FtbListModel.h
diff options
context:
space:
mode:
authorJamie Mansfield <jmansfield@cadixdev.org>2020-11-14 18:06:27 +0000
committerJamie Mansfield <jmansfield@cadixdev.org>2020-11-29 13:46:14 +0000
commitb8c6a42f498823151a61b5d56c8cc587fd88c728 (patch)
tree638fd8dea39a31fe5144271f715d97702af8fd53 /application/pages/modplatform/ftb/FtbListModel.h
parented11d33054307be9a8f52689e2706085c3742420 (diff)
downloadMultiMC-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar
MultiMC-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar.gz
MultiMC-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar.lz
MultiMC-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar.xz
MultiMC-b8c6a42f498823151a61b5d56c8cc587fd88c728.zip
NOISSUE Add sorting options to FTB pack install page
Diffstat (limited to 'application/pages/modplatform/ftb/FtbListModel.h')
-rw-r--r--application/pages/modplatform/ftb/FtbListModel.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/application/pages/modplatform/ftb/FtbListModel.h b/application/pages/modplatform/ftb/FtbListModel.h
new file mode 100644
index 00000000..9c057d73
--- /dev/null
+++ b/application/pages/modplatform/ftb/FtbListModel.h
@@ -0,0 +1,68 @@
+#pragma once
+
+#include <QAbstractListModel>
+
+#include "modplatform/modpacksch/FTBPackManifest.h"
+#include "net/NetJob.h"
+#include <QIcon>
+
+namespace Ftb {
+
+struct Logo {
+ QString fullpath;
+ NetJobPtr downloadJob;
+ QIcon result;
+ bool failed = false;
+};
+
+typedef QMap<QString, Logo> LogoMap;
+typedef std::function<void(QString)> LogoCallback;
+
+class ListModel : public QAbstractListModel
+{
+ Q_OBJECT
+
+public:
+ ListModel(QObject *parent);
+ virtual ~ListModel();
+
+ int rowCount(const QModelIndex &parent) const override;
+ int columnCount(const QModelIndex &parent) const override;
+ QVariant data(const QModelIndex &index, int role) const override;
+
+ void getLogo(const QString &logo, const QString &logoUrl, LogoCallback callback);
+ void searchWithTerm(const QString & term);
+
+private slots:
+ void performSearch();
+ void searchRequestFinished();
+ void searchRequestFailed(QString reason);
+
+ void requestPack();
+ void packRequestFinished();
+ void packRequestFailed(QString reason);
+
+ void logoFailed(QString logo);
+ void logoLoaded(QString logo, bool stale);
+
+private:
+ void requestLogo(QString file, QString url);
+
+private:
+ QList<ModpacksCH::Modpack> modpacks;
+ LogoMap m_logoMap;
+
+ QString currentSearchTerm;
+ enum SearchState {
+ None,
+ CanPossiblyFetchMore,
+ ResetRequested,
+ Finished
+ } searchState = None;
+ NetJobPtr jobPtr;
+ int currentPack;
+ QList<int> remainingPacks;
+ QByteArray response;
+};
+
+}