mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-06 05:16:59 +03:00
NOISSUE Added FTB Pack logos to chooser and fixed some missing includes
This commit is contained in:
parent
67d2f283da
commit
bbd523acb8
14 changed files with 306 additions and 191 deletions
|
|
@ -3,6 +3,13 @@
|
|||
#include <QAbstractListModel>
|
||||
#include <QSortFilterProxyModel>
|
||||
#include <modplatform/ftb/PackHelpers.h>
|
||||
#include <QThreadPool>
|
||||
|
||||
#include <RWStorage.h>
|
||||
|
||||
#include <QPixmap>
|
||||
|
||||
typedef QMap<QString, QPixmap> FtbLogoMap;
|
||||
|
||||
class FtbFilterModel : public QSortFilterProxyModel
|
||||
{
|
||||
|
|
@ -13,8 +20,9 @@ public:
|
|||
ByGameVersion
|
||||
};
|
||||
const QMap<QString, Sorting> getAvailableSortings();
|
||||
Sorting getCurrentSorting();
|
||||
QString translateCurrentSorting();
|
||||
void setSorting(Sorting sorting);
|
||||
Sorting getCurrentSorting();
|
||||
|
||||
protected:
|
||||
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
|
||||
|
|
@ -31,9 +39,22 @@ class FtbListModel : public QAbstractListModel
|
|||
Q_OBJECT
|
||||
private:
|
||||
FtbModpackList modpacks;
|
||||
QThreadPool *m_logoPool;
|
||||
QStringList m_failedLogos;
|
||||
QStringList m_loadingLogos;
|
||||
FtbLogoMap m_logoMap;
|
||||
|
||||
void requestLogo(QString file);
|
||||
QString translatePackType(FtbPackType type) const;
|
||||
|
||||
|
||||
private slots:
|
||||
void logoFailed(QString logo);
|
||||
void logoLoaded(QString logo, QPixmap out);
|
||||
|
||||
public:
|
||||
FtbListModel(QObject *parent);
|
||||
~FtbListModel();
|
||||
int rowCount(const QModelIndex &parent) const override;
|
||||
int columnCount(const QModelIndex &parent) const override;
|
||||
QVariant data(const QModelIndex &index, int role) const override;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue