46af43dbae3e25a1128f1a005397fa8be9856613
[profile/ivi/qtdeclarative.git] / examples / declarative / particles / imageparticle / sharing.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
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             speed: 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             opacityTable: "opacity.png"
137             rotationVariation: 180
138             z: -1
139         }
140     }
141
142     ListModel {
143         id: petsModel
144         ListElement {
145             name: "Polly"
146             type: "Parrot"
147             age: 12
148             size: "Small"
149         }
150         ListElement {
151             name: "Penny"
152             type: "Turtle"
153             age: 4
154             size: "Small"
155         }
156         ListElement {
157             name: "Warren"
158             type: "Rabbit"
159             age: 2
160             size: "Small"
161         }
162         ListElement {
163             name: "Spot"
164             type: "Dog"
165             age: 9
166             size: "Medium"
167         }
168         ListElement {
169             name: "Schrödinger"
170             type: "Cat"
171             age: 2
172             size: "Medium"
173         }
174         ListElement {
175             name: "Joey"
176             type: "Kangaroo"
177             age: 1
178             size: "Medium"
179         }
180         ListElement {
181             name: "Kimba"
182             type: "Bunny"
183             age: 65
184             size: "Large"
185         }
186         ListElement {
187             name: "Rover"
188             type: "Dog"
189             age: 5
190             size: "Large"
191         }
192         ListElement {
193             name: "Tiny"
194             type: "Elephant"
195             age: 15
196             size: "Large"
197         }
198     }
199
200 }