~renatofilho/messaging-app/fix-1489330

« back to all changes in this revision

Viewing changes to src/qml/ThumbnailVideo.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2016-05-16 15:53:28 UTC
  • mfrom: (458.1.101 messaging-app)
  • Revision ID: renato.filho@canonical.com-20160516155328-3lkc6f6cob6jgi8k
Trunk merged.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2015 Canonical Ltd.
 
3
 *
 
4
 * This file is part of messaging-app.
 
5
 *
 
6
 * messaging-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * messaging-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
import Ubuntu.Components 1.3
 
21
import Ubuntu.Thumbnailer 0.1
 
22
 
 
23
UbuntuShape {
 
24
    id: thumbnail
 
25
    property string filePath
 
26
 
 
27
    signal pressAndHold()
 
28
 
 
29
    onFilePathChanged: videoImage.source = "image://thumbnailer/" + filePath
 
30
 
 
31
    width: childrenRect.width
 
32
    height: childrenRect.height
 
33
 
 
34
    image: Image {
 
35
        id: videoImage
 
36
 
 
37
        width: units.gu(8)
 
38
        height: units.gu(8)
 
39
        sourceSize.width: width
 
40
        sourceSize.height: height
 
41
        fillMode: Image.PreserveAspectCrop
 
42
        asynchronous: true
 
43
 
 
44
        onStatusChanged:  {
 
45
            if (status === Image.Error) {
 
46
                source = "image://theme/image-missing"
 
47
            }
 
48
        }
 
49
    }
 
50
 
 
51
    ActivityIndicator {
 
52
        anchors.centerIn: parent
 
53
        visible: running
 
54
        running: videoImage.status != Image.Ready
 
55
    }
 
56
 
 
57
    Icon {
 
58
        width: units.gu(3)
 
59
        height: units.gu(3)
 
60
        anchors.centerIn: parent
 
61
        name: "media-playback-start"
 
62
        color: "white"
 
63
        visible: opacity > 0.0
 
64
        opacity: videoImage.status == Image.Ready ? 0.8 : 0.0
 
65
        Behavior on opacity { UbuntuNumberAnimation {duration: UbuntuAnimation.FastDuration} }
 
66
    }
 
67
 
 
68
    MouseArea {
 
69
        anchors.fill: parent
 
70
        onPressAndHold: {
 
71
            mouse.accept = true
 
72
            thumbnail.pressAndHold()
 
73
        }
 
74
    }
 
75
}