QWebEngineDownloadItem Class

The QWebEngineDownloadItem class provides information about a download. More...

Header: #include <QWebEngineDownloadItem>
qmake: QT += webenginewidgets
Since: Qt 5.5
Inherits: QObject

Public Types

enum DownloadState { DownloadRequested, DownloadInProgress, DownloadCompleted, DownloadCancelled, DownloadInterrupted }

Public Functions

quint32 id() const
bool isFinished() const
QString mimeType() const
QString path() const
qint64 receivedBytes() const
void setPath(QString path)
DownloadState state() const
qint64 totalBytes() const
QUrl url() const
  • 31 public functions inherited from QObject

Public Slots

void accept()
void cancel()
  • 1 public slot inherited from QObject

Signals

void downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
void finished()
void stateChanged(QWebEngineDownloadItem::DownloadState state)

Additional Inherited Members

  • 1 property inherited from QObject
  • 11 static public members inherited from QObject
  • 9 protected functions inherited from QObject

Detailed Description

The QWebEngineDownloadItem class provides information about a download.

QWebEngineDownloadItem stores the state of a download to be used to manage requested downloads.

Member Type Documentation

enum QWebEngineDownloadItem::DownloadState

This enum describes the state of the download:

ConstantValueDescription
QWebEngineDownloadItem::DownloadRequested0Download has been requested, but has not been accepted yet.
QWebEngineDownloadItem::DownloadInProgress1Download is in progress.
QWebEngineDownloadItem::DownloadCompleted2Download completed successfully.
QWebEngineDownloadItem::DownloadCancelled3Download has been cancelled.
QWebEngineDownloadItem::DownloadInterrupted4Download has been interrupted (by the server or because of lost connectivity).

Member Function Documentation

[slot] void QWebEngineDownloadItem::accept()

Accepts the current download request, which will start the download.

See also finished() and stateChanged().

[slot] void QWebEngineDownloadItem::cancel()

Cancels the current download.

See also finished() and stateChanged().

[signal] void QWebEngineDownloadItem::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)

This signal is emitted whenever the download's bytesReceived or bytesTotal changes.

See also totalBytes() and receivedBytes().

[signal] void QWebEngineDownloadItem::finished()

This signal is emitted whenever the download finishes.

See also state() and isFinished().

quint32 QWebEngineDownloadItem::id() const

Returns the download item's ID.

bool QWebEngineDownloadItem::isFinished() const

Returns whether this download is finished (not in progress).

See also finished() and state().

QString QWebEngineDownloadItem::mimeType() const

Returns the MIME type of the download.

This function was introduced in Qt 5.6.

QString QWebEngineDownloadItem::path() const

Returns the full target path where data is being downloaded to.

The path includes the file name. The default suggested path is the standard download location and file name is deduced not to overwrite already existing files.

See also setPath().

qint64 QWebEngineDownloadItem::receivedBytes() const

Returns the amount of data in bytes that has been downloaded so far.

-1 means the size is unknown.

void QWebEngineDownloadItem::setPath(QString path)

Sets the full target path to download the file to.

The path should also include the file name. The download path can only be set in response to the QWebEngineProfile::downloadRequested() signal before the download is accepted. Past that point, this function has no effect on the download item's state.

See also path().

DownloadState QWebEngineDownloadItem::state() const

Returns the download item's current state.

See also QWebEngineDownloadItem::DownloadState.

[signal] void QWebEngineDownloadItem::stateChanged(QWebEngineDownloadItem::DownloadState state)

This signal is emitted whenever the download's state changes.

See also state() and QWebEngineDownloadItem::DownloadState.

qint64 QWebEngineDownloadItem::totalBytes() const

Returns the the total amount of data to download in bytes.

-1 means the size is unknown.

QUrl QWebEngineDownloadItem::url() const

Returns the download's origin URL.

© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.