lock the UI when user starts to drag the reticle.
[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         if (!loader.item.play()) {
39             showError(qsTr("Error playing video. Please try again."))
40             loader.source = ""
41         }
42     }
43
44     Loader {
45         id: loader
46         anchors.fill: parent
47     }
48
49     Connections {
50         target: loader.item
51         onFinished: loader.source = ""
52     }
53
54     QuillItem {
55         id: image
56         width: parent.width - 10
57         height: parent.height
58         anchors.centerIn: parent
59         Component.onCompleted: initialize(itemData.url, itemData.mimetype)
60         visible: loader.source == ""
61
62         Label {
63             anchors.fill: parent
64             visible: image.error
65             text: qsTr("Failed to load preview")
66             verticalAlignment: Text.AlignVCenter
67             horizontalAlignment: Text.AlignHCenter
68             font.pixelSize: 32
69         }
70
71         MouseArea {
72             id: mouse
73             anchors.fill: parent
74             enabled: true
75             onClicked: postCaptureItem.clicked()
76         }
77
78         ToolIcon {
79             // TODO: this is overlapping with error.
80             id: playIcon
81             anchors.centerIn: parent
82             iconSource: "image://theme/icon-s-music-video-play"
83             visible: isVideo
84             onClicked: startPlayback()
85         }
86     }
87 }