summaryrefslogtreecommitdiff
path: root/navit/gui/qt5_qml/skins/modern/settings.qml
diff options
context:
space:
mode:
Diffstat (limited to 'navit/gui/qt5_qml/skins/modern/settings.qml')
-rw-r--r--navit/gui/qt5_qml/skins/modern/settings.qml44
1 files changed, 0 insertions, 44 deletions
diff --git a/navit/gui/qt5_qml/skins/modern/settings.qml b/navit/gui/qt5_qml/skins/modern/settings.qml
deleted file mode 100644
index de7dc36f5..000000000
--- a/navit/gui/qt5_qml/skins/modern/settings.qml
+++ /dev/null
@@ -1,44 +0,0 @@
-import QtQuick 2.0
-import QtQuick.Layouts 1.0
-
-
-GridLayout {
- id: gridLayout
- height: 200
- columnSpacing: 4
- rowSpacing: 4
- rows: 3
- columns: 2
-
- MainButton {
- text: "Maps"
- icon: "icons/appbar.layer.svg"
- Layout.fillHeight: true
- Layout.fillWidth: true
- onClicked: {
- menucontent.source = "maps.qml"
- }
- }
- MainButton {
- text: "Vehicles"
- icon: "icons/appbar.transit.car.svg"
- Layout.fillHeight: true
- Layout.fillWidth: true
- onClicked: {
- menucontent.source = "vehicles.qml"
- }
- }
- MainButton {
- text: "Display"
- icon: "icons/appbar.fullscreen.box.svg"
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
-
- MainButton {
- text: "Rules"
- icon: "icons/appbar.cogs.svg"
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
-}