2013-11-04 07:23:05 +05:30
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2013-02-22 22:48:23 +05:30
|
|
|
|
|
|
|
#include <QDialog>
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "logic/MinecraftProcess.h"
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
2013-02-22 22:48:23 +05:30
|
|
|
class ConsoleWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConsoleWindow : public QDialog
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
Q_OBJECT
|
2013-02-22 22:48:23 +05:30
|
|
|
|
|
|
|
public:
|
2013-09-07 02:10:50 +05:30
|
|
|
explicit ConsoleWindow(MinecraftProcess *proc, QWidget *parent = 0);
|
2013-03-22 19:10:55 +05:30
|
|
|
~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-04 07:23:05 +05:30
|
|
|
public
|
|
|
|
slots:
|
2013-03-22 19:10:55 +05:30
|
|
|
/**
|
|
|
|
* @brief write a string
|
|
|
|
* @param data the string
|
|
|
|
* @param mode the WriteMode
|
|
|
|
* lines have to be put through this as a whole!
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
void write(QString data, MessageLevel::Enum level = MessageLevel::MultiMC);
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief write a colored paragraph
|
|
|
|
* @param data the string
|
|
|
|
* @param color the css color name
|
|
|
|
* this will only insert a single paragraph.
|
|
|
|
* \n are ignored. a real \n is always appended.
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
void writeColor(QString data, const char *color = nullptr);
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief clear the text widget
|
|
|
|
*/
|
|
|
|
void clear();
|
2013-02-22 22:48:23 +05:30
|
|
|
|
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();
|
2013-10-22 22:55:10 +05:30
|
|
|
void onEnded(BaseInstance *instance);
|
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:
|
2013-03-22 19:10:55 +05:30
|
|
|
Ui::ConsoleWindow *ui;
|
2013-09-07 02:10:50 +05:30
|
|
|
MinecraftProcess *proc;
|
2013-03-22 19:10:55 +05:30
|
|
|
bool m_mayclose;
|
2013-02-22 22:48:23 +05:30
|
|
|
};
|
|
|
|
|