summaryrefslogtreecommitdiffstats
path: root/examples/declarative
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-30 06:33:42 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-30 06:33:42 (GMT)
commit560b617b9a1e7a5bdc837d30886061c15c16deca (patch)
treec02e5f8beb8098a6c553e69fb44ec9ccadc74559 /examples/declarative
parentcc1b25a807e190b1b9fa10653e42e86f19d4bd0f (diff)
downloadQt-560b617b9a1e7a5bdc837d30886061c15c16deca.zip
Qt-560b617b9a1e7a5bdc837d30886061c15c16deca.tar.gz
Qt-560b617b9a1e7a5bdc837d30886061c15c16deca.tar.bz2
cleanup
Diffstat (limited to 'examples/declarative')
-rw-r--r--examples/declarative/animations/color-animation.qml (renamed from examples/declarative/animation/color-animation.qml)0
-rw-r--r--examples/declarative/animations/easing.qml (renamed from examples/declarative/animation/easing.qml)0
-rw-r--r--examples/declarative/animations/images/face-smile.png (renamed from examples/declarative/animation/images/face-smile.png)bin15408 -> 15408 bytes
-rw-r--r--examples/declarative/animations/images/moon.png (renamed from examples/declarative/animation/images/moon.png)bin2433 -> 2433 bytes
-rw-r--r--examples/declarative/animations/images/shadow.png (renamed from examples/declarative/animation/images/shadow.png)bin425 -> 425 bytes
-rw-r--r--examples/declarative/animations/images/star.png (renamed from examples/declarative/animation/images/star.png)bin349 -> 349 bytes
-rw-r--r--examples/declarative/animations/images/sun.png (renamed from examples/declarative/animation/images/sun.png)bin8153 -> 8153 bytes
-rw-r--r--examples/declarative/animations/property-animation.qml (renamed from examples/declarative/animation/property-animation.qml)0
-rw-r--r--examples/declarative/effects/effects.qml (renamed from examples/declarative/effects/test.qml)20
-rw-r--r--examples/declarative/effects/pic.jpgbin7016 -> 0 bytes
10 files changed, 10 insertions, 10 deletions
diff --git a/examples/declarative/animation/color-animation.qml b/examples/declarative/animations/color-animation.qml
index edb0659..edb0659 100644
--- a/examples/declarative/animation/color-animation.qml
+++ b/examples/declarative/animations/color-animation.qml
diff --git a/examples/declarative/animation/easing.qml b/examples/declarative/animations/easing.qml
index 59e9b17..59e9b17 100644
--- a/examples/declarative/animation/easing.qml
+++ b/examples/declarative/animations/easing.qml
diff --git a/examples/declarative/animation/images/face-smile.png b/examples/declarative/animations/images/face-smile.png
index 3d66d72..3d66d72 100644
--- a/examples/declarative/animation/images/face-smile.png
+++ b/examples/declarative/animations/images/face-smile.png
Binary files differ
diff --git a/examples/declarative/animation/images/moon.png b/examples/declarative/animations/images/moon.png
index 9407b2b..9407b2b 100644
--- a/examples/declarative/animation/images/moon.png
+++ b/examples/declarative/animations/images/moon.png
Binary files differ
diff --git a/examples/declarative/animation/images/shadow.png b/examples/declarative/animations/images/shadow.png
index 8270565..8270565 100644
--- a/examples/declarative/animation/images/shadow.png
+++ b/examples/declarative/animations/images/shadow.png
Binary files differ
diff --git a/examples/declarative/animation/images/star.png b/examples/declarative/animations/images/star.png
index 27ef924..27ef924 100644
--- a/examples/declarative/animation/images/star.png
+++ b/examples/declarative/animations/images/star.png
Binary files differ
diff --git a/examples/declarative/animation/images/sun.png b/examples/declarative/animations/images/sun.png
index 7713ca5..7713ca5 100644
--- a/examples/declarative/animation/images/sun.png
+++ b/examples/declarative/animations/images/sun.png
Binary files differ
diff --git a/examples/declarative/animation/property-animation.qml b/examples/declarative/animations/property-animation.qml
index 0256137..0256137 100644
--- a/examples/declarative/animation/property-animation.qml
+++ b/examples/declarative/animations/property-animation.qml
diff --git a/examples/declarative/effects/test.qml b/examples/declarative/effects/effects.qml
index 73c6839..851b2fe 100644
--- a/examples/declarative/effects/test.qml
+++ b/examples/declarative/effects/effects.qml
@@ -7,13 +7,13 @@ Rectangle {
Image {
id: blur
- source: "pic.jpg"
+ source: "pic.png"
effect: Blur {
blurRadius: NumberAnimation {
id: blurEffect
from: 0; to: 10
- duration: 200
+ duration: 1000
repeat: true
}
}
@@ -25,7 +25,7 @@ Rectangle {
Image {
id: grayscale
- source: "pic.jpg"
+ source: "pic.png"
x: 200
effect: Grayscale {}
@@ -35,7 +35,7 @@ Rectangle {
Image {
id: colorize
- source: "pic.jpg"
+ source: "pic.png"
x: 400
effect: Colorize { color: "blue" }
@@ -45,14 +45,14 @@ Rectangle {
Image {
id: pixelize
- source: "pic.jpg"
+ source: "pic.png"
y: 300
effect: Pixelize {
pixelSize: NumberAnimation {
id: pixelizeEffect
from: 0; to: 10
- duration: 200
+ duration: 1000
repeat: true
}
}
@@ -64,14 +64,14 @@ Rectangle {
Image {
id: dropShadow
- source: "pic.jpg"
+ source: "pic.png"
x: 200
y: 300
effect: DropShadow {
blurRadius: 3
offset.x: 3
- offset.y: NumberAnimation { id: dropShadowEffect; from: 0; to: 10; duration: 200; repeat: true; }
+ offset.y: NumberAnimation { id: dropShadowEffect; from: 0; to: 10; duration: 1000; repeat: true; }
}
MouseRegion { anchors.fill: parent; onClicked: dropShadowEffect.running = !dropShadowEffect.running }
@@ -81,7 +81,7 @@ Rectangle {
Image {
id: bloom
- source: "pic.jpg"
+ source: "pic.png"
x: 400
y: 300
@@ -91,7 +91,7 @@ Rectangle {
strength: NumberAnimation {
id: bloomEffect
from: 0; to: 1
- duration: 200
+ duration: 1000
repeat: true
}
}
diff --git a/examples/declarative/effects/pic.jpg b/examples/declarative/effects/pic.jpg
deleted file mode 100644
index 5775518..0000000
--- a/examples/declarative/effects/pic.jpg
+++ /dev/null
Binary files differ