diff options
Diffstat (limited to 'tests/auto/declarative/animatedimage/data')
-rw-r--r-- | tests/auto/declarative/animatedimage/data/colors.gif | bin | 0 -> 505 bytes | |||
-rw-r--r-- | tests/auto/declarative/animatedimage/data/colors.qml | 5 | ||||
-rw-r--r-- | tests/auto/declarative/animatedimage/data/stickman.gif | bin | 0 -> 164923 bytes | |||
-rw-r--r-- | tests/auto/declarative/animatedimage/data/stickman.qml | 5 | ||||
-rw-r--r-- | tests/auto/declarative/animatedimage/data/stickmanpause.qml | 7 | ||||
-rw-r--r-- | tests/auto/declarative/animatedimage/data/stickmanstopped.qml | 6 |
6 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/declarative/animatedimage/data/colors.gif b/tests/auto/declarative/animatedimage/data/colors.gif Binary files differnew file mode 100644 index 0000000..1270bfa --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/colors.gif diff --git a/tests/auto/declarative/animatedimage/data/colors.qml b/tests/auto/declarative/animatedimage/data/colors.qml new file mode 100644 index 0000000..5bada34 --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/colors.qml @@ -0,0 +1,5 @@ +import Qt 4.6 + +AnimatedImage { + source: "colors.gif" +} diff --git a/tests/auto/declarative/animatedimage/data/stickman.gif b/tests/auto/declarative/animatedimage/data/stickman.gif Binary files differnew file mode 100644 index 0000000..7c4cd18 --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/stickman.gif diff --git a/tests/auto/declarative/animatedimage/data/stickman.qml b/tests/auto/declarative/animatedimage/data/stickman.qml new file mode 100644 index 0000000..a70db5d --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/stickman.qml @@ -0,0 +1,5 @@ +import Qt 4.6 + +AnimatedImage { + source: "stickman.gif" +} diff --git a/tests/auto/declarative/animatedimage/data/stickmanpause.qml b/tests/auto/declarative/animatedimage/data/stickmanpause.qml new file mode 100644 index 0000000..7ab17d4 --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/stickmanpause.qml @@ -0,0 +1,7 @@ +import Qt 4.6 + +AnimatedImage { + source: "stickman.gif" + paused: true + currentFrame: 2 +} diff --git a/tests/auto/declarative/animatedimage/data/stickmanstopped.qml b/tests/auto/declarative/animatedimage/data/stickmanstopped.qml new file mode 100644 index 0000000..53b0c3a --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/stickmanstopped.qml @@ -0,0 +1,6 @@ +import Qt 4.6 + +AnimatedImage { + source: "stickman.gif" + playing: false +} |