summaryrefslogtreecommitdiffstats
path: root/weather-qml/SplashScreen.qml
diff options
context:
space:
mode:
Diffstat (limited to 'weather-qml/SplashScreen.qml')
-rw-r--r--weather-qml/SplashScreen.qml53
1 files changed, 0 insertions, 53 deletions
diff --git a/weather-qml/SplashScreen.qml b/weather-qml/SplashScreen.qml
deleted file mode 100644
index bee13c8..0000000
--- a/weather-qml/SplashScreen.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-import Qt 4.6
-
-Item {
- id: splash
-
- Image {
- id: bg
- source: "images/bg_loading.png"
- anchors.fill: parent
- }
-
- Image {
- id: bottomMenu
- source: "images/city_name_background_bigger.png"
- anchors.bottom: bottomBar.top
- anchors.horizontalCenter: parent.horizontalCenter
- }
-
- Throbber {
- id: "progress"
- anchors.topMargin: 10
- anchors.top: infoLabel.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- }
-
- Text {
- id: infoLabel
- text: "Loading"
- color: "white"
- font.family: "Nokia Sans"
- font.pixelSize: 22
- anchors.top: parent.top
- anchors.topMargin: parent.height * 0.3
- anchors.horizontalCenter: parent.horizontalCenter
- verticalAlignment: "AlignVCenter"
- horizontalAlignment: "AlignHCenter"
- }
-
- Image {
- id: umbrella
- source: "images/umbrella.png"
- anchors.bottom: bottomBar.top
- anchors.bottomMargin: 20
- anchors.horizontalCenter: parent.horizontalCenter
- }
-
- Image {
- id: bottomBar
- source: "images/bg_bottom_options.png"
- anchors.bottom: parent.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- }
-}