Corrected video recording resolution for front camera
[harmattan/cameraplus] / qml / RecordingDurationLabel.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 2.0
24
25 Rectangle {
26     property int duration
27
28     anchors.bottom: parent.bottom
29     anchors.right: parent.right
30     anchors.rightMargin: 20
31     anchors.bottomMargin: 20
32
33     color: "black"
34     opacity: 0.5
35     width: 100
36     height: 30
37
38     Image {
39         id: recordingIcon
40         source: cameraTheme.recordingDurationIcon
41         width: 20
42         height: 20
43         anchors.verticalCenter: parent.verticalCenter
44         anchors.left: parent.left
45         anchors.leftMargin: 5
46         sourceSize.width: 20
47         sourceSize.height: 20
48     }
49
50     CameraLabel {
51         function formatDuration(dur) {
52             var secs = parseInt(recordingDuration.duration)
53             var minutes = Math.floor(secs / 60)
54             var seconds = secs - (minutes * 60)
55
56             var date = new Date()
57             date.setSeconds(seconds)
58             date.setMinutes(minutes)
59             return Qt.formatTime(date, "mm:ss")
60         }
61
62         text: formatDuration(parent.duration)
63         anchors.left: recordingIcon.right
64         anchors.leftMargin: 5
65     }
66 }