2015-07-23 11:46:02 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.2
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: diveComputerDownloadWindow
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
ColumnLayout {
|
|
|
|
height: parent.height
|
|
|
|
width: parent.width
|
|
|
|
ColumnLayout {
|
|
|
|
width: parent.width
|
|
|
|
Layout.fillHeight: true
|
|
|
|
ColumnLayout {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ColumnLayout {
|
|
|
|
height: parent.height
|
|
|
|
Layout.fillWidth: true
|
2016-01-25 05:34:03 +00:00
|
|
|
RowLayout {
|
|
|
|
Text { text: " Vendor name : " }
|
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Text { text: " Dive Computer:" }
|
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
// Text { text: "Device or mount point" }
|
|
|
|
// RowLayout {
|
|
|
|
// Layout.fillWidth: true
|
|
|
|
// TextField { Layout.fillWidth: true }
|
|
|
|
// SubsurfaceButton { text: "..." }
|
|
|
|
// }
|
|
|
|
// GridLayout {
|
|
|
|
// columns: 2
|
|
|
|
// CheckBox { text: "Force download of all dives" }
|
|
|
|
// CheckBox { text: "Always prefer downloaded dives" }
|
|
|
|
// CheckBox { text: "Download into new trip" }
|
|
|
|
// CheckBox { text: "Save libdivecomputer logfile" }
|
|
|
|
// CheckBox { text: "Save libdivecomputer dumpfile" }
|
|
|
|
// CheckBox { text: "Choose Bluetooth download mode" }
|
|
|
|
// }
|
2015-07-23 11:46:02 +00:00
|
|
|
|
2016-01-25 05:34:03 +00:00
|
|
|
RowLayout {
|
|
|
|
Text { text: " Progress:" }
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ProgressBar { Layout.fillWidth: true }
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Download"
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Quit"
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
ColumnLayout {
|
|
|
|
height: parent.height
|
|
|
|
Layout.fillWidth: true
|
|
|
|
RowLayout {
|
|
|
|
Text {
|
2016-01-25 05:34:03 +00:00
|
|
|
text: " Downloaded dives"
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TableView {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2016-01-25 09:00:02 +00:00
|
|
|
TableViewColumn {
|
|
|
|
width: 50
|
|
|
|
role: "isChecked"
|
|
|
|
title: "Select"
|
|
|
|
}
|
|
|
|
TableViewColumn {
|
|
|
|
role: "datetime"
|
|
|
|
title: "Date / Time"
|
|
|
|
}
|
|
|
|
TableViewColumn {
|
|
|
|
width: 80
|
|
|
|
role: "duration"
|
|
|
|
title: "Duration"
|
|
|
|
}
|
|
|
|
TableViewColumn {
|
|
|
|
width: 50
|
|
|
|
role: "depth"
|
|
|
|
title: "Depth"
|
|
|
|
}
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-25 05:34:03 +00:00
|
|
|
GridLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
columns: 5
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Accept"
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Quit"
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
text: ""
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Select All"
|
|
|
|
}
|
|
|
|
SubsurfaceButton {
|
|
|
|
text: "Unselect All"
|
|
|
|
}
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|