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
|
|
|
|
Text { text: "Vendor" }
|
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
Text { text: "Dive Computer" }
|
|
|
|
ComboBox { Layout.fillWidth: true }
|
|
|
|
Text { text: "Device or mount point" }
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
TextField { Layout.fillWidth: true }
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton { text: "..." }
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
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" }
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ProgressBar { Layout.fillWidth: true }
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton { text: "Download" }
|
2015-07-23 11:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ColumnLayout {
|
|
|
|
height: parent.height
|
|
|
|
Layout.fillWidth: true
|
|
|
|
RowLayout {
|
|
|
|
Text {
|
|
|
|
text: "Downloaded dives"
|
|
|
|
}
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton {
|
2015-07-23 11:46:02 +00:00
|
|
|
text: "Select All"
|
|
|
|
}
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton {
|
2015-07-23 11:46:02 +00:00
|
|
|
text: "Unselect All"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TableView {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
width: parent.width
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton {
|
2015-07-23 11:46:02 +00:00
|
|
|
text: "OK"
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
2016-01-20 11:47:58 +00:00
|
|
|
SubsurfaceButton {
|
2015-07-23 11:46:02 +00:00
|
|
|
text: "Cancel"
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
stackView.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|