diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-05-23 20:56:40 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-05-29 18:49:46 +0200 |
commit | 6706a1d43c857e7a554338976e582a5fde7b442e (patch) | |
tree | 126b4dc586e3a8980574303b408133c477761e28 /opentrack/software-update-dialog.hpp | |
parent | 73cf0e53665098b370a8722eee9f047aab864fdf (diff) |
trackhat: add updater
Diffstat (limited to 'opentrack/software-update-dialog.hpp')
-rw-r--r-- | opentrack/software-update-dialog.hpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/opentrack/software-update-dialog.hpp b/opentrack/software-update-dialog.hpp new file mode 100644 index 00000000..1e150e62 --- /dev/null +++ b/opentrack/software-update-dialog.hpp @@ -0,0 +1,34 @@ +#pragma once + +#include <QtNetwork> +#include <QDialog> +#include <QTimer> +#include "ui_software-update.h" + +extern "C" const char* const opentrack_version; + +class update_query final : public QObject +{ + Q_OBJECT +public: + explicit update_query(QWidget* parent) : QObject{parent} {} + + QNetworkReply* r = nullptr; + QNetworkAccessManager qnam{this}; + QByteArray buf; + QTimer t{this}; + + void on_finished(); + void on_ready() { buf.append(r->readAll()); } + void maybe_show_dialog(); +}; + +class update_dialog : QDialog +{ + Q_OBJECT + friend class update_query; +private: + Ui::UpdateDialog ui; + update_query& q; + update_dialog(QWidget* parent, update_query& q, const QString& new_version); +}; |