obs-studio/UI/win-update/win-update.hpp

56 lines
1.0 KiB
C++
Raw Normal View History

2017-02-20 04:46:29 -08:00
#pragma once
#include <QThread>
#include <QString>
class AutoUpdateThread : public QThread {
Q_OBJECT
bool manualUpdate;
2022-04-12 01:10:00 -07:00
bool repairMode;
2017-02-20 04:46:29 -08:00
bool user_confirmed = false;
virtual void run() override;
void info(const QString &title, const QString &text);
int queryUpdate(bool manualUpdate, const char *text_utf8);
2022-04-12 01:10:00 -07:00
bool queryRepair();
2017-02-20 04:46:29 -08:00
private slots:
void infoMsg(const QString &title, const QString &text);
int queryUpdateSlot(bool manualUpdate, const QString &text);
2022-04-12 01:10:00 -07:00
bool queryRepairSlot();
2017-02-20 04:46:29 -08:00
public:
2022-04-12 01:10:00 -07:00
AutoUpdateThread(bool manualUpdate_, bool repairMode_ = false)
: manualUpdate(manualUpdate_), repairMode(repairMode_)
{
}
2017-02-20 04:46:29 -08:00
};
class WhatsNewInfoThread : public QThread {
Q_OBJECT
virtual void run() override;
signals:
void Result(const QString &text);
public:
inline WhatsNewInfoThread() {}
};
class WhatsNewBrowserInitThread : public QThread {
Q_OBJECT
QString url;
virtual void run() override;
signals:
void Result(const QString &url);
public:
inline WhatsNewBrowserInitThread(const QString &url_) : url(url_) {}
};