Initial ui reimplementation. Still in its early phase.
[harmattan/cameraplus] / qml / PostCaptureItem.qml
1 // -*- qml -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 import QtQuick 1.1
24 import com.nokia.meego 1.1
25 import CameraPlus 1.0
26
27 Item {
28     id: postCaptureItem
29     property bool isVideo: itemData.type.search("nmm#Video") > 0
30     property alias error: image.error
31     property variant itemData: item
32     property bool playing: loader.source != ""
33     signal clicked
34
35     function startPlayback() {
36         loader.source = Qt.resolvedUrl("VideoPlayerPage.qml")
37         loader.item.source = itemData.url
38         loader.item.play()
39     }
40
41     Loader {
42         id: loader
43         anchors.fill: parent
44     }
45
46     Connections {
47         target: loader.item
48         onFinished: loader.source = ""
49     }
50
51     QuillItem {
52         id: image
53         width: parent.width - 10
54         height: parent.height
55         anchors.centerIn: parent
56         Component.onCompleted: initialize(itemData.url, itemData.mimetype)
57         visible: loader.source == ""
58
59         Label {
60             anchors.fill: parent
61             visible: image.error
62             text: qsTr("Failed to load preview")
63             verticalAlignment: Text.AlignVCenter
64             horizontalAlignment: Text.AlignHCenter
65             font.pixelSize: 32
66         }
67
68         MouseArea {
69             id: mouse
70             anchors.fill: parent
71             enabled: true
72             onClicked: postCaptureItem.clicked()
73         }
74
75         ToolIcon {
76             // TODO: this is overlapping with error.
77             id: playIcon
78             anchors.centerIn: parent
79             iconSource: "image://theme/icon-s-music-video-play"
80             visible: isVideo
81             onClicked: startPlayback()
82         }
83     }
84 }