2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2017-01-20 12:03:27 +01:00
|
|
|
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#ifndef DOWNLOADITEM_H
|
|
|
|
#define DOWNLOADITEM_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QFile>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QBasicTimer>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QNetworkReply>
|
2011-03-02 16:57:41 +01:00
|
|
|
#include <QTime>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DownloadItem;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QListWidgetItem;
|
2015-05-24 19:22:32 +02:00
|
|
|
class QWebEngineDownloadItem;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-10-07 15:37:49 +02:00
|
|
|
class DownloadManager;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2017-08-25 17:11:29 +02:00
|
|
|
class FALKON_EXPORT DownloadItem : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-10-04 20:59:29 +02:00
|
|
|
explicit DownloadItem(QListWidgetItem* item, QWebEngineDownloadItem* downloadItem, const QString &path, const QString &fileName, bool openFile, DownloadManager* manager);
|
2011-03-02 16:57:41 +01:00
|
|
|
bool isDownloading() { return m_downloading; }
|
|
|
|
bool isCancelled();
|
|
|
|
QTime remainingTime() { return m_remTime; }
|
|
|
|
double currentSpeed() { return m_currSpeed; }
|
|
|
|
int progress();
|
|
|
|
~DownloadItem();
|
|
|
|
|
|
|
|
static QString remaingTimeToString(QTime time);
|
|
|
|
static QString currentSpeedToString(double speed);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void deleteItem(DownloadItem*);
|
2011-04-24 22:40:35 +02:00
|
|
|
void downloadFinished(bool success);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private slots:
|
2011-05-25 14:26:36 +02:00
|
|
|
void parentResized(const QSize &size);
|
2011-03-02 16:57:41 +01:00
|
|
|
void finished();
|
|
|
|
void downloadProgress(qint64 received, qint64 total);
|
2015-05-24 19:22:32 +02:00
|
|
|
void stop();
|
2011-03-02 16:57:41 +01:00
|
|
|
void openFile();
|
|
|
|
void openFolder();
|
2011-05-25 14:26:36 +02:00
|
|
|
void customContextMenuRequested(const QPoint &pos);
|
2011-03-02 16:57:41 +01:00
|
|
|
void clear();
|
|
|
|
|
2011-04-08 18:52:14 +02:00
|
|
|
void copyDownloadLink();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2011-12-29 22:28:04 +01:00
|
|
|
void startDownloading();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void updateDownloadInfo(double currSpeed, qint64 received, qint64 total);
|
2011-03-17 17:03:04 +01:00
|
|
|
void mouseDoubleClickEvent(QMouseEvent* e);
|
2015-05-24 19:22:32 +02:00
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::DownloadItem* ui;
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
QListWidgetItem* m_item;
|
2015-05-24 19:22:32 +02:00
|
|
|
QWebEngineDownloadItem* m_download;
|
2011-03-02 16:57:41 +01:00
|
|
|
QString m_path;
|
|
|
|
QString m_fileName;
|
2015-05-24 19:22:32 +02:00
|
|
|
QTime m_downTimer;
|
2011-03-02 16:57:41 +01:00
|
|
|
QTime m_remTime;
|
|
|
|
QBasicTimer m_timer;
|
2011-04-08 18:52:14 +02:00
|
|
|
QUrl m_downUrl;
|
2015-10-04 20:59:29 +02:00
|
|
|
bool m_openFile;
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
bool m_downloading;
|
2011-11-04 22:34:45 +01:00
|
|
|
bool m_downloadStopped;
|
2011-03-02 16:57:41 +01:00
|
|
|
double m_currSpeed;
|
|
|
|
qint64 m_received;
|
|
|
|
qint64 m_total;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOWNLOADITEM_H
|