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

35 lines
543 B
C
Raw Normal View History

2022-08-25 01:14:12 +02:00
#ifndef UPDATEDIALOG_MOC_H
#define UPDATEDIALOG_MOC_H
#include <QDialog>
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:
explicit UpdateDialog(QWidget *parent = nullptr);
~UpdateDialog();
static void showUpdateDialog();
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";
void loadFromJson(const JsonNode & node);
2022-08-25 01:14:12 +02:00
};
#endif // UPDATEDIALOG_MOC_H