| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #pragma once
- #include <QThread>
- #include <QString>
- class AutoUpdateThread : public QThread {
- Q_OBJECT
- bool manualUpdate;
- bool repairMode;
- bool user_confirmed = false;
- virtual void run() override;
- void info(const QString &title, const QString &text);
- int queryUpdate(bool manualUpdate, const char *text_utf8);
- bool queryRepair();
- private slots:
- void infoMsg(const QString &title, const QString &text);
- int queryUpdateSlot(bool manualUpdate, const QString &text);
- bool queryRepairSlot();
- public:
- AutoUpdateThread(bool manualUpdate_, bool repairMode_ = false)
- : manualUpdate(manualUpdate_), repairMode(repairMode_)
- {
- }
- };
- 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_) {}
- };
|