pollymc/launcher/minecraft/MinecraftLoadAndCheck.h

49 lines
1.2 KiB
C
Raw Normal View History

2021-01-18 12:58:54 +05:30
/* Copyright 2013-2021 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
#include <QObject>
#include <QList>
#include <QUrl>
#include "tasks/Task.h"
2022-01-25 03:25:57 +05:30
#include <quazip/quazip.h>
#include "QObjectPtr.h"
class MinecraftVersion;
class MinecraftInstance;
class MinecraftLoadAndCheck : public Task
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit MinecraftLoadAndCheck(MinecraftInstance *inst, QObject *parent = 0);
virtual ~MinecraftLoadAndCheck() {};
void executeTask() override;
private slots:
2018-07-15 18:21:05 +05:30
void subtaskSucceeded();
void subtaskFailed(QString error);
private:
2018-07-15 18:21:05 +05:30
MinecraftInstance *m_inst = nullptr;
2021-11-22 04:06:55 +05:30
Task::Ptr m_task;
2018-07-15 18:21:05 +05:30
QString m_preFailure;
QString m_fail_reason;
};