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