6a18079953
Firstly, this abstract away behavior in the mod download models that can also be applied to other types of resources into a superclass, allowing other resource types to be implemented without so much code duplication. For that, this also generalizes the APIs used (currently, ModrinthAPI and FlameAPI) to be able to make requests to other types of resources. It also does a general cleanup of both of those. In particular, this makes use of std::optional instead of invalid values for errors and, well, optional values :p This is a squash of some commits that were becoming too interlaced together to be cleanly separated. Signed-off-by: flow <flowlnlnln@gmail.com>
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QDialogButtonBox>
|
|
#include <QLayout>
|
|
|
|
#include "ui/pages/BasePageProvider.h"
|
|
|
|
class ResourceDownloadTask;
|
|
class ResourcePage;
|
|
class ResourceFolderModel;
|
|
class PageContainer;
|
|
class QVBoxLayout;
|
|
class QDialogButtonBox;
|
|
|
|
class ResourceDownloadDialog : public QDialog, public BasePageProvider {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ResourceDownloadDialog(QWidget* parent, const std::shared_ptr<ResourceFolderModel> base_model);
|
|
|
|
void initializeContainer();
|
|
void connectButtons();
|
|
|
|
//: String that gets appended to the download dialog title ("Download " + resourcesString())
|
|
[[nodiscard]] virtual QString resourceString() const { return tr("resources"); }
|
|
|
|
QString dialogTitle() override { return tr("Download %1").arg(resourceString()); };
|
|
|
|
bool selectPage(QString pageId);
|
|
ResourcePage* getSelectedPage();
|
|
|
|
void addResource(QString name, ResourceDownloadTask* task);
|
|
void removeResource(QString name);
|
|
[[nodiscard]] bool isSelected(QString name, QString filename = "") const;
|
|
|
|
const QList<ResourceDownloadTask*> getTasks();
|
|
[[nodiscard]] const std::shared_ptr<ResourceFolderModel> getBaseModel() const { return m_base_model; }
|
|
|
|
protected slots:
|
|
void selectedPageChanged(BasePage* previous, BasePage* selected);
|
|
|
|
virtual void confirm();
|
|
|
|
protected:
|
|
const std::shared_ptr<ResourceFolderModel> m_base_model;
|
|
|
|
PageContainer* m_container = nullptr;
|
|
ResourcePage* m_selectedPage = nullptr;
|
|
|
|
QDialogButtonBox m_buttons;
|
|
QVBoxLayout m_vertical_layout;
|
|
|
|
QHash<QString, ResourceDownloadTask*> m_selected;
|
|
};
|