1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/downloads/downloaditem.h

98 lines
2.6 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - Qt web browser
* 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>
#include <QBasicTimer>
#include <QUrl>
#include <QNetworkReply>
2011-03-02 16:57:41 +01:00
#include <QTime>
#include "qzcommon.h"
2011-03-02 16:57:41 +01:00
namespace Ui
{
class DownloadItem;
2011-03-02 16:57:41 +01:00
}
class QListWidgetItem;
class QWebEngineDownloadItem;
class DownloadManager;
class QUPZILLA_EXPORT DownloadItem : public QWidget
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
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*);
void downloadFinished(bool success);
2011-03-02 16:57:41 +01:00
private slots:
void parentResized(const QSize &size);
2011-03-02 16:57:41 +01:00
void finished();
void downloadProgress(qint64 received, qint64 total);
void stop();
2011-03-02 16:57:41 +01:00
void openFile();
void openFolder();
void customContextMenuRequested(const QPoint &pos);
2011-03-02 16:57:41 +01:00
void clear();
void copyDownloadLink();
2011-03-02 16:57:41 +01:00
private:
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);
2011-03-17 17:03:04 +01:00
Ui::DownloadItem* ui;
2011-03-02 16:57:41 +01:00
QListWidgetItem* m_item;
QWebEngineDownloadItem* m_download;
2011-03-02 16:57:41 +01:00
QString m_path;
QString m_fileName;
QTime m_downTimer;
2011-03-02 16:57:41 +01:00
QTime m_remTime;
QBasicTimer m_timer;
QUrl m_downUrl;
bool m_openFile;
2011-03-02 16:57:41 +01:00
bool m_downloading;
bool m_downloadStopped;
2011-03-02 16:57:41 +01:00
double m_currSpeed;
qint64 m_received;
qint64 m_total;
};
#endif // DOWNLOADITEM_H