aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorBart Ribbers <bribbers@disroot.org>2021-04-23 15:53:36 +0200
committerMagneFire <idanlcontact@gmail.com>2021-05-17 13:03:38 +0200
commitb3cf236b34c386a9cbff81ffc1631554bd60ee1b (patch)
tree77ffa5a21e36a10b8d79fddc020c51e9c4235fb8 /main.qml
parente974ad13edb44d6705e3f934193f253bc631ff83 (diff)
Port to CMake
Qt is slowly deprecating QMake. They have stopped building Qt itself with QMake and moved Qt6 to CMake instead. Although QMake is still around, it's clear the focus has shifted and it would be good for applications to switch over to an alternative build system as well So hereby, switch the build system to CMake
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml58
1 files changed, 0 insertions, 58 deletions
diff --git a/main.qml b/main.qml
deleted file mode 100644
index f6c171c..0000000
--- a/main.qml
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2017 - Florent Revest <revestflo@gmail.com>
- * - Niels Tholenaar <info@123quality.nl>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-import QtQuick 2.5
-import org.asteroid.controls 1.0
-import QtSensors 5.3
-
-Application {
- id: app
-
- centerColor: "#4cd479"
- outerColor: "#1c723a"
-
- property int rotation: 0;
- property int calibration: 0;
-
- Compass {
- active: true
- onReadingChanged: {
- app.rotation = reading.azimuth;
- app.calibration = reading.calibrationLevel;
- }
- }
-
- Image {
- anchors.fill: parent
- anchors.margins: Dims.l(15)
- fillMode: Image.PreserveAspectFit
- source: "qrc:///compass.svg"
- rotation: -app.rotation
- height: 200;
- sourceSize.width: width
- sourceSize.height: height
- }
-
- Label {
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.bottom: parent.bottom
- anchors.bottomMargin: Dims.l(7)
- font.pixelSize: Dims.l(5)
- text: app.rotation + " °N Calibrated: " + app.calibration
- }
-}