2 * Copyright (C) 2014 Canonical, Ltd.
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.
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.
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/>.
18 import Ubuntu.Components 0.1
19 import Ubuntu.Thumbnailer 0.1
20 import "../../Components"
22 /*! \brief Preview widget for video.
24 This widget shows video contained in widgetData["source"],
25 with a placeholder screenshot specified by widgetData["screenshot"].
30 implicitWidth: units.gu(35)
31 implicitHeight: childrenRect.height
34 objectName: "screenshot"
41 var screenshot = widgetData["screenshot"];
42 if (screenshot) return screenshot;
44 var source = widgetData["source"];
46 if (source.toString().indexOf("file://") === 0) {
47 return "image://thumbnailer/" + source.toString().substr(7);
53 initialHeight: width * 10 / 16
56 objectName: "playButton"
58 readonly property bool bigButton: parent.width > units.gu(40)
60 anchors.centerIn: parent
61 width: bigButton ? units.gu(8) : units.gu(4.5)
63 source: "../graphics/play_button%1%2.png".arg(previewImageMouseArea.pressed ? "_active" : "").arg(bigButton ? "_big" : "")
64 visible: parent.state === "ready"
68 enabled: parent.state === "ready"
69 id: previewImageMouseArea
71 onClicked: Qt.openUrlExternally(widgetData["source"])