pollymc/launcher/java/JavaInstallList.h

82 lines
1.9 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 <QAbstractListModel>
2015-02-09 06:21:14 +05:30
#include "BaseVersionList.h"
#include "tasks/Task.h"
#include "JavaCheckerJob.h"
#include "JavaInstall.h"
#include "QObjectPtr.h"
class JavaListLoadTask;
class JavaInstallList : public BaseVersionList
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
enum class Status
{
NotDone,
InProgress,
Done
};
public:
2018-07-15 18:21:05 +05:30
explicit JavaInstallList(QObject *parent = 0);
2021-11-22 04:06:55 +05:30
Task::Ptr getLoadTask() override;
2018-07-15 18:21:05 +05:30
bool isLoaded() override;
const BaseVersion::Ptr at(int i) const override;
2018-07-15 18:21:05 +05:30
int count() const override;
void sortVersions() override;
2018-07-15 18:21:05 +05:30
QVariant data(const QModelIndex &index, int role) const override;
RoleList providesRoles() const override;
public slots:
void updateListData(QList<BaseVersion::Ptr> versions) override;
protected:
2018-07-15 18:21:05 +05:30
void load();
2021-11-22 04:06:55 +05:30
Task::Ptr getCurrentTask();
protected:
2018-07-15 18:21:05 +05:30
Status m_status = Status::NotDone;
shared_qobject_ptr<JavaListLoadTask> m_loadTask;
QList<BaseVersion::Ptr> m_vlist;
};
class JavaListLoadTask : public Task
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit JavaListLoadTask(JavaInstallList *vlist);
virtual ~JavaListLoadTask();
2018-07-15 18:21:05 +05:30
void executeTask() override;
2013-12-11 09:24:39 +05:30
public slots:
2018-07-15 18:21:05 +05:30
void javaCheckerFinished();
protected:
shared_qobject_ptr<JavaCheckerJob> m_job;
2018-07-15 18:21:05 +05:30
JavaInstallList *m_list;
JavaInstall *m_currentRecommended;
};