~saviq/unity8/fix-frequent-app-ids

« back to all changes in this revision

Viewing changes to Dash/Movie/MoviePreview.qml

  • Committer: Tarmac
  • Author(s): Ying-Chun Liu, Michael Zanetti, Diego Sarmentero, Michał Sawicz
  • Date: 2013-10-07 15:01:21 UTC
  • mfrom: (361.5.35 previews)
  • Revision ID: tarmac-20131007150121-ytiepzjfgljk0rbf
update previews to match design. Fixes: https://bugs.launchpad.net/bugs/1224555.

Approved by PS Jenkins bot, Michał Sawicz, Ying-Chun Liu, Michal Hruby.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
import QtQuick 2.0
 
18
import Ubuntu.Components 0.1
 
19
import ".."
 
20
import "../Generic"
 
21
import "../../Components"
 
22
import "../Previews"
 
23
 
 
24
GenericPreview {
 
25
    id: root
 
26
 
 
27
    property bool ready: previewData ? true : false
 
28
    property url url: ready ? previewData.image : ""
 
29
 
 
30
    previewImages: previewImageComponent
 
31
    header: headerComponent
 
32
 
 
33
    Component {
 
34
        id: previewImageComponent
 
35
        LazyImage {
 
36
            anchors.left: parent.left
 
37
            anchors.right: parent.right
 
38
            scaleTo: "width"
 
39
            visible: height > 0
 
40
            source: root.url
 
41
            initialHeight: width * 10 / 16
 
42
 
 
43
            Image {
 
44
                objectName: "playButton"
 
45
                anchors.centerIn: parent
 
46
                readonly property bool bigButton: parent.width > units.gu(40)
 
47
                width: bigButton ? units.gu(8) : units.gu(4.5)
 
48
                height: width
 
49
                source: "../graphics/play_button%1%2.png".arg(previewImageMouseArea.pressed ? "_active" : "").arg(bigButton ? "_big" : "")
 
50
            }
 
51
 
 
52
            MouseArea {
 
53
                id: previewImageMouseArea
 
54
                anchors.fill: parent
 
55
                onClicked: {
 
56
                    Qt.openUrlExternally(previewData.result.uri);
 
57
                }
 
58
            }
 
59
        }
 
60
    }
 
61
 
 
62
    Component {
 
63
        id: headerComponent
 
64
        Header {
 
65
            title: previewData.title
 
66
            rating: Math.round(previewData.rating * 10)
 
67
            reviews: previewData.numRatings
 
68
            rated: previewData.infoMap["rated"] ? previewData.infoMap["rated"].value : 0
 
69
        }
 
70
    }
 
71
}