#ifndef WEBINFO_H #define WEBINFO_H #include "synchttp.h" #include #include #include #include #include #include #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) #include #include #else #include #include #endif #include #include class WebInfo : public SyncHttp { Q_OBJECT public: explicit WebInfo(QWidget* parent = nullptr); QString getTitle(QString url); QImage getFavicon(QString url, bool& isBmp); bool isBmp(QByteArray& data); signals: }; #endif // WEBINFO_H