481b28c2ae18f7689a342e124c033939ee0f8291
[profile/ivi/qtdeclarative.git] / examples / declarative / flickr / content / UnifiedDelegate.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 QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 import QtQuick 2.0
43 import QtQuick.Particles 2.0
44
45 Package {
46     function photoClicked() {
47         imageDetails.photoTitle = title;
48         imageDetails.photoTags = tags;
49         imageDetails.photoWidth = photoWidth;
50         imageDetails.photoHeight = photoHeight;
51         imageDetails.photoType = photoType;
52         imageDetails.photoAuthor = photoAuthor;
53         imageDetails.photoDate = photoDate;
54         imageDetails.photoUrl = url;
55         imageDetails.rating = 0;
56         scaleMe.state = "Details";
57     }
58
59     Item {
60         id: gridwrapper;
61         width: GridView.view.cellWidth; height: GridView.view.cellHeight
62         Package.name: "grid"
63     }
64     Item {
65         id: streamwrapper;
66         width: 80; height: 80
67         Package.name: "stream"
68     }
69     Item {
70         //anchors.centerIn: parent//Doesn't animate :(
71         width: 80; height: 80
72         scale: 0.0
73         Behavior on scale { NumberAnimation { easing.type: Easing.InOutQuad} }
74         id: scaleMe
75
76         Item {
77             id: whiteRectContainer
78             width: 77; height: 77; anchors.centerIn: parent
79             Rectangle {
80                 id: whiteRect; width: 77; height: 77; color: "#dddddd"; smooth: true
81                 x:0; y:0
82                 Image { id: thumb; source: imagePath; x: 1; y: 1; smooth: true }
83                 Image { source: "images/gloss.png" }
84                 MouseArea { anchors.fill: parent; onClicked: photoClicked() }
85             }
86         }
87
88         Connections {
89             target: toolBar
90             onButton2Clicked: if (scaleMe.state == 'Details' ) scaleMe.state = 'Show'
91         }
92
93             state: 'inStream'
94         states: [
95             State {
96                 name: "Show"; when: thumb.status == Image.Ready
97                 PropertyChanges { target: scaleMe; scale: 1; }
98             },
99             State {
100                 name: "Details"
101                 PropertyChanges { target: scaleMe; scale: 1 }
102                 ParentChange { target: whiteRect; x: 10; y: 20; parent: imageDetails.frontContainer }
103                 PropertyChanges { target: background; state: "DetailedView" }
104             }
105         ]
106         transitions: [
107             Transition {
108                 from: "Show"; to: "Details"
109                 ParentAnimation {
110                     via: foreground
111                     NumberAnimation { properties: "x,y"; duration: 500; easing.type: Easing.InOutQuad }
112                 }
113             },
114             Transition {
115                 from: "Details"; to: "Show"
116                 SequentialAnimation{
117                     ParentAnimation {
118                         via: foreground
119                         NumberAnimation { properties: "x,y"; duration: 500; easing.type: Easing.InOutQuad }
120                     }
121                 }
122             }
123         ]
124         Item{
125             id: stateContainer
126             states: [
127                 State {
128                     name: 'inStream'
129                     when: screen.inGridView == false
130                     ParentChange { 
131                         target: scaleMe; parent: streamwrapper 
132                         x: 0; y: 0; 
133                     }
134                 },
135                 State {
136                     name: 'inGrid'
137                     when: screen.inGridView == true
138                     ParentChange {
139                         target: scaleMe; parent: gridwrapper
140                         x: 0; y: 0;
141                     }
142                 }
143             ]
144
145             transitions: [
146                 Transition {
147                     ParentAnimation {
148                         NumberAnimation { target: scaleMe; properties: 'x,y,width,height'; duration: 300 }
149                     }
150                 }
151             ]
152         }
153     }
154 }