2015-07-23 11:46:02 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.2
|
2016-02-02 19:48:43 +00:00
|
|
|
import QtQuick.Controls.Styles 1.2
|
2015-07-23 11:46:02 +00:00
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
2016-03-08 20:26:54 +00:00
|
|
|
import org.kde.kirigami 1.0 as Kirigami
|
2015-07-23 11:46:02 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Page {
|
2015-07-23 11:46:02 +00:00
|
|
|
id: diveComputerDownloadWindow
|
2016-02-02 19:48:43 +00:00
|
|
|
anchors.top:parent.top
|
2015-07-23 11:46:02 +00:00
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
2016-02-02 19:48:43 +00:00
|
|
|
Layout.fillWidth: true;
|
2016-05-03 19:24:00 +00:00
|
|
|
title: qsTr("Dive Computer")
|
2015-07-23 11:46:02 +00:00
|
|
|
|
2016-02-13 06:26:47 +00:00
|
|
|
/* this can be done by hitting the back key
|
2016-02-12 12:51:03 +00:00
|
|
|
contextualActions: [
|
|
|
|
Action {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Close Preferences")
|
2016-02-12 12:51:03 +00:00
|
|
|
iconName: "dialog-cancel"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.pop()
|
|
|
|
contextDrawer.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-02-13 06:26:47 +00:00
|
|
|
*/
|
2016-02-02 19:48:43 +00:00
|
|
|
ColumnLayout {
|
2015-07-23 11:46:02 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
height: parent.height
|
2016-02-02 19:48:43 +00:00
|
|
|
width: parent.width
|
|
|
|
Layout.fillWidth: true
|
|
|
|
RowLayout {
|
|
|
|
anchors.top:parent.top
|
|
|
|
Layout.fillWidth: true
|
2016-05-03 19:24:00 +00:00
|
|
|
Text { text: qsTr(" Vendor name : ") }
|
2016-02-02 19:48:43 +00:00
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
RowLayout {
|
2016-05-03 19:24:00 +00:00
|
|
|
Text { text: qsTr(" Dive Computer:") }
|
2016-02-02 19:48:43 +00:00
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Text { text: " Progress:" }
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ProgressBar { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
SubsurfaceButton {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Download")
|
2016-02-02 19:48:43 +00:00
|
|
|
onClicked: {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Retry")
|
2016-02-02 19:48:43 +00:00
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
id:quitbutton
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Quit")
|
2016-02-02 19:48:43 +00:00
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Text {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr(" Downloaded dives")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TableView {
|
2015-07-23 11:46:02 +00:00
|
|
|
width: parent.width
|
2016-02-02 19:48:43 +00:00
|
|
|
Layout.fillWidth: true // The tableview should fill
|
|
|
|
Layout.fillHeight: true // all remaining vertical space
|
|
|
|
height: parent.height // on this screen
|
|
|
|
TableViewColumn {
|
|
|
|
width: parent.width / 2
|
|
|
|
role: "datetime"
|
2016-05-03 19:24:00 +00:00
|
|
|
title: qsTr("Date / Time")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
TableViewColumn {
|
|
|
|
width: parent.width / 4
|
|
|
|
role: "duration"
|
2016-05-03 19:24:00 +00:00
|
|
|
title: qsTr("Duration")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
TableViewColumn {
|
|
|
|
width: parent.width / 4
|
|
|
|
role: "depth"
|
2016-05-03 19:24:00 +00:00
|
|
|
title: qsTr("Depth")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
SubsurfaceButton {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Accept")
|
2016-02-02 19:48:43 +00:00
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Quit")
|
2016-02-02 19:48:43 +00:00
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-02 19:48:43 +00:00
|
|
|
Text {
|
|
|
|
text: "" // Spacer between 2 button groups
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Select All")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
id: unselectbutton
|
2016-05-03 19:24:00 +00:00
|
|
|
text: qsTr("Unselect All")
|
2016-02-02 19:48:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout { // spacer to make space for silly button
|
|
|
|
Layout.minimumHeight: 1.2 * unselectbutton.height
|
|
|
|
Text {
|
|
|
|
text:""
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|