1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/launcher/updatedialog_moc.h

45 lines
837 B
C
Raw Normal View History

2022-08-25 05:34:23 +02:00
/*
* updatedialog_moc.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
2022-08-25 01:14:12 +02:00
#include <QDialog>
2022-08-26 01:07:07 +02:00
#include <QNetworkAccessManager>
2022-08-25 01:14:12 +02:00
2022-08-25 03:09:20 +02:00
class JsonNode;
2022-08-25 01:14:12 +02:00
namespace Ui {
class UpdateDialog;
}
class UpdateDialog : public QDialog
{
Q_OBJECT
public:
2022-08-26 01:11:35 +02:00
explicit UpdateDialog(bool calledManually, QWidget *parent = nullptr);
2022-08-25 01:14:12 +02:00
~UpdateDialog();
static void showUpdateDialog(bool isManually);
2022-08-25 01:14:12 +02:00
2022-08-25 01:43:58 +02:00
private slots:
void on_checkOnStartup_stateChanged(int state);
2022-08-25 01:14:12 +02:00
private:
Ui::UpdateDialog *ui;
2022-08-25 03:09:20 +02:00
2022-08-25 03:34:36 +02:00
std::string currentVersion;
2022-08-25 03:09:20 +02:00
std::string platformParameter = "other";
2022-08-26 01:07:07 +02:00
QNetworkAccessManager networkManager;
bool calledManually;
2022-08-25 03:09:20 +02:00
void loadFromJson(const JsonNode & node);
2022-08-25 01:14:12 +02:00
};