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
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
2013-08-17 12:40:51 +01:00
|
|
|
#include "logic/lists/InstanceList.h"
|
|
|
|
#include "logic/tasks/LoginTask.h"
|
|
|
|
#include "logic/BaseInstance.h"
|
2013-03-11 21:19:17 +00:00
|
|
|
|
|
|
|
class InstanceModel;
|
|
|
|
class InstanceProxyModel;
|
|
|
|
class KCategorizedView;
|
|
|
|
class KCategoryDrawer;
|
2013-03-24 14:36:00 +00:00
|
|
|
class MinecraftProcess;
|
|
|
|
class ConsoleWindow;
|
2013-08-04 03:19:10 +01:00
|
|
|
class OneSixAssets;
|
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-05-08 18:56:43 +01:00
|
|
|
/*!
|
|
|
|
* The currently selected instance.
|
|
|
|
*/
|
2013-07-28 23:59:35 +01:00
|
|
|
Q_PROPERTY(BaseInstance* selectedInstance READ selectedInstance STORED false)
|
2013-05-08 18:56:43 +01:00
|
|
|
|
2013-01-09 18:22:22 +00:00
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
|
|
|
|
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-07-28 23:59:35 +01:00
|
|
|
BaseInstance *selectedInstance();
|
2013-01-30 05:52:37 +00:00
|
|
|
|
2013-01-09 18:22:22 +00:00
|
|
|
private slots:
|
|
|
|
void on_actionAbout_triggered();
|
|
|
|
|
|
|
|
void on_actionAddInstance_triggered();
|
|
|
|
|
2013-03-19 05:24:34 +00:00
|
|
|
void on_actionChangeInstGroup_triggered();
|
2013-01-09 18:22:22 +00:00
|
|
|
|
2013-08-10 17:34:08 +01:00
|
|
|
void on_actionChangeInstIcon_triggered();
|
|
|
|
|
2013-03-19 05:24:34 +00:00
|
|
|
void on_actionViewInstanceFolder_triggered();
|
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();
|
|
|
|
|
|
|
|
void on_actionViewCentralModsFolder_triggered();
|
|
|
|
|
|
|
|
void on_actionCheckUpdate_triggered();
|
|
|
|
|
|
|
|
void on_actionSettings_triggered();
|
|
|
|
|
|
|
|
void on_actionReportBug_triggered();
|
|
|
|
|
|
|
|
void on_actionNews_triggered();
|
|
|
|
|
2013-01-30 05:52:37 +00:00
|
|
|
void on_mainToolBar_visibilityChanged(bool);
|
|
|
|
|
2013-01-31 20:31:16 +00:00
|
|
|
void on_instanceView_customContextMenuRequested(const QPoint &pos);
|
|
|
|
|
2013-02-05 22:34:20 +00:00
|
|
|
void on_actionLaunchInstance_triggered();
|
|
|
|
|
2013-06-23 21:10:32 +01:00
|
|
|
void on_actionDeleteInstance_triggered();
|
|
|
|
|
|
|
|
void on_actionRenameInstance_triggered();
|
|
|
|
|
|
|
|
void on_actionMakeDesktopShortcut_triggered();
|
2013-02-05 22:34:20 +00:00
|
|
|
|
2013-03-28 16:33:31 +00:00
|
|
|
void on_actionChangeInstMCVersion_triggered();
|
|
|
|
|
2013-07-07 03:11:24 +01:00
|
|
|
void on_actionEditInstMods_triggered();
|
|
|
|
|
2013-05-08 18:56:43 +01:00
|
|
|
void doLogin(const QString& errorMsg = "");
|
2013-02-05 22:34:20 +00:00
|
|
|
|
|
|
|
|
2013-08-08 23:26:35 +01:00
|
|
|
void onLoginComplete();
|
2013-05-08 18:56:43 +01:00
|
|
|
|
|
|
|
|
2013-08-03 22:58:39 +01:00
|
|
|
void onGameUpdateComplete();
|
2013-05-08 18:56:43 +01:00
|
|
|
void onGameUpdateError(QString error);
|
2013-05-06 23:19:20 +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-07-14 21:01:30 +01:00
|
|
|
void on_actionInstanceSettings_triggered();
|
|
|
|
|
2013-03-11 21:19:17 +00:00
|
|
|
public slots:
|
|
|
|
void instanceActivated ( QModelIndex );
|
2013-07-14 21:01:30 +01:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
void instanceChanged ( QModelIndex );
|
2013-05-06 23:19:20 +01:00
|
|
|
|
|
|
|
void startTask(Task *task);
|
2013-05-08 18:56:43 +01:00
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
void launchInstance(BaseInstance *inst, LoginResponse response);
|
2013-03-11 21:19:17 +00:00
|
|
|
|
2013-08-11 23:39:19 +01:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
|
2013-01-09 18:22:22 +00:00
|
|
|
private:
|
|
|
|
Ui::MainWindow *ui;
|
2013-03-11 21:19:17 +00:00
|
|
|
KCategoryDrawer * drawer;
|
|
|
|
KCategorizedView * view;
|
|
|
|
InstanceModel * model;
|
|
|
|
InstanceProxyModel * proxymodel;
|
2013-02-19 18:15:22 +00:00
|
|
|
InstanceList instList;
|
2013-03-24 14:36:00 +00:00
|
|
|
MinecraftProcess *proc;
|
|
|
|
ConsoleWindow *console;
|
2013-08-04 03:19:10 +01:00
|
|
|
OneSixAssets *assets_downloader;
|
2013-05-06 23:19:20 +01:00
|
|
|
|
2013-05-08 18:56:43 +01:00
|
|
|
// A pointer to the instance we are actively doing stuff with.
|
|
|
|
// This is set when the user launches an instance and is used to refer to that
|
|
|
|
// instance throughout the launching process.
|
2013-07-28 23:59:35 +01:00
|
|
|
BaseInstance *m_activeInst;
|
2013-08-03 22:58:39 +01:00
|
|
|
LoginResponse m_activeLogin;
|
2013-05-08 18:56:43 +01:00
|
|
|
|
2013-05-06 23:19:20 +01:00
|
|
|
Task *m_versionLoadTask;
|
2013-01-09 18:22:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|