diff options
author | Tim Süberkrüb <tim.sueberkrueb@web.de> | 2015-11-29 12:26:27 +0100 |
---|---|---|
committer | Tim Süberkrüb <tim.sueberkrueb@web.de> | 2015-11-29 12:26:27 +0100 |
commit | 3f02e3ef336eaf7fb105f6548a743edaafca23a1 (patch) | |
tree | 89d601deaadccf5416b69548faaf9625ddaed47d | |
parent | a9e099ea0107d0bcf4bdc385ee5c3ced072cf6c6 (diff) |
Removed Quey dependency
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | asteroid-stopwatch | bin | 383046 -> 0 bytes | |||
-rwxr-xr-x | deploy.sh | 2 | ||||
-rwxr-xr-x | main.qml | 64 |
4 files changed, 38 insertions, 29 deletions
@@ -3,7 +3,6 @@ A stopwatch app for [AsteroidOS](http://asteroidos.org/) ## Dependencies * [qml-asteroid](https://github.com/AsteroidOS/qml-asteroid) -* quey-ui (dependency will be removed soon when qml-asteroid provides all nessecary components) ## Copyright and License (C) Copyright 2015 by Tim Süberkrüb diff --git a/asteroid-stopwatch b/asteroid-stopwatch Binary files differdeleted file mode 100755 index 810a841..0000000 --- a/asteroid-stopwatch +++ /dev/null @@ -15,4 +15,4 @@ adb push asteroid-stopwatch.desktop /usr/share/applications/asteroid-stopwatch.d echo "Keep display on ..." adb shell mcetool -D on echo "Running application ..." -adb shell XDG_RUNTIME_DIR=/tmp /usr/bin/asteroid-stopwatch --platform wayland-egl +adb shell env QT_QUICK_CONTROLS_STYLE=Nemo XDG_RUNTIME_DIR=/tmp /usr/bin/asteroid-stopwatch --platform wayland-egl @@ -22,13 +22,11 @@ import QtQuick 2.4 import QtGraphicalEffects 1.0 import QtQuick.Controls 1.3 -import quey.ui 0.1 -import quey.watch 0.1 import org.asteroid.controls 1.0 import Qt.labs.settings 1.0 -WatchApplication { +Application { id: app title: "Stopwatch" @@ -64,7 +62,7 @@ WatchApplication { id: settingsLayer Rectangle { anchors.fill: parent - color: Style.palette.background + color: "black" Flickable { anchors.fill: parent @@ -74,25 +72,37 @@ WatchApplication { contentHeight: childrenRect.height Column { - spacing: Style.spacing + spacing: Units.dp(16) anchors { fill: parent - topMargin: Style.padding + topMargin: Units.dp(16) } Label { anchors.horizontalCenter: parent.horizontalCenter text: "Settings" - font: Style.font.subheading + font.pixelSize: Units.dp(16) + color: "white" } - CheckBox { - id: checkboxColorful + Row { anchors.horizontalCenter: parent.horizontalCenter - text: "Colorful" - checked: app.colorful - onCheckedChanged: app.colorful = checked + spacing: Units.dp(8) + + CheckBox { + id: checkboxColorful + checked: app.colorful + onCheckedChanged: app.colorful = checked + } + + Label { + text: "Colorful" + font.pixelSize: Units.dp(12) + color: "white" + } + } + } } @@ -124,42 +134,42 @@ WatchApplication { name: "zero" PropertyChanges { target: iconButton - iconName: "media-play" + iconName: "play" } PropertyChanges { target: mainPage - color: Style.palette.background + color: "white" } }, State { name: "running" PropertyChanges { target: iconButton - iconName: "media-pause" + iconName: "pause" } PropertyChanges { target: mainPage - color: app.colorful ? Style.palette.green : Style.palette.background + color: app.colorful ? "#5469d5" : "white" } }, State { name: "paused" PropertyChanges { target: iconButton - iconName: "media-play" + iconName: "play" } PropertyChanges { target: mainPage - color: app.colorful ? Style.palette.red : Style.palette.background + color: app.colorful ? "#d55469" : "white" } } ] Label { anchors.centerIn: parent - color: mainPage.state === "zero" || !app.colorful ? Style.palette.regular : "white" - font: Style.font.code + color: mainPage.state === "zero" || !app.colorful ? "black" : "white" text: toTimeString(elapsed) + font.pixelSize: Units.dp(16) } MouseArea { @@ -172,7 +182,7 @@ WatchApplication { IconButton { id: resetButton - iconColor: app.colorful ? "white" : Style.palette.regular + iconColor: app.colorful ? "white" : "black" iconName: "reload" visible: mainPage.state === "paused" @@ -180,7 +190,7 @@ WatchApplication { anchors { horizontalCenter: parent.horizontalCenter - topMargin: Style.padding + topMargin: Units.dp(16) top: parent.top } @@ -192,7 +202,7 @@ WatchApplication { IconButton { id: settingsButton - iconColor: Style.palette.regular + iconColor: "black" iconName: "cog" visible: mainPage.state === "zero" @@ -200,7 +210,7 @@ WatchApplication { anchors { horizontalCenter: parent.horizontalCenter - topMargin: Style.padding + topMargin: Units.dp(8) top: parent.top } @@ -211,15 +221,15 @@ WatchApplication { IconButton { id: iconButton - iconName: "media-play" - iconColor: mainPage.state === "zero" || !app.colorful ? Style.palette.regular : "white" + iconName: "play" + iconColor: mainPage.state === "zero" || !app.colorful ? "black" : "white" hovered: false anchors { horizontalCenter: parent.horizontalCenter bottom: parent.bottom - bottomMargin: Style.padding + bottomMargin: Units.dp(16) } onClicked: { |