2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2014-06-02 04:19:53 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
#include <QMainWindow>
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/pages/BasePage.h"
|
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
#include <Application.h>
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
class ModFolderModel;
|
2014-06-02 04:19:53 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ModFolderPage;
|
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
class ModFolderPage : public QMainWindow, public BasePage
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2014-06-02 04:19:53 +05:30
|
|
|
|
|
|
|
public:
|
2019-07-16 05:00:53 +05:30
|
|
|
explicit ModFolderPage(
|
|
|
|
BaseInstance *inst,
|
2019-08-04 06:57:53 +05:30
|
|
|
std::shared_ptr<ModFolderModel> mods,
|
2019-07-16 05:00:53 +05:30
|
|
|
QString id,
|
|
|
|
QString iconName,
|
|
|
|
QString displayName,
|
|
|
|
QString helpPage = "",
|
|
|
|
QWidget *parent = 0
|
|
|
|
);
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~ModFolderPage();
|
2015-05-13 03:13:11 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void setFilter(const QString & filter)
|
|
|
|
{
|
|
|
|
m_fileSelectionFilter = filter;
|
|
|
|
}
|
2015-05-13 03:13:11 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual QString displayName() const override
|
|
|
|
{
|
|
|
|
return m_displayName;
|
|
|
|
}
|
|
|
|
virtual QIcon icon() const override
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
return APPLICATION->getThemedIcon(m_iconName);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
virtual QString id() const override
|
|
|
|
{
|
|
|
|
return m_id;
|
|
|
|
}
|
|
|
|
virtual QString helpPage() const override
|
|
|
|
{
|
|
|
|
return m_helpName;
|
|
|
|
}
|
|
|
|
virtual bool shouldDisplay() const override;
|
2014-07-12 21:28:23 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual void openedImpl() override;
|
|
|
|
virtual void closedImpl() override;
|
2014-06-02 04:19:53 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
bool eventFilter(QObject *obj, QEvent *ev) override;
|
|
|
|
bool modListFilter(QKeyEvent *ev);
|
2019-07-16 05:00:53 +05:30
|
|
|
QMenu * createPopupMenu() override;
|
2014-07-12 21:28:23 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
protected:
|
2019-07-15 04:37:21 +05:30
|
|
|
BaseInstance *m_inst = nullptr;
|
2014-07-12 21:28:23 +05:30
|
|
|
|
2016-11-26 19:29:27 +05:30
|
|
|
protected:
|
2019-07-15 04:37:21 +05:30
|
|
|
Ui::ModFolderPage *ui = nullptr;
|
2019-08-04 06:57:53 +05:30
|
|
|
std::shared_ptr<ModFolderModel> m_mods;
|
2019-07-15 04:37:21 +05:30
|
|
|
QSortFilterProxyModel *m_filterModel = nullptr;
|
2018-07-15 18:21:05 +05:30
|
|
|
QString m_iconName;
|
|
|
|
QString m_id;
|
|
|
|
QString m_displayName;
|
|
|
|
QString m_helpName;
|
|
|
|
QString m_fileSelectionFilter;
|
|
|
|
QString m_viewFilter;
|
2019-07-15 04:37:21 +05:30
|
|
|
bool m_controlsEnabled = true;
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
public
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void modCurrent(const QModelIndex ¤t, const QModelIndex &previous);
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
private
|
|
|
|
slots:
|
2019-08-05 00:43:50 +05:30
|
|
|
void modItemActivated(const QModelIndex &index);
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_filterTextChanged(const QString & newContents);
|
2019-07-15 04:37:21 +05:30
|
|
|
void on_RunningState_changed(bool running);
|
2019-07-16 05:00:53 +05:30
|
|
|
void on_actionAdd_triggered();
|
|
|
|
void on_actionRemove_triggered();
|
|
|
|
void on_actionEnable_triggered();
|
|
|
|
void on_actionDisable_triggered();
|
2022-01-14 14:13:42 +05:30
|
|
|
void on_actionInstall_mods_triggered();
|
2019-07-16 05:00:53 +05:30
|
|
|
void on_actionView_Folder_triggered();
|
|
|
|
void on_actionView_configs_triggered();
|
2019-07-25 04:32:30 +05:30
|
|
|
void ShowContextMenu(const QPoint &pos);
|
2014-06-02 04:19:53 +05:30
|
|
|
};
|
2014-07-10 04:17:08 +05:30
|
|
|
|
|
|
|
class CoreModFolderPage : public ModFolderPage
|
|
|
|
{
|
|
|
|
public:
|
2019-08-04 06:57:53 +05:30
|
|
|
explicit CoreModFolderPage(BaseInstance *inst, std::shared_ptr<ModFolderModel> mods, QString id,
|
2018-07-15 18:21:05 +05:30
|
|
|
QString iconName, QString displayName, QString helpPage = "",
|
|
|
|
QWidget *parent = 0);
|
|
|
|
virtual ~CoreModFolderPage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool shouldDisplay() const;
|
2014-07-10 04:17:08 +05:30
|
|
|
};
|