2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-11-23 06:11:28 +05:30
|
|
|
#include <QMainWindow>
|
2014-01-06 07:22:51 +05:30
|
|
|
#include <QSystemTrayIcon>
|
2015-07-10 04:41:06 +05:30
|
|
|
#include "launch/LaunchTask.h"
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
class QPushButton;
|
|
|
|
class PageContainer;
|
2013-11-23 06:11:28 +05:30
|
|
|
class ConsoleWindow : public QMainWindow
|
2013-02-22 22:48:23 +05:30
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
Q_OBJECT
|
2013-02-22 22:48:23 +05:30
|
|
|
|
|
|
|
public:
|
2015-07-10 04:41:06 +05:30
|
|
|
explicit ConsoleWindow(std::shared_ptr<LaunchTask> proc, QWidget *parent = 0);
|
2014-08-21 03:53:20 +05:30
|
|
|
virtual ~ConsoleWindow();
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
/**
|
|
|
|
* @brief specify if the window is allowed to close
|
|
|
|
* @param mayclose
|
|
|
|
* used to keep it alive while MC runs
|
|
|
|
*/
|
|
|
|
void setMayClose(bool mayclose);
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-11-23 06:11:28 +05:30
|
|
|
signals:
|
|
|
|
void isClosing();
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
private
|
|
|
|
slots:
|
2013-03-22 19:10:55 +05:30
|
|
|
void on_closeButton_clicked();
|
2013-09-07 02:10:50 +05:30
|
|
|
void on_btnKillMinecraft_clicked();
|
2014-05-18 22:37:01 +05:30
|
|
|
|
2015-07-05 05:24:30 +05:30
|
|
|
void onSucceeded();
|
|
|
|
void onFailed(QString reason);
|
2015-07-26 21:25:29 +05:30
|
|
|
void onProgressRequested(Task *task);
|
2013-11-23 06:11:28 +05:30
|
|
|
|
2015-05-12 01:51:37 +05:30
|
|
|
// FIXME: add handlers for the other MinecraftLauncher signals (pre/post launch command
|
2013-11-23 06:11:28 +05:30
|
|
|
// failures)
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2014-01-06 07:22:51 +05:30
|
|
|
void iconActivated(QSystemTrayIcon::ActivationReason);
|
|
|
|
void toggleConsole();
|
2013-02-22 22:48:23 +05:30
|
|
|
protected:
|
2013-03-22 19:10:55 +05:30
|
|
|
void closeEvent(QCloseEvent *);
|
2013-02-22 22:48:23 +05:30
|
|
|
|
|
|
|
private:
|
2015-07-10 04:41:06 +05:30
|
|
|
std::shared_ptr<LaunchTask> m_proc;
|
2013-11-23 06:11:28 +05:30
|
|
|
bool m_mayclose = true;
|
2014-01-06 07:22:51 +05:30
|
|
|
QSystemTrayIcon *m_trayIcon = nullptr;
|
2014-06-30 05:32:57 +05:30
|
|
|
PageContainer *m_container = nullptr;
|
|
|
|
QPushButton *m_closeButton = nullptr;
|
|
|
|
QPushButton *m_killButton = nullptr;
|
2013-02-22 22:48:23 +05:30
|
|
|
};
|