mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
b7e4b35cde
This model will be used to show the dives in QML. This commit adds the model, and the means to link it to QML. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
89 lines
1.7 KiB
QML
89 lines
1.7 KiB
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 1.2
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Dialogs 1.2
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
ApplicationWindow {
|
|
title: qsTr("Subsurface")
|
|
width: 500;
|
|
height: 700
|
|
|
|
FileDialog {
|
|
id: fileOpen
|
|
selectExisting: true
|
|
selectMultiple: true
|
|
|
|
onAccepted: {
|
|
manager.setFilename(fileUrl)
|
|
}
|
|
}
|
|
|
|
QMLManager {
|
|
id: manager
|
|
}
|
|
|
|
menuBar: MenuBar {
|
|
Menu {
|
|
title: qsTr("File")
|
|
MenuItem {
|
|
text: qsTr("Open")
|
|
onTriggered: fileOpen.open()
|
|
}
|
|
|
|
MenuItem {
|
|
text: qsTr("Exit")
|
|
onTriggered: Qt.quit();
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
width: parent.width; height: parent.height
|
|
anchors.fill: parent
|
|
|
|
Component {
|
|
id: diveDelegate
|
|
Item {
|
|
id: wrapper
|
|
width: parent.width; height: 55
|
|
Column {
|
|
Text { text: '#:' + diveNumber + "(" + location + ")" }
|
|
Text { text: date }
|
|
Text { text: duration + " " + depth }
|
|
}
|
|
MouseArea { anchors.fill: parent; onClicked: diveListView.currentIndex = index }
|
|
|
|
states: State {
|
|
name: "Current"
|
|
when: wrapper.ListView.isCurrentItem
|
|
PropertyChanges { target: wrapper; x:20 }
|
|
}
|
|
transitions: Transition {
|
|
NumberAnimation { properties: "x"; duration: 200 }
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: highlightBar
|
|
Rectangle {
|
|
width: parent.width; height: 50
|
|
color: "#FFFF88"
|
|
y: diveListView.currentItem.y;
|
|
Behavior on y { SpringAnimation { spring: 2; damping: 0.1 } }
|
|
}
|
|
}
|
|
|
|
ListView {
|
|
id: diveListView
|
|
width: parent.width; height: parent.height
|
|
anchors.fill: parent
|
|
model: diveModel
|
|
delegate: diveDelegate
|
|
focus: true
|
|
highlight: highlightBar
|
|
highlightFollowsCurrentItem: false
|
|
}
|
|
}
|
|
}
|