DownloadManager QML Type
Manage downloads for several files. More...
Import Statement: | import Lomiri.DownloadManager 1.2 |
Properties
- autoStart : bool
- cleanDownloads : bool
- downloads : list
- errorMessage : string
Signals
- downloadCanceled(SingleDownload download)
- downloadFinished(SingleDownload download, QString path)
- downloadPaused(SingleDownload download)
- downloadResumed(SingleDownload download)
- errorFound(SingleDownload download)
Methods
- void download(string url)
Detailed Description
DownloadManager provides facilities for downloading a several files, connect the downloads property to any Item that works with models, and dynamically update the content of those lists/repeaters/etc to show the current downloads and connect any UI to the SingleDownload properties in the delegates.
Example usage:
import QtQuick 2.0 import Lomiri.Components 1.2 import Lomiri.DownloadManager 1.2 Rectangle { width: units.gu(100) height: units.gu(80) DownloadManager { id: manager } TextField { id: text placeholderText: "File URL to download..." height: 50 anchors { left: parent.left right: button.left rightMargin: units.gu(2) } } Button { id: button text: "Download" height: 50 anchors.right: parent.right onClicked: { manager.download(text.text); } } ListView { id: list anchors { left: parent.left right: parent.right top: text.bottom bottom: parent.bottom } model: manager.downloads delegate: ProgressBar { minimumValue: 0 maximumValue: 100 value: modelData.progress } } }
See also SingleDownload.
Property Documentation
This property sets if the downloads should start automatically, or let the user decide when to start them calling the "start()" method on each download.
This property sets if the model with the list of downloads should be cleaned when a download finish. Removing those completed transfers, and only showing current downloads.
This property provides a model that can be used for Lists, Repeaters, etc. To handle those downloads in a UI component that changes automatically when a new download is started, and let a custom delegate how to represent the UI for each download.
Signal Documentation
downloadCanceled(SingleDownload download) |
This signal is emitted when a download has been canceled. The canceled download is provided via the 'download' parameter. The corresponding handler is onDownloadCanceled
This signal was introduced in Lomiri.DownloadManager 1.2.
downloadFinished(SingleDownload download, QString path) |
This signal is emitted when a download has finished. The finished download is provided via the 'download' parameter and the downloaded file path is provided via the 'path' paremeter. The corresponding handler is onDownloadFinished
This signal was introduced in Lomiri.DownloadManager 1.2.
downloadPaused(SingleDownload download) |
This signal is emitted when a download has been paused. The paused download is provided via the 'download' parameter. The corresponding handler is onDownloadPaused
This signal was introduced in Lomiri.DownloadManager 1.2.
downloadResumed(SingleDownload download) |
This signal is emitted when a download has been resumed. The resumed download is provided via the 'download' parameter. The corresponding handler is onDownloadResumed
This signal was introduced in Lomiri.DownloadManager 1.2.
errorFound(SingleDownload download) |
This signal is emitted when an error occurs in a download. The download in which the error occurred is provided via the 'download' parameter, from which the error message can be accessed via download.errorMessage. The corresponding handler is onErrorFound
This signal was introduced in Lomiri.DownloadManager 1.2.
Method Documentation
Starts the download for the given url and update the model with the list of the different downloads.