e2ab2aea32
TIL that zip resource packs, when disabled, actually have the effect of not showing up in the game at all. Since this can be useful to someone, I moved the logic for it to the resources. Signed-off-by: flow <flowlnlnln@gmail.com>
75 lines
2.0 KiB
C++
75 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include "Application.h"
|
|
#include "minecraft/MinecraftInstance.h"
|
|
#include "ui/pages/BasePage.h"
|
|
|
|
class ResourceFolderModel;
|
|
|
|
namespace Ui {
|
|
class ExternalResourcesPage;
|
|
}
|
|
|
|
/* This page is used as a base for pages in which the user can manage external resources
|
|
* related to the game, such as mods, shaders or resource packs. */
|
|
class ExternalResourcesPage : public QMainWindow, public BasePage {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ExternalResourcesPage(BaseInstance* instance, std::shared_ptr<ResourceFolderModel> model, QWidget* parent = nullptr);
|
|
virtual ~ExternalResourcesPage();
|
|
|
|
virtual QString displayName() const override = 0;
|
|
virtual QIcon icon() const override = 0;
|
|
virtual QString id() const override = 0;
|
|
virtual QString helpPage() const override = 0;
|
|
|
|
virtual bool shouldDisplay() const override = 0;
|
|
|
|
void openedImpl() override;
|
|
void closedImpl() override;
|
|
|
|
void retranslate() override;
|
|
|
|
protected:
|
|
bool eventFilter(QObject* obj, QEvent* ev) override;
|
|
bool listFilter(QKeyEvent* ev);
|
|
QMenu* createPopupMenu() override;
|
|
|
|
public slots:
|
|
bool current(const QModelIndex& current, const QModelIndex& previous);
|
|
|
|
virtual bool onSelectionChanged(const QModelIndex& current, const QModelIndex& previous);
|
|
|
|
protected slots:
|
|
void itemActivated(const QModelIndex& index);
|
|
void filterTextChanged(const QString& newContents);
|
|
virtual void runningStateChanged(bool running);
|
|
|
|
virtual void addItem();
|
|
virtual void removeItem();
|
|
|
|
virtual void enableItem();
|
|
virtual void disableItem();
|
|
|
|
virtual void viewFolder();
|
|
virtual void viewConfigs();
|
|
|
|
void ShowContextMenu(const QPoint& pos);
|
|
|
|
protected:
|
|
BaseInstance* m_instance = nullptr;
|
|
|
|
Ui::ExternalResourcesPage* ui = nullptr;
|
|
std::shared_ptr<ResourceFolderModel> m_model;
|
|
QSortFilterProxyModel* m_filterModel = nullptr;
|
|
|
|
QString m_fileSelectionFilter;
|
|
QString m_viewFilter;
|
|
|
|
bool m_controlsEnabled = true;
|
|
};
|