aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-25 23:18:42 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-25 23:18:42 +0800
commitb0a5be4495962c291a25cbea793e43bad0781510 (patch)
treee058201e7b29c3cb8efd710e20ec1e1f97f64368 /Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml
parente64625aa8215985c85f97f914a98db081e07714f (diff)
parente9c0b5431cbd7430ddec9fd17983241018fd8a55 (diff)
downloadgo-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.gz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.bz2
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.lz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.xz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.zst
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.zip
Merge pull request #1321 from karalabe/cut-it-open-3000
Metrics collecting and reporting support
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml66
1 files changed, 0 insertions, 66 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml b/Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml
deleted file mode 100644
index 8c59fc351..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/examples/painting-es2/painting.qml
+++ /dev/null
@@ -1,66 +0,0 @@
-import QtQuick 2.0
-import GoExtensions 1.0
-
-Rectangle {
- id: root
-
- width: 640
- height: 280
- color: "black"
-
- Rectangle {
- x: 20; y: 20; width: 100; height: 100
- color: "red"
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- NumberAnimation { from: 20; to: 120; duration: 4000; easing.type: Easing.InOutQuad }
- NumberAnimation { from: 120; to: 20; duration: 4000; easing.type: Easing.InOutQuad }
- }
- }
-
- Rectangle {
- x: 40; y: 40; width: 100; height: 100
- color: "yellow"
- opacity: 0.7
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- NumberAnimation { from: 40; to: 220; duration: 4000; easing.type: Easing.InOutQuad }
- NumberAnimation { from: 220; to: 40; duration: 4000; easing.type: Easing.InOutQuad }
- }
- }
-
- GoRect {
- x: 60; y: 60; width: 100; height: 100
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- NumberAnimation { from: 60; to: 320; duration: 4000; easing.type: Easing.InOutQuad }
- NumberAnimation { from: 320; to: 60; duration: 4000; easing.type: Easing.InOutQuad }
- }
- }
-
- Rectangle {
- x: 80; y: 80; width: 100; height: 100
- color: "yellow"
- opacity: 0.7
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- NumberAnimation { from: 80; to: 420; duration: 4000; easing.type: Easing.InOutQuad }
- NumberAnimation { from: 420; to: 80; duration: 4000; easing.type: Easing.InOutQuad }
- }
- }
-
- Rectangle {
- x: 100; y: 100; width: 100; height: 100
- color: "red"
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- NumberAnimation { from: 100; to: 520; duration: 4000; easing.type: Easing.InOutQuad }
- NumberAnimation { from: 520; to: 100; duration: 4000; easing.type: Easing.InOutQuad }
- }
- }
-}