mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: show the available GPS fixes
So far the user can't interact with these. We should implement an ability to visualize the GPS fix and to delete it. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
06dcc9ab8d
commit
b6ae6979e5
5 changed files with 133 additions and 0 deletions
|
|
@ -104,6 +104,14 @@ MobileComponents.ApplicationWindow {
|
|||
}
|
||||
}
|
||||
|
||||
Action {
|
||||
text: "Show GPS fixes"
|
||||
onTriggered: {
|
||||
manager.populateGpsData();
|
||||
stackView.push(gpsWindow)
|
||||
}
|
||||
}
|
||||
|
||||
Action {
|
||||
text: "Clear GPS cache"
|
||||
onTriggered: {
|
||||
|
|
@ -224,6 +232,10 @@ MobileComponents.ApplicationWindow {
|
|||
visible: false
|
||||
}
|
||||
|
||||
GpsList {
|
||||
id: gpsWindow
|
||||
}
|
||||
|
||||
ThemeTest {
|
||||
id: themetest
|
||||
visible: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue