mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
added a border to selected/mouseHover elements in the grid view
This commit is contained in:
26
common/check_new_version.h
Normal file
26
common/check_new_version.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef __CHECKUPDATE_H
|
||||
#define __CHECKUPDATE_H
|
||||
|
||||
#include "http_worker.h"
|
||||
#include "yacreader_global.h"
|
||||
|
||||
#include <QByteArray>
|
||||
#include <QThread>
|
||||
|
||||
class HttpVersionChecker : public HttpWorker
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
HttpVersionChecker();
|
||||
public slots:
|
||||
|
||||
private:
|
||||
bool found;
|
||||
private slots:
|
||||
bool checkNewVersion(QString sourceContent);
|
||||
void checkNewVersion(const QByteArray & data);
|
||||
signals:
|
||||
void newVersionDetected();
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user