Added copyright headers and COPYING file.
[harmattan/cameraplus] / imports / whitebalance.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 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 #ifndef WHITE_BALANCE_H
24 #define WHITE_BALANCE_H
25
26 #include "capability.h"
27 #include "qtcamwhitebalance.h"
28
29 class WhiteBalance : public Capability {
30   Q_OBJECT
31
32   Q_PROPERTY(WhiteBalanceMode value READ value WRITE setValue NOTIFY valueChanged);
33   Q_ENUMS(WhiteBalanceMode);
34
35 public:
36   typedef enum {
37     Auto = QtCamWhiteBalance::Auto,
38     Daylight = QtCamWhiteBalance::Daylight,
39     Cloudy = QtCamWhiteBalance::Cloudy,
40     Sunset = QtCamWhiteBalance::Sunset,
41     Tungsten = QtCamWhiteBalance::Tungsten,
42     Flourescent = QtCamWhiteBalance::Flourescent
43   } WhiteBalanceMode;
44
45   WhiteBalance(QObject *parent = 0);
46   ~WhiteBalance();
47
48   WhiteBalanceMode value();
49   void setValue(const WhiteBalanceMode& mode);
50
51 signals:
52   void valueChanged();
53
54 private:
55   virtual void deviceChanged();
56
57   QtCamWhiteBalance *m_wb;
58 };
59
60 #endif /* WHITE_BALANCE_H */