mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
map-widget: move the widget and its resources to 'map-widget'
Move all the map widget platform agnostic files to the <subsurface-root>/map-widget folder. This avoids the confusion about the desktop version of subsurface using mobile components. The map widget is planned as a shared component between the mobile and desktop versions. desktop-widgets/mapwidget[.h/.cpp] still remain as those are specific to the desktop version. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
6ce4239884
commit
956b45ddfd
16 changed files with 13 additions and 13 deletions
13
map-widget/qml/MapWidgetError.qml
Normal file
13
map-widget/qml/MapWidgetError.qml
Normal file
|
@ -0,0 +1,13 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
import QtQuick 2.0
|
||||
|
||||
Item {
|
||||
Text {
|
||||
anchors.fill: parent
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
color: "red"
|
||||
text: qsTr("MapWidget.qml failed to load!
|
||||
The QML modules QtPositioning and QtLocation could be missing!")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue