Hide post capture toolbar immediately when we start video playback
[harmattan/cameraplus] / qml / ImageColorFilterButton.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 import QtCamera 1.0
25 import "data.js" as Data
26
27 CameraToolIcon {
28     id: button
29     iconId: Data.cfIcon(settings.imageColorFilter)
30
31     property CameraToolBarTools tools: CameraToolBarTools {
32         CameraLabel {
33             height: parent ? parent.height : 0
34             text: qsTr("Filter")
35             verticalAlignment: Text.AlignVCenter
36         }
37
38         CheckButton {
39             iconId: Data.cfIcon(ColorTone.Normal)
40             onClicked: settings.imageColorFilter = ColorTone.Normal
41             checked: settings.imageColorFilter == ColorTone.Normal
42         }
43
44         CheckButton {
45             iconId: Data.cfIcon(ColorTone.GrayScale)
46             onClicked: settings.imageColorFilter = ColorTone.GrayScale
47             checked: settings.imageColorFilter == ColorTone.GrayScale
48         }
49
50         CheckButton {
51             iconId: Data.cfIcon(ColorTone.Sepia)
52             onClicked: settings.imageColorFilter = ColorTone.Sepia
53             checked: settings.imageColorFilter == ColorTone.Sepia
54         }
55
56         CheckButton {
57             iconId: Data.cfIcon(ColorTone.Vivid)
58             onClicked: settings.imageColorFilter = ColorTone.Vivid
59             checked: settings.imageColorFilter == ColorTone.Vivid
60         }
61
62         CheckButton {
63             iconId: Data.cfIcon(ColorTone.Negative)
64             onClicked: settings.imageColorFilter = ColorTone.Negative
65             checked: settings.imageColorFilter == ColorTone.Negative
66         }
67
68         CheckButton {
69             iconId: Data.cfIcon(ColorTone.Solarize)
70             onClicked: settings.imageColorFilter = ColorTone.Solarize
71             checked: settings.imageColorFilter == ColorTone.Solarize
72         }
73     }
74 }