72 lines
2.0 KiB
QML
72 lines
2.0 KiB
QML
import QtQuick 2.6
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Controls.Material 2.0
|
|
import QtQml.Models 2.2
|
|
|
|
import org.electrum 1.0
|
|
|
|
import "controls"
|
|
|
|
Pane {
|
|
id: rootItem
|
|
visible: Daemon.currentWallet !== undefined
|
|
clip: true
|
|
|
|
ListView {
|
|
id: listview
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
model: visualModel
|
|
|
|
readonly property variant sectionLabels: {
|
|
'today': qsTr('Today'),
|
|
'yesterday': qsTr('Yesterday'),
|
|
'lastweek': qsTr('Last week'),
|
|
'lastmonth': qsTr('Last month'),
|
|
'older': qsTr('Older')
|
|
}
|
|
|
|
section.property: 'section'
|
|
section.criteria: ViewSection.FullString
|
|
section.delegate: RowLayout {
|
|
width: ListView.view.width
|
|
required property string section
|
|
Label {
|
|
text: listview.sectionLabels[section]
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.topMargin: constants.paddingLarge
|
|
font.pixelSize: constants.fontSizeLarge
|
|
color: Material.accentColor
|
|
}
|
|
}
|
|
|
|
DelegateModel {
|
|
id: visualModel
|
|
model: Daemon.currentWallet.historyModel
|
|
|
|
groups: [
|
|
DelegateModelGroup { name: 'today'; includeByDefault: false },
|
|
DelegateModelGroup { name: 'yesterday'; includeByDefault: false },
|
|
DelegateModelGroup { name: 'lastweek'; includeByDefault: false },
|
|
DelegateModelGroup { name: 'lastmonth'; includeByDefault: false },
|
|
DelegateModelGroup { name: 'older'; includeByDefault: false }
|
|
]
|
|
|
|
delegate: HistoryItemDelegate {
|
|
}
|
|
}
|
|
|
|
ScrollIndicator.vertical: ScrollIndicator { }
|
|
|
|
}
|
|
|
|
Connections {
|
|
target: Network
|
|
function onHeightChanged(height) {
|
|
Daemon.currentWallet.historyModel.updateBlockchainHeight(height)
|
|
}
|
|
}
|
|
}
|