~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import org.kde.plasma.components 0.1
import org.kde.qtextracomponents 0.1
import "navigation.js" as Navigation
import QtQuick 1.1

ListItem {
    id: delegateRoot
    clip: true
    width: parentItem.cellWidth
    height: parentItem.cellHeight
    property bool requireClick: false
    
    MouseArea {
        id: delegateArea
        anchors.fill: parent
        hoverEnabled: true
        property bool displayDescription: false
        onPositionChanged: if(!delegateRoot.requireClick) timer.restart()
        onExited: { if(!delegateRoot.requireClick) timer.stop(); displayDescription=false}
        Timer {
            id: timer
            interval: 200
            onTriggered: delegateArea.displayDescription=true
        }
        onClicked: {
            if(delegateRoot.requireClick && !displayDescription) {
                displayDescription=true
            } else
                Navigation.openApplication(application)
        }
    
        Flickable {
            id: delegateFlickable
            anchors.fill: parent
            contentHeight: delegateRoot.height*2
            interactive: false
            Behavior on contentY { NumberAnimation { duration: 200; easing.type: Easing.InQuad } }
            
            Image {
                id: screen
                anchors {
                    horizontalCenter: parent.horizontalCenter
                    top: parent.top
                    topMargin: 5
                }
                fillMode: Image.PreserveAspectFit
                source: model.application.thumbnailUrl
                width: parent.width; height: delegateRoot.height*0.7
                sourceSize {
                    width: screen.width
                    height: screen.height
                }
                cache: false
                asynchronous: true
                onStatusChanged:  {
                    if(status==Image.Error) {
                        sourceSize.width = height
                        sourceSize.height = height
                        source="image://icon/"+model.application.icon
                        smallIcon.visible = false
                    }
                }
            }
            QIconItem {
                id: smallIcon
                anchors {
                    right: screen.right
                }
                width: 48
                height: width
                icon: model.application.icon
                Behavior on y { NumberAnimation { duration: 200; easing.type: Easing.InQuad } }
            }
            Label {
                anchors {
                    top: screen.bottom
                    left: parent.left
                    right: parent.right
                    leftMargin: 5
                }
                horizontalAlignment: Text.AlignHCenter
                elide: Text.ElideRight
                text: name
            }
            Loader {
                id: descriptionLoader
                anchors {
                    left: parent.left
                    right: parent.right
                    bottom: parent.bottom
                    top: parent.verticalCenter
                }
            }
        }
        onStateChanged: {
            if(state=="description")
                descriptionLoader.sourceComponent=extraInfoComponent
        }
        
        state: "screenshot"
        states: [
            State { name: "screenshot"
                when: !delegateArea.displayDescription
                PropertyChanges { target: smallIcon; y: 5+screen.height-height }
                PropertyChanges { target: delegateFlickable; contentY: 0 }
            },
            State { name: "description"
                when: delegateArea.displayDescription
                PropertyChanges { target: smallIcon; y: 5+delegateRoot.height }
                PropertyChanges { target: delegateFlickable; contentY: delegateRoot.height }
            }
        ]
    }
    
    Component {
        id: extraInfoComponent
        Item {
            Label {
                anchors {
                    left: parent.left
                    right: parent.right
                    top: parent.top
                    bottom: installButton.top
                    rightMargin: smallIcon.visible ? 48 : 0
                    topMargin: 5
                }
                verticalAlignment: Text.AlignVCenter
                horizontalAlignment: Text.AlignHCenter
                wrapMode: Text.WordWrap
                text: model.application.comment
            }
            InstallApplicationButton {
                id: installButton
                width: parent.width/3
                height: 30
                anchors {
                    bottom: parent.bottom
                    left: parent.left
                    bottomMargin: 20
                    margins: 10
                }
                
                application: model.application
                preferUpgrade: page.preferUpgrade
            }
            Item {
                anchors {
                    right: parent.right
                    left: installButton.right
                    verticalCenter: installButton.verticalCenter
                    margins: 10
                    topMargin: 20
                }
                height: Math.min(installButton.height, width/5)
                Rating {
                    anchors.fill: parent
                    rating: model.rating
                    visible: !model.application.canUpgrade && model.rating>=0
                }
                Button {
                    text: i18n("Upgrade")
                    visible: model.application.canUpgrade
                }
            }
        }
    }
}