2014-11-02 19:49:58 +01:00
|
|
|
/* Copyright 2013-2014 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
|
|
|
|
|
|
|
#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
|
|
|
|
2014-05-08 21:20:10 +02:00
|
|
|
#include "logic/InstanceList.h"
|
2013-08-17 13:40:51 +02:00
|
|
|
#include "logic/BaseInstance.h"
|
2013-11-20 18:31:15 -06:00
|
|
|
#include "logic/auth/MojangAccount.h"
|
2014-05-08 21:20:10 +02:00
|
|
|
#include "logic/net/NetJob.h"
|
2013-11-20 18:31:15 -06:00
|
|
|
|
2013-11-03 21:28:04 +01:00
|
|
|
class QToolButton;
|
2013-08-25 22:48:41 +02:00
|
|
|
class LabeledToolButton;
|
2013-08-25 01:32:42 +02:00
|
|
|
class QLabel;
|
2013-03-24 15:36:00 +01:00
|
|
|
class MinecraftProcess;
|
|
|
|
class ConsoleWindow;
|
2014-02-15 22:26:44 +01:00
|
|
|
class BaseProfilerFactory;
|
2014-07-16 00:13:40 +02:00
|
|
|
class GenericPageProvider;
|
2013-01-14 17:42:38 -06:00
|
|
|
|
2013-01-15 18:46:27 -06:00
|
|
|
namespace Ui
|
|
|
|
{
|
2013-01-09 12:22:22 -06:00
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-01-09 12:22:22 -06:00
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-01-29 23:52:37 -06:00
|
|
|
void closeEvent(QCloseEvent *event);
|
2013-02-13 00:35:35 +01:00
|
|
|
|
2013-05-08 12:56:43 -05:00
|
|
|
// Browser Dialog
|
|
|
|
void openWebPage(QUrl url);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-10-14 02:59:21 +01:00
|
|
|
void checkSetDefaultJava();
|
2014-01-01 14:56:26 +00:00
|
|
|
void checkMigrateLegacyAssets();
|
2014-07-27 15:50:03 +02:00
|
|
|
void checkInstancePathForProblems();
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2013-11-03 21:28:04 +01: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
|
|
|
|
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
|
|
|
|
|
|
|
// void on_instanceView_customContextMenuRequested(const QPoint &pos);
|
|
|
|
|
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
|
|
|
|
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-11-28 20:45:52 -06:00
|
|
|
/*!
|
|
|
|
* Launches the currently selected instance with the default account.
|
|
|
|
* If no default account is selected, prompts the user to pick an account.
|
|
|
|
*/
|
2014-02-15 22:26:44 +01:00
|
|
|
void doLaunch(bool online = true, BaseProfilerFactory *profiler = 0);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-11-20 18:31:15 -06:00
|
|
|
/*!
|
|
|
|
* Launches the given instance with the given account.
|
|
|
|
* This function assumes that the given account has a valid, usable access token.
|
|
|
|
*/
|
2014-03-30 20:11:05 +02:00
|
|
|
void launchInstance(InstancePtr instance, AuthSessionPtr session, BaseProfilerFactory *profiler = 0);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-11-22 12:47:39 -06:00
|
|
|
/*!
|
|
|
|
* Prepares the given instance for launch with the given account.
|
|
|
|
*/
|
2014-03-30 20:11:05 +02:00
|
|
|
void updateInstance(InstancePtr instance, AuthSessionPtr account, BaseProfilerFactory *profiler = 0);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-05-08 12:56:43 -05:00
|
|
|
void onGameUpdateError(QString error);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-08-09 00:26:35 +02:00
|
|
|
void taskStart();
|
|
|
|
void taskEnd();
|
2013-03-11 22:19:17 +01:00
|
|
|
|
2013-11-23 01:41:28 +01:00
|
|
|
void instanceEnded();
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2013-12-31 01:24:28 +01:00
|
|
|
// called when an icon is changed in the icon model.
|
|
|
|
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();
|
|
|
|
|
2014-03-30 20:11:05 +02:00
|
|
|
void skinJobFinished();
|
2013-11-03 21:28:04 +01:00
|
|
|
public
|
|
|
|
slots:
|
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
|
|
|
|
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
|
|
|
|
2013-12-04 12:34:12 -06:00
|
|
|
void updateAvailable(QString repo, QString versionName, int versionId);
|
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
|
|
|
/*!
|
|
|
|
* Runs the DownloadUpdateTask and installs updates.
|
|
|
|
*/
|
2014-02-23 16:14:24 -05:00
|
|
|
void downloadUpdates(QString repo, int versionId, bool installOnExit = false);
|
2013-11-27 22:39:49 +00:00
|
|
|
|
2013-08-12 00:39:19 +02:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
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);
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2014-01-06 10:01:40 +01:00
|
|
|
void setSelectedInstanceById(const QString &id);
|
|
|
|
|
2013-01-09 12:22:22 -06:00
|
|
|
private:
|
|
|
|
Ui::MainWindow *ui;
|
2014-02-04 01:40:51 +01:00
|
|
|
class GroupView *view;
|
2013-10-06 03:07:57 +02:00
|
|
|
InstanceProxyModel *proxymodel;
|
2014-03-30 20:11:05 +02:00
|
|
|
NetJobPtr skin_download_job;
|
2013-03-24 15:36:00 +01:00
|
|
|
MinecraftProcess *proc;
|
|
|
|
ConsoleWindow *console;
|
2013-10-06 03:07:57 +02:00
|
|
|
LabeledToolButton *renameButton;
|
2013-11-03 21:28:04 +01:00
|
|
|
QToolButton *changeIconButton;
|
2014-02-23 16:14:24 -05:00
|
|
|
QToolButton *newsLabel;
|
2013-10-06 03:07:57 +02:00
|
|
|
|
2014-07-16 00:13:40 +02:00
|
|
|
std::shared_ptr<GenericPageProvider> m_globalSettingsProvider;
|
|
|
|
|
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
|
|
|
|
2013-05-06 17:19:20 -05:00
|
|
|
Task *m_versionLoadTask;
|
2013-10-26 02:28:50 +01:00
|
|
|
|
|
|
|
QLabel *m_statusLeft;
|
2014-05-17 16:23:48 +02:00
|
|
|
class ServerStatus *m_statusRight;
|
2013-11-27 16:56:15 +00:00
|
|
|
|
2013-11-27 22:39:49 +00:00
|
|
|
QMenu *accountMenu;
|
|
|
|
QToolButton *accountMenuButton;
|
|
|
|
QAction *manageAccountsAction;
|
2013-01-09 12:22:22 -06:00
|
|
|
};
|