// SPDX-FileCopyrightText: 2023 flowln // // SPDX-License-Identifier: GPL-3.0-only #pragma once #include #include #include "ResourceDownloadTask.h" #include "modplatform/ModIndex.h" #include "modplatform/ResourceAPI.h" #include "ui/pages/BasePage.h" #include "ui/pages/modplatform/ResourceModel.h" #include "ui/widgets/ProgressWidget.h" namespace Ui { class ResourcePage; } class BaseInstance; namespace ResourceDownload { class ResourceDownloadDialog; class ResourceModel; class ResourcePage : public QWidget, public BasePage { Q_OBJECT public: using DownloadTaskPtr = shared_qobject_ptr; ~ResourcePage() override; /* Affects what the user sees */ auto displayName() const -> QString override = 0; auto icon() const -> QIcon override = 0; auto id() const -> QString override = 0; auto helpPage() const -> QString override = 0; bool shouldDisplay() const override = 0; /* Used internally */ virtual auto metaEntryBase() const -> QString = 0; virtual auto debugName() const -> QString = 0; //: The plural version of 'resource' virtual inline QString resourcesString() const { return tr("resources"); } //: The singular version of 'resources' virtual inline QString resourceString() const { return tr("resource"); } /* Features this resource's page supports */ virtual bool supportsFiltering() const = 0; void retranslate() override; void openedImpl() override; auto eventFilter(QObject* watched, QEvent* event) -> bool override; /** Get the current term in the search bar. */ auto getSearchTerm() const -> QString; /** Programatically set the term in the search bar. */ void setSearchTerm(QString); bool setCurrentPack(ModPlatform::IndexedPack::Ptr); auto getCurrentPack() const -> ModPlatform::IndexedPack::Ptr; auto getDialog() const -> const ResourceDownloadDialog* { return m_parentDialog; } auto getModel() const -> ResourceModel* { return m_model; } protected: ResourcePage(ResourceDownloadDialog* parent, BaseInstance&); void addSortings(); public slots: virtual void updateUi(const QModelIndex& index); virtual void updateSelectionButton(); virtual void versionListUpdated(const QModelIndex& index); void addResourceToDialog(ModPlatform::IndexedPack::Ptr, ModPlatform::IndexedVersion&); void removeResourceFromDialog(const QString& pack_name); virtual void removeResourceFromPage(const QString& name); virtual void addResourceToPage(ModPlatform::IndexedPack::Ptr, ModPlatform::IndexedVersion&, std::shared_ptr); virtual void modelReset(); QList selectedPacks() { return m_model->selectedPacks(); } bool hasSelectedPacks() { return !(m_model->selectedPacks().isEmpty()); } virtual void openProject(QVariant projectID); protected slots: virtual void triggerSearch() = 0; void onSelectionChanged(QModelIndex first, QModelIndex second); void onVersionSelectionChanged(int index); void onResourceSelected(); void onResourceToggle(const QModelIndex& index); /** Associates regex expressions to pages in the order they're given in the map. */ virtual QMap urlHandlers() const = 0; virtual void openUrl(const QUrl&); public: BaseInstance& m_baseInstance; protected: Ui::ResourcePage* m_ui; ResourceDownloadDialog* m_parentDialog = nullptr; ResourceModel* m_model = nullptr; int m_selectedVersionIndex = -1; ProgressWidget m_fetchProgress; // Used to do instant searching with a delay to cache quick changes QTimer m_searchTimer; bool m_doNotJumpToMod = false; QSet m_enableQueue; }; } // namespace ResourceDownload