Skip to content

Commit 59cdc05

Browse files
committedDec 25, 2010
Added start of a busy/loading screen + updated credits in README
1 parent a6a839b commit 59cdc05

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed
 

‎CloudBox/qml/CloudBox/BusyOverlay.qml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import Qt 4.7
2+
3+
Rectangle {
4+
id: background
5+
anchors.fill: parent
6+
7+
color: "transparent"
8+
Rectangle {
9+
anchors.fill: parent
10+
opacity: 0.90
11+
color: "black"
12+
}
13+
14+
15+
MouseArea {
16+
anchors.fill: parent
17+
}
18+
19+
Image {
20+
source: "qrc:/images/cloud.svg"
21+
anchors.centerIn: parent
22+
sourceSize.width: parent.width - parent.width/3
23+
sourceSize.height: parent.width - parent.width/3
24+
width: sourceSize.width
25+
height: sourceSize.height
26+
27+
SequentialAnimation on rotation {
28+
loops: Animation.Infinite
29+
PropertyAnimation { from: 0; to:360; duration: 1500;}
30+
31+
}
32+
}
33+
34+
35+
36+
}

‎CloudBox/qml/CloudBox/main.qml

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ Item {
77

88
Login {
99
}
10+
1011
}

‎README

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Depends on Qt and QML.
1010
box.svg is a modified version of work by "molumen, Jack123 / molumen":
1111
http://www.openclipart.org/detail/1509
1212

13-
login.svg is by "warszawianka":
13+
login.svg is by "warszawianka" (Tango Project is likely the source):
1414
http://www.openclipart.org/detail/30667
1515

16-
cloud.svg is by "warszawianka":
17-
<TBD Fill me in>
16+
cloud.svg is by a modified version of work by "warszawianka" (Tango Project is likely the source):
17+
http://www.openclipart.org/detail/30085

0 commit comments

Comments
 (0)
Please sign in to comment.