6dc99a3bde0cb3c23c354145bb95ac6f78df2268
[harmattan/cameraplus] / qml / CaptureButton.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_QT_QUICK@
24 import com.nokia.meego 1.1
25
26 Item {
27     id: button
28
29     property url iconSource
30     property Style platformStyle: ButtonStyle {}
31
32     property alias pressed: mouse.pressed
33     property alias mouseX: mouse.mouseX
34     property alias mouseY: mouse.mouseY
35
36     signal clicked
37     signal exited
38
39     MouseArea {
40         id: mouse
41         anchors.fill: parent
42         onClicked: button.clicked()
43         onExited: button.exited()
44     }
45
46     BorderImage {
47         id: background
48         anchors.fill: parent
49         border.left: button.platformStyle.backgroundMarginLeft
50         border.top: button.platformStyle.backgroundMarginTop
51         border.right: button.platformStyle.backgroundMarginRight
52         border.bottom: button.platformStyle.backgroundMarginBottom
53         source:  pressed ? button.platformStyle.pressedBackground : button.platformStyle.background
54     }
55
56     Image {
57         id: icon
58         anchors.centerIn: parent
59         anchors.verticalCenter: parent.verticalCenter
60         anchors.verticalCenterOffset: -1
61         source: button.iconSource
62         visible: source != ""
63     }
64 }