summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2017-12-05 20:58:54 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-12-05 20:05:16 -0800
commitafd46a60f7b9a7aba0ae515f4ae38c8223761f2d (patch)
tree236e3384207983128dedc0594e21e5d6dd12e0e4 /mobile-widgets
parent8f318c7e6959bba73b273d4b9ad065ef602ccd4d (diff)
downloadsubsurface-afd46a60f7b9a7aba0ae515f4ae38c8223761f2d.tar.gz
Add button to rescan BT devices
Otherwise the divecomputer has to be in pairing mode at app start time. Unfortunately, this leaves less space for the progress message. My time/qml knowledge does not suffice to move that to the next line (when moving that out of the RowLayout it overlaps with the buttons). Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/DownloadFromDiveComputer.qml8
-rw-r--r--mobile-widgets/qmlmanager.cpp5
-rw-r--r--mobile-widgets/qmlmanager.h2
3 files changed, 15 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml
index 1091a0350..199f6aa67 100644
--- a/mobile-widgets/qml/DownloadFromDiveComputer.qml
+++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml
@@ -215,6 +215,14 @@ Kirigami.Page {
manager.appendTextToLog("exit DCDownload screen")
}
}
+ SsrfButton {
+ id:rescanbutton
+ text: qsTr("Rescan")
+ onClicked: {
+ manager.btRescan()
+ }
+ }
+
Controls.Label {
Layout.maximumWidth: parent.width - download.width - quitbutton.width
text: divesDownloaded ? qsTr(" Downloaded dives") :
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 3b1ed4aaa..413364a65 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -96,6 +96,11 @@ void QMLManager::btHostModeChange(QBluetoothLocalDevice::HostMode state)
emit btEnabledChanged();
}
+void QMLManager::btRescan()
+{
+ BTDiscovery::instance()->BTDiscoveryReDiscover();
+}
+
QMLManager::QMLManager() : m_locationServiceEnabled(false),
m_verboseEnabled(false),
reply(0),
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h
index cd827da4d..92b320966 100644
--- a/mobile-widgets/qmlmanager.h
+++ b/mobile-widgets/qmlmanager.h
@@ -192,6 +192,8 @@ public slots:
void appendTextToLog(const QString &newText);
void quit();
void hasLocationSourceChanged();
+ void btRescan();
+
private:
QString m_cloudUserName;