2022-01-16 10:20:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "FlameModPage.h"
|
2022-03-03 00:17:10 +00:00
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
2022-01-16 10:20:21 +00:00
|
|
|
|
|
|
|
namespace FlameMod {
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
class ListModel : public ModPlatform::ListModel {
|
2022-01-16 10:20:21 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
public:
|
2022-03-07 20:46:18 +00:00
|
|
|
ListModel(FlameModPage* parent) : ModPlatform::ListModel(parent) {}
|
|
|
|
;
|
|
|
|
virtual ~ListModel() = default;
|
2022-03-03 02:01:23 +00:00
|
|
|
|
|
|
|
private:
|
2022-03-07 20:46:18 +00:00
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override { FlameMod::loadIndexedPack(m, obj); };
|
|
|
|
|
|
|
|
QJsonArray documentToArray(QJsonDocument& obj) const override { return obj.array(); };
|
|
|
|
|
|
|
|
static const char* sorts[6];
|
|
|
|
const char** getSorts() const override { return sorts; };
|
2022-01-16 10:20:21 +00:00
|
|
|
};
|
|
|
|
|
2022-03-07 20:46:18 +00:00
|
|
|
} // namespace FlameMod
|