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