File size: 4,230 Bytes
a4cf109 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick.Layouts 1.11
Popup {
id: downloadPopup
width: 500
height: store.downloadList.length ? Math.min(listView.contentHeight + 10, 1000) : 130
x: accountStatus.x + accountStatus.width - 500 + screenMargin
y: accountStatus.y + accountStatus.height + 60
leftPadding: 20; rightPadding: 20
topPadding: 5; bottomPadding: 5
closePolicy: Popup.CloseOnPressOutside
dim: true
Overlay.modeless: Rectangle {
color: "transparent"
MouseArea {
anchors.fill: parent
}
}
background: Rectangle {
anchors.fill: parent
color: "white"
border.width: 3
border.color: "black"
radius: 5
}
Rectangle {
visible: store.downloadList.length == 0
width: parent.width
height: 120
Text {
id: quote
text: "“ A room without books is like\na body without a soul.”"
font.family: "Maison Neue"
font.styleName: "Medium"
font.italic: true
font.pixelSize: 22
horizontalAlignment: Text.AlignRight
anchors {
top: parent.top
right: parent.right
topMargin: 25
rightMargin: 80
}
}
Text {
text: "— Cicero"
font.family: "Maison Neue"
font.styleName: "Bold"
font.pixelSize: 22
anchors.top: quote.bottom
anchors.topMargin: 10
anchors.right: quote.right
horizontalAlignment: Text.AlignRight
}
}
ListView {
id: listView
width: 500 - parent.padding * 2
anchors.fill: parent
model: store.downloadList
clip: true
boundsBehavior: Flickable.StopAtBounds
flickableDirection: Flickable.VerticalFlick
flickDeceleration: 0
delegate: Item {
id: root
width: parent.width
height: 120
Rectangle {
id: wrapper
width: parent.width
height: parent.height
anchors {
left: parent.left
right: parent.right
verticalCenter: parent.verticalCenter
}
Text {
id: name
text: model.modelData.name
font.family: "Maison Neue"
font.styleName: "Medium"
font.pixelSize: 22
width: 350
maximumLineCount: 2
wrapMode: Text.Wrap
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter
}
Text {
id: downloadStatusText
visible: model.modelData.status === "Downloaded" ||
model.modelData.status.endsWith("%")
text: model.modelData.status === "Downloaded" ? "↓ " : model.modelData.status
color: "black"
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
horizontalAlignment: Text.AlignRight
verticalAlignment: Text.AlignVCenter
font.family:"Maison Neue"
font.styleName: "Bold"
font.pixelSize: 30
}
Rectangle {
color: "gray"
width: parent.width
height: 1
anchors.bottom: parent.bottom
}
MouseArea {
anchors.fill: parent
onClicked: {
model.modelData.getDetail(itemInfo);
itemInfo.model = model.modelData;
downloadPopup.close();
itemInfo.open();
}
onPressAndHold: {
return;
}
}
}
}
}
} |