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