Rename speed -> velocity in the particle system
[profile/ivi/qtdeclarative.git] / examples / particles / imageparticle / sharing.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 // This example shows how to create your own highlight delegate for a ListView
42 // that uses a SpringAnimation to provide custom movement when the
43 // highlight bar is moved between items.
44
45 import QtQuick 2.0
46 import QtQuick.Particles 2.0
47
48 Rectangle {
49     property real delegateHeight: 65
50     width: 200; height: 300
51     gradient: Gradient {
52         GradientStop { position: 0.0; color: "#EEEEFF" }
53         GradientStop { position: 1.0; color: "lightblue" }
54     }
55
56     // Define a delegate component.  A component will be
57     // instantiated for each visible item in the list.
58     Component {
59         id: petDelegate
60         Item {
61             id: wrapper
62             width: 200; height: delegateHeight
63             z: 10
64             Column {
65                 Text {color: "white"; text: name; font.pixelSize: 18 }
66                 Text {color: "white"; text: 'Type: ' + type; font.pixelSize: 14 }
67                 Text {color: "white"; text: 'Age: ' + age; font.pixelSize: 14 }
68             }
69             // indent the item if it is the current item
70             states: State {
71                 name: "Current"
72                 when: wrapper.ListView.isCurrentItem
73                 PropertyChanges { target: wrapper; x: 20 }
74             }
75             transitions: Transition {
76                 NumberAnimation { properties: "x"; duration: 200 }
77             }
78         }
79     }
80
81     // Define a highlight with customised movement between items.
82     Component {
83         id: highlightBar
84         Rectangle {
85             z: 0
86             width: 200; height: delegateHeight
87             gradient: Gradient {
88                 GradientStop { position: 0.0; color: "#99FF99" }
89                 GradientStop { position: 1.0; color: "#88FF88" }
90             }
91             y: listView.currentItem.y;
92             Behavior on y { SpringAnimation { spring: 2; damping: 0.2 } }
93             ImageParticle {
94                 anchors.fill: parent
95                 system: particles
96                 source: "../images/flower.png"
97                 color: "red"
98                 clip: true
99                 alpha: 1.0
100             }
101         }
102     }
103
104     ListView {
105         id: listView
106         width: 200; height: parent.height
107
108         model: petsModel
109         delegate: petDelegate
110         focus: true
111
112         // Set the highlight delegate. Note we must also set highlightFollowsCurrentItem
113         // to false so the highlight delegate can control how the highlight is moved.
114         highlight: highlightBar
115         highlightFollowsCurrentItem: false
116
117         ParticleSystem { id: particles }
118         Emitter {
119             system: particles
120             anchors.fill: parent
121             emitRate: 1
122             lifeSpan: 10000
123             size: 24
124             sizeVariation: 8
125             velocity: AngleDirection { angleVariation: 360; magnitude: 3 }
126             maximumEmitted: 10
127             startTime: 5000
128         }
129
130         ImageParticle {
131             anchors.fill: parent
132             system: particles
133             source: "../images/flower.png"
134             alpha: 0.1
135             color: "white"
136             rotationVariation: 180
137             z: -1
138         }
139     }
140
141     ListModel {
142         id: petsModel
143         ListElement {
144             name: "Polly"
145             type: "Parrot"
146             age: 12
147             size: "Small"
148         }
149         ListElement {
150             name: "Penny"
151             type: "Turtle"
152             age: 4
153             size: "Small"
154         }
155         ListElement {
156             name: "Warren"
157             type: "Rabbit"
158             age: 2
159             size: "Small"
160         }
161         ListElement {
162             name: "Spot"
163             type: "Dog"
164             age: 9
165             size: "Medium"
166         }
167         ListElement {
168             name: "Schrödinger"
169             type: "Cat"
170             age: 2
171             size: "Medium"
172         }
173         ListElement {
174             name: "Joey"
175             type: "Kangaroo"
176             age: 1
177             size: "Medium"
178         }
179         ListElement {
180             name: "Kimba"
181             type: "Bunny"
182             age: 65
183             size: "Large"
184         }
185         ListElement {
186             name: "Rover"
187             type: "Dog"
188             age: 5
189             size: "Large"
190         }
191         ListElement {
192             name: "Tiny"
193             type: "Elephant"
194             age: 15
195             size: "Large"
196         }
197     }
198
199 }