summaryrefslogtreecommitdiffstats
path: root/weather-qml/Haze.qml
diff options
context:
space:
mode:
Diffstat (limited to 'weather-qml/Haze.qml')
-rw-r--r--weather-qml/Haze.qml67
1 files changed, 0 insertions, 67 deletions
diff --git a/weather-qml/Haze.qml b/weather-qml/Haze.qml
deleted file mode 100644
index 7da5e67..0000000
--- a/weather-qml/Haze.qml
+++ /dev/null
@@ -1,67 +0,0 @@
-import Qt 4.6
-
-ForecastView {
- id: root
- isClear: false
-
- SmallCloud {
- id: cloud2
- x: scaledX(341)
- y: scaledY(-800)
- finalY: scaledY(-469);
- type: "cloud_rain"
- }
-
- HungItem {
- id: sun
- x: isDay ? scaledX(198) : scaledX(220)
- y: scaledY(-800)
- itemX: 0
- itemY: isDay ? 176 : 180
- height: isDay ? 460 : 440
- finalY: isDay ? scaledY(-255) : scaledY(-205)
- itemImage: isDay ? "images/cold_sun.png" : "images/moon.png"
- lineImage: isDay ? "images/cold_sun_line.png" : "images/moon_line.png"
- }
-
- MediumCloud {
- id: cloud1
- x: scaledX(6)
- y: scaledY(-800)
- finalY: scaledY(-296)
- type: "cloud_rain"
- }
-
- Image {
- id: haze
- x: scaledX(-30)
- source: "images/haze.png"
- }
-
- states : State {
- name: "final"
- PropertyChanges { target: sun; y: sun.finalY; }
- PropertyChanges { target: cloud1; y: cloud1.finalY; }
- PropertyChanges { target: cloud2; y: cloud2.finalY; }
- }
-
- transitions: Transition {
- SequentialAnimation {
- ParallelAnimation {
- NumberAnimation { target: cloud1; properties: "y";
- easing.type: "OutBack"; duration: 500 }
-
- SequentialAnimation {
- PauseAnimation { duration: 200 }
- NumberAnimation { target: cloud2; properties: "y";
- easing.type: "OutBack"; duration: 500 }
- }
- }
-
- NumberAnimation { target: sun; properties: "y";
- easing.type: "OutBack"; duration: 500 }
- }
- }
-
- onPresent: { root.state = "final"; }
-}