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