downloadmanager.h
上传用户:huahtool
上传日期:2015-12-10
资源大小:1089k
文件大小:5k
源码类别:

浏览器

开发平台:

Visual C++

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the demonstration applications of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef DOWNLOADMANAGER_H
  38. #define DOWNLOADMANAGER_H
  39. #include "ui_downloads.h"
  40. #include "ui_downloaditem.h"
  41. #include <QtNetwork/QNetworkReply>
  42. #include <QtCore/QFile>
  43. #include <QtCore/QTime>
  44. class DownloadItem : public QWidget, public Ui_DownloadItem
  45. {
  46.     Q_OBJECT
  47. signals:
  48.     void statusChanged();
  49. public:
  50.     DownloadItem(QNetworkReply *reply = 0, bool requestFileName = false, QWidget *parent = 0);
  51.     bool downloading() const;
  52.     bool downloadedSuccessfully() const;
  53.     QUrl m_url;
  54.     QFile m_output;
  55.     QNetworkReply *m_reply;
  56. private slots:
  57.     void stop();
  58.     void tryAgain();
  59.     void open();
  60.     void downloadReadyRead();
  61.     void error(QNetworkReply::NetworkError code);
  62.     void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
  63.     void metaDataChanged();
  64.     void finished();
  65. private:
  66.     void getFileName();
  67.     void init();
  68.     void updateInfoLabel();
  69.     QString dataString(int size) const;
  70.     QString saveFileName(const QString &directory) const;
  71.     bool m_requestFileName;
  72.     qint64 m_bytesReceived;
  73.     QTime m_downloadTime;
  74. };
  75. class AutoSaver;
  76. class DownloadModel;
  77. QT_BEGIN_NAMESPACE
  78. class QFileIconProvider;
  79. QT_END_NAMESPACE
  80. class DownloadManager : public QDialog, public Ui_DownloadDialog
  81. {
  82.     Q_OBJECT
  83.     Q_PROPERTY(RemovePolicy removePolicy READ removePolicy WRITE setRemovePolicy)
  84.     Q_ENUMS(RemovePolicy)
  85. public:
  86.     enum RemovePolicy {
  87.         Never,
  88.         Exit,
  89.         SuccessFullDownload
  90.     };
  91.     DownloadManager(QWidget *parent = 0);
  92.     ~DownloadManager();
  93.     int activeDownloads() const;
  94.     RemovePolicy removePolicy() const;
  95.     void setRemovePolicy(RemovePolicy policy);
  96. public slots:
  97.     void download(const QNetworkRequest &request, bool requestFileName = false);
  98.     inline void download(const QUrl &url, bool requestFileName = false)
  99.         { download(QNetworkRequest(url), requestFileName); }
  100.     void handleUnsupportedContent(QNetworkReply *reply, bool requestFileName = false);
  101.     void cleanup();
  102. private slots:
  103.     void save() const;
  104.     void updateRow();
  105. private:
  106.     void addItem(DownloadItem *item);
  107.     void updateItemCount();
  108.     void load();
  109.     AutoSaver *m_autoSaver;
  110.     DownloadModel *m_model;
  111.     QNetworkAccessManager *m_manager;
  112.     QFileIconProvider *m_iconProvider;
  113.     QList<DownloadItem*> m_downloads;
  114.     RemovePolicy m_removePolicy;
  115.     friend class DownloadModel;
  116. };
  117. class DownloadModel : public QAbstractListModel
  118. {
  119.     friend class DownloadManager;
  120.     Q_OBJECT
  121. public:
  122.     DownloadModel(DownloadManager *downloadManager, QObject *parent = 0);
  123.     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  124.     int rowCount(const QModelIndex &parent = QModelIndex()) const;
  125.     bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
  126. private:
  127.     DownloadManager *m_downloadManager;
  128. };
  129. #endif // DOWNLOADMANAGER_H