mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
8ca3a9b899
fixes https://github.com/status-im/nim-status-client/issues/1232 This PR repurposes the DownloadView into a Loader component of a browser tab and is displayed when: 1. a new downloads tab is opened or 2. a new tab with the link status://downloads or finally when 3. the ShowAll button has been clicked. You can open any number of Downloads tabs When you open a new tab and type in status://downloads the title will remain as 'New Tab' fix: add localization
41 lines
1.0 KiB
QML
41 lines
1.0 KiB
QML
import QtQuick 2.1
|
|
import QtQuick.Controls 1.0
|
|
import QtQuick.Controls.Styles 1.0
|
|
import QtWebEngine 1.9
|
|
import QtQuick.Layouts 1.0
|
|
import "../../../shared"
|
|
import "../../../shared/status"
|
|
import "../../../imports"
|
|
|
|
Rectangle {
|
|
id: downloadView
|
|
color: Style.current.background
|
|
|
|
ListView {
|
|
id: listView
|
|
anchors {
|
|
topMargin: Style.current.bigPadding
|
|
top: parent.top
|
|
bottom: parent.bottom
|
|
bottomMargin: Style.current.bigPadding * 2
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
width: 624
|
|
spacing: Style.current.padding
|
|
|
|
model: downloadModel
|
|
delegate: DownloadElement {
|
|
width: parent.width
|
|
}
|
|
}
|
|
|
|
Text {
|
|
visible: !listView.count
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.pixelSize: 15
|
|
text: qsTr("Downloaded files will appear here.")
|
|
color: Style.current.secondaryText
|
|
}
|
|
}
|