加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webmultimediadownload.hh 735 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef WEBMULTIMEDIADOWNLOAD_HH
#define WEBMULTIMEDIADOWNLOAD_HH
#include "dictionary.hh"
#include <QtNetwork>
namespace Dictionary {
/// Downloads data from the web, wrapped as a dictionary's DataRequest. This
/// is useful for multimedia files, like sounds and pronunciations.
class WebMultimediaDownload: public DataRequest
{
Q_OBJECT
QNetworkReply * reply;
QNetworkAccessManager & mgr;
int redirectCount;
public:
WebMultimediaDownload( QUrl const &, QNetworkAccessManager & );
/// Checks if the given url is an http request for an audio file.
static bool isAudioUrl( QUrl const & );
virtual void cancel();
private slots:
void replyFinished( QNetworkReply * );
};
}
#endif // WEBMULTIMEDIADOWNLOAD_HH
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化