2015-11-07 00:45:40 +00:00
|
|
|
import QtQuick 2.5
|
|
|
|
import QtQuick.Controls 1.2
|
2016-01-20 06:32:37 +00:00
|
|
|
import QtQuick.Controls.Styles 1.2
|
2015-11-07 00:45:40 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2016-03-08 20:26:54 +00:00
|
|
|
import org.kde.kirigami 1.0 as Kirigami
|
2016-01-20 06:32:37 +00:00
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
2015-11-07 00:45:40 +00:00
|
|
|
|
2016-02-11 14:59:10 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: startpage
|
|
|
|
width: subsurfaceTheme.columnWidth
|
2015-11-07 00:45:40 +00:00
|
|
|
|
2016-02-14 05:09:33 +00:00
|
|
|
function saveCredentials() { cloudCredentials.saveCredentials() }
|
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-11 14:59:10 +00:00
|
|
|
id: explanationText
|
|
|
|
Layout.fillWidth: true
|
2016-03-08 20:26:54 +00:00
|
|
|
Layout.margins: Kirigami.Units.gridUnit
|
2016-04-07 19:15:19 +00:00
|
|
|
Layout.topMargin: Kirigami.Units.gridUnit * 3
|
2016-04-21 11:46:22 +00:00
|
|
|
text: "To use Subsurface-mobile with Subsurface cloud storage, please enter " +
|
|
|
|
"your cloud credentials.\n\n" +
|
2016-04-30 13:44:15 +00:00
|
|
|
"To use Subsurface-mobile only with local data on this device, tap " +
|
|
|
|
"on the no cloud icon below."
|
2016-02-11 14:59:10 +00:00
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-11 14:59:10 +00:00
|
|
|
id: messageArea
|
|
|
|
Layout.fillWidth: true
|
2016-03-08 20:26:54 +00:00
|
|
|
Layout.margins: Kirigami.Units.gridUnit
|
2016-03-28 00:10:58 +00:00
|
|
|
Layout.topMargin: 0
|
2016-02-11 14:59:10 +00:00
|
|
|
text: manager.startPageText
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
}
|
|
|
|
CloudCredentials {
|
2016-02-14 05:09:33 +00:00
|
|
|
id: cloudCredentials
|
2016-02-11 14:59:10 +00:00
|
|
|
Layout.fillWidth: true
|
2016-03-08 20:26:54 +00:00
|
|
|
Layout.margins: Kirigami.Units.gridUnit
|
2016-03-28 00:10:58 +00:00
|
|
|
Layout.topMargin: 0
|
2016-02-11 14:59:10 +00:00
|
|
|
property int headingLevel: 3
|
2015-11-07 00:45:40 +00:00
|
|
|
}
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|