Added copyright headers and COPYING file.
[harmattan/cameraplus] / imports / noisereduction.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 NOISE_REDUCTION_H
24 #define NOISE_REDUCTION_H
25
26 #include "capability.h"
27 #include "qtcamnoisereduction.h"
28
29 class NoiseReduction : public Capability {
30   Q_OBJECT
31
32   Q_PROPERTY(NoiseReductionMode value READ value WRITE setValue NOTIFY valueChanged);
33   Q_ENUMS(NoiseReductionMode);
34
35 public:
36   typedef enum {
37     None = QtCamNoiseReduction::None,
38     Bayer = QtCamNoiseReduction::Bayer,
39     Ycc = QtCamNoiseReduction::Ycc,
40     Temporal = QtCamNoiseReduction::Temporal,
41     Fixed = QtCamNoiseReduction::Fixed,
42     Extra = QtCamNoiseReduction::Extra
43   } NoiseReductionMode;
44
45   NoiseReduction(QObject *parent = 0);
46   ~NoiseReduction();
47
48   NoiseReductionMode value();
49   void setValue(const NoiseReductionMode& mode);
50
51 signals:
52   void valueChanged();
53
54 private:
55   virtual void deviceChanged();
56
57   QtCamNoiseReduction *m_nr;
58 };
59
60 #endif /* NOISE_REDUCTION_H */