2019-01-16 21:14:24 +01:00
|
|
|
/* Copyright 2013-2019 MultiMC Contributors
|
2013-01-09 12:22:22 -06:00
|
|
|
*
|
|
|
|
* 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
|
2013-10-06 03:07:57 +02:00
|
|
|
*
|
2013-01-09 12:22:22 -06:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-11-04 02:53:05 +01:00
|
|
|
#pragma once
|
2013-01-09 12:22:22 -06:00
|
|
|
|
2015-10-20 17:18:53 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2013-01-09 12:22:22 -06:00
|
|
|
#include <QMainWindow>
|
2013-11-12 09:23:39 +01:00
|
|
|
#include <QProcess>
|
2014-01-12 18:28:42 +00:00
|
|
|
#include <QTimer>
|
2013-01-09 12:22:22 -06:00
|
|
|
|
2015-02-09 01:51:14 +01:00
|
|
|
#include "BaseInstance.h"
|
2016-02-27 19:58:40 +01:00
|
|
|
#include "minecraft/auth/MojangAccount.h"
|
2015-02-09 01:51:14 +01:00
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include "updater/GoUpdate.h"
|
2013-11-20 18:31:15 -06:00
|
|
|
|
2015-07-05 01:54:30 +02:00
|
|
|
class LaunchController;
|
2015-01-27 22:31:07 +01:00
|
|
|
class NewsChecker;
|
2015-01-29 09:03:11 +01:00
|
|
|
class NotificationChecker;
|
2013-11-03 21:28:04 +01:00
|
|
|
class QToolButton;
|
2015-02-01 11:44:47 +01:00
|
|
|
class InstanceProxyModel;
|
2013-08-25 22:48:41 +02:00
|
|
|
class LabeledToolButton;
|
2013-08-25 01:32:42 +02:00
|
|
|
class QLabel;
|
2015-05-11 22:21:37 +02:00
|
|
|
class MinecraftLauncher;
|
2014-02-15 22:26:44 +01:00
|
|
|
class BaseProfilerFactory;
|
2015-10-20 17:18:53 +02:00
|
|
|
class GroupView;
|
|
|
|
class ServerStatus;
|
2018-03-15 09:27:45 +01:00
|
|
|
class KonamiCode;
|
2018-03-19 02:36:12 +01:00
|
|
|
class InstanceTask;
|
2013-01-09 12:22:22 -06:00
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
2018-07-15 14:51:05 +02:00
|
|
|
Q_OBJECT
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
class Ui;
|
2015-10-20 17:18:53 +02:00
|
|
|
|
2013-01-09 12:22:22 -06:00
|
|
|
public:
|
2018-07-15 14:51:05 +02:00
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
bool eventFilter(QObject *obj, QEvent *ev) override;
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
void changeEvent(QEvent * event) override;
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void checkInstancePathForProblems();
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void updatesAllowedChanged(bool allowed);
|
2017-05-01 01:27:10 +02:00
|
|
|
signals:
|
2018-07-15 14:51:05 +02:00
|
|
|
void isClosing();
|
2017-05-01 01:27:10 +02:00
|
|
|
|
2015-10-20 17:18:53 +02:00
|
|
|
private slots:
|
2018-07-15 14:51:05 +02:00
|
|
|
void onCatToggled(bool);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionAbout_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionAddInstance_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionREDDIT_triggered();
|
2015-09-15 23:02:21 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionDISCORD_triggered();
|
2016-01-09 01:39:51 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionCopyInstance_triggered();
|
2013-11-03 21:28:04 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionChangeInstGroup_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionChangeInstIcon_triggered();
|
|
|
|
void on_changeIconButton_clicked(bool)
|
|
|
|
{
|
|
|
|
on_actionChangeInstIcon_triggered();
|
|
|
|
}
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionViewInstanceFolder_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionConfig_Folder_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionViewSelectedInstFolder_triggered();
|
2018-07-27 23:57:09 +02:00
|
|
|
|
|
|
|
void on_actionViewSelectedMCFolder_triggered();
|
2013-03-19 06:24:34 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void refreshInstances();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionViewCentralModsFolder_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void checkForUpdates();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionSettings_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionInstanceSettings_triggered();
|
2014-05-11 20:06:06 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionManageAccounts_triggered();
|
2013-11-20 12:20:35 -06:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionReportBug_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionPatreon_triggered();
|
2014-04-11 02:59:30 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionMoreNews_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void newsButtonClicked();
|
2014-01-02 14:37:56 -06:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_mainToolBar_visibilityChanged(bool);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionLaunchInstance_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionLaunchInstanceOffline_triggered();
|
2014-01-27 03:00:49 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionDeleteInstance_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void deleteGroup();
|
2016-04-11 01:30:50 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionExportInstance_triggered();
|
2015-02-12 22:01:20 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionRenameInstance_triggered();
|
|
|
|
void on_renameButton_clicked(bool)
|
|
|
|
{
|
|
|
|
on_actionRenameInstance_triggered();
|
|
|
|
}
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionEditInstance_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionEditInstNotes_triggered();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionWorlds_triggered();
|
2016-11-02 02:33:55 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void on_actionScreenshots_triggered();
|
2014-05-18 23:12:35 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void taskEnd();
|
2013-03-11 22:19:17 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
/**
|
|
|
|
* called when an icon is changed in the icon model.
|
|
|
|
*/
|
|
|
|
void iconUpdated(QString);
|
2013-12-31 01:24:28 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void showInstanceContextMenu(const QPoint &);
|
2014-02-23 16:14:24 -05:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void updateToolsMenu();
|
2014-02-16 11:49:55 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void skinJobFinished();
|
2015-10-20 17:18:53 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void instanceActivated(QModelIndex);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void instanceChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
2013-07-14 22:01:30 +02:00
|
|
|
|
2019-06-23 14:54:17 +02:00
|
|
|
void instanceSelectRequest(QString id);
|
2019-06-17 16:13:52 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void instanceDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
2015-04-07 01:21:03 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void selectionBad();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void startTask(Task *task);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void updateAvailable(GoUpdate::Status status);
|
2013-12-02 00:55:24 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void updateNotAvailable();
|
2014-07-14 00:57:54 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void notificationsChanged();
|
2014-01-03 19:19:27 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void activeAccountChanged();
|
2013-11-27 16:56:15 +00:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void changeActiveAccount();
|
2013-11-27 22:39:49 +00:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void repopulateAccountsMenu();
|
2014-01-02 13:25:38 -06:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void updateNewsLabel();
|
2014-01-12 18:28:42 +00:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
/*!
|
|
|
|
* Runs the DownloadTask and installs updates.
|
|
|
|
*/
|
|
|
|
void downloadUpdates(GoUpdate::Status status);
|
2013-11-27 22:39:49 +00:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void droppedURLs(QList<QUrl> urls);
|
2017-04-22 06:11:26 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void konamiTriggered();
|
2018-03-15 09:27:45 +01:00
|
|
|
|
2019-06-01 12:28:53 +02:00
|
|
|
void globalSettingsClosed();
|
|
|
|
|
2015-10-20 17:18:53 +02:00
|
|
|
private:
|
2018-07-15 14:51:05 +02:00
|
|
|
void addInstance(QString url = QString());
|
|
|
|
void activateInstance(InstancePtr instance);
|
|
|
|
void setCatBackground(bool enabled);
|
|
|
|
void updateInstanceToolIcon(QString new_icon);
|
|
|
|
void setSelectedInstanceById(const QString &id);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
void runModalTask(Task *task);
|
|
|
|
void instanceFromInstanceTask(InstanceTask *task);
|
|
|
|
void finalizeInstance(InstancePtr inst);
|
2015-01-27 22:31:07 +01:00
|
|
|
|
2013-01-09 12:22:22 -06:00
|
|
|
private:
|
2018-07-15 14:51:05 +02:00
|
|
|
std::unique_ptr<Ui> ui;
|
|
|
|
|
|
|
|
// these are managed by Qt's memory management model!
|
|
|
|
GroupView *view = nullptr;
|
|
|
|
InstanceProxyModel *proxymodel = nullptr;
|
|
|
|
QToolButton *newsLabel = nullptr;
|
|
|
|
QLabel *m_statusLeft = nullptr;
|
|
|
|
ServerStatus *m_statusRight = nullptr;
|
|
|
|
QMenu *accountMenu = nullptr;
|
|
|
|
QToolButton *accountMenuButton = nullptr;
|
|
|
|
KonamiCode * secretEventFilter = nullptr;
|
|
|
|
|
|
|
|
unique_qobject_ptr<NetJob> skin_download_job;
|
|
|
|
unique_qobject_ptr<NewsChecker> m_newsChecker;
|
|
|
|
unique_qobject_ptr<NotificationChecker> m_notificationChecker;
|
|
|
|
|
|
|
|
InstancePtr m_selectedInstance;
|
|
|
|
QString m_currentInstIcon;
|
|
|
|
|
|
|
|
// managed by the application object
|
|
|
|
Task *m_versionLoadTask = nullptr;
|
2013-01-09 12:22:22 -06:00
|
|
|
};
|