45d1319891
This makes it so that we don't need a reference to the parent page in the model. It will be useful once we change the page from a widget-based one to a QML page. It also makes tasks be created in the dialog instead of the page, so that the dialog can also have the necessary information to mark versions as selected / deselected easily. It also makes the task pointers into smart pointers. Signed-off-by: flow <flowlnlnln@gmail.com>
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "ui/pages/modplatform/ModModel.h"
|
|
#include "ui/pages/modplatform/flame/FlameResourcePages.h"
|
|
|
|
namespace ResourceDownload {
|
|
|
|
class FlameModModel : public ModModel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FlameModModel(const BaseInstance&);
|
|
~FlameModModel() override = default;
|
|
|
|
private:
|
|
[[nodiscard]] QString debugName() const override { return Flame::debugName() + " (Model)"; }
|
|
[[nodiscard]] QString metaEntryBase() const override { return Flame::metaEntryBase(); }
|
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
void loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr) override;
|
|
|
|
auto documentToArray(QJsonDocument& obj) const -> QJsonArray override;
|
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
|
static const char* sorts[6];
|
|
inline auto getSorts() const -> const char** override { return sorts; };
|
|
};
|
|
|
|
} // namespace ResourceDownload
|