2017-01-08 03:58:05 +00:00
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-05-17 17:53:22 +01:00
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-05-17 17:53:22 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
#pragma once
|
2013-05-17 17:53:22 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QNetworkReply>
|
2013-10-06 00:13:40 +01:00
|
|
|
#include <memory>
|
2015-02-04 20:10:10 +00:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseVersion.h"
|
|
|
|
#include "BaseVersionList.h"
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
#include "multimc_logic_export.h"
|
2016-11-27 00:43:20 +00:00
|
|
|
#include <net/NetJob.h>
|
2015-09-05 17:46:57 +01:00
|
|
|
|
2013-06-22 22:34:33 +01:00
|
|
|
class LWJGLVersion;
|
2013-10-06 00:13:40 +01:00
|
|
|
typedef std::shared_ptr<LWJGLVersion> PtrLWJGLVersion;
|
2013-06-22 22:34:33 +01:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
class MULTIMC_LOGIC_EXPORT LWJGLVersion : public BaseVersion
|
2013-05-17 17:53:22 +01:00
|
|
|
{
|
2015-02-02 00:09:28 +00:00
|
|
|
public:
|
|
|
|
LWJGLVersion(const QString &name, const QString &url)
|
|
|
|
: m_name(name), m_url(url)
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-02-02 00:09:28 +00:00
|
|
|
virtual QString descriptor()
|
2013-06-22 22:34:33 +01:00
|
|
|
{
|
2015-02-02 00:09:28 +00:00
|
|
|
return m_name;
|
2013-11-04 01:53:05 +00:00
|
|
|
}
|
|
|
|
|
2015-02-02 00:09:28 +00:00
|
|
|
virtual QString name()
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2015-02-02 00:09:28 +00:00
|
|
|
virtual QString typeString() const
|
|
|
|
{
|
|
|
|
return QObject::tr("Upstream");
|
|
|
|
}
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
QString url() const
|
|
|
|
{
|
|
|
|
return m_url;
|
|
|
|
}
|
|
|
|
|
2013-05-17 17:53:22 +01:00
|
|
|
protected:
|
|
|
|
QString m_name;
|
2013-08-07 00:38:18 +01:00
|
|
|
QString m_url;
|
2013-05-17 17:53:22 +01:00
|
|
|
};
|
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
class MULTIMC_LOGIC_EXPORT LWJGLVersionList : public BaseVersionList
|
2013-05-17 17:53:22 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LWJGLVersionList(QObject *parent = 0);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
bool isLoaded() override
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
|
|
|
return m_vlist.length() > 0;
|
|
|
|
}
|
2015-02-02 00:09:28 +00:00
|
|
|
virtual const BaseVersionPtr at(int i) const override
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
2015-02-02 00:09:28 +00:00
|
|
|
return m_vlist[i];
|
2013-11-04 01:53:05 +00:00
|
|
|
}
|
2015-02-02 00:09:28 +00:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual Task* getLoadTask() override
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
2015-02-02 00:09:28 +00:00
|
|
|
return nullptr;
|
2013-11-04 01:53:05 +00:00
|
|
|
}
|
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual void sortVersions() override {};
|
2015-02-02 00:09:28 +00:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual void updateListData(QList< BaseVersionPtr > versions) override {};
|
2015-02-02 00:09:28 +00:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
int count() const override
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
|
|
|
return m_vlist.length();
|
|
|
|
}
|
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
virtual int rowCount(const QModelIndex &parent) const override
|
2013-11-04 01:53:05 +00:00
|
|
|
{
|
|
|
|
return count();
|
|
|
|
}
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual int columnCount(const QModelIndex &parent) const override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2016-11-27 00:43:20 +00:00
|
|
|
public slots:
|
2013-05-17 17:53:22 +01:00
|
|
|
virtual void loadList();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2016-11-27 00:43:20 +00:00
|
|
|
private slots:
|
|
|
|
void rssFailed(const QString & reason);
|
|
|
|
void rssSucceeded();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-05-17 17:53:22 +01:00
|
|
|
private:
|
2013-06-22 22:34:33 +01:00
|
|
|
QList<PtrLWJGLVersion> m_vlist;
|
2016-11-27 00:43:20 +00:00
|
|
|
Net::Download::Ptr m_rssDL;
|
|
|
|
NetJobPtr m_rssDLJob;
|
|
|
|
QByteArray m_rssData;
|
|
|
|
bool m_loading = false;
|
2013-05-17 17:53:22 +01:00
|
|
|
};
|