Kill redundant Connecation element for resolution settings
[harmattan/cameraplus] / declarative / roi.h
1 // -*- c++ -*-
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 #ifndef ROI_H
24 #define ROI_H
25
26 #include <QObject>
27 #include <QRectF>
28 #include <QVariantList>
29
30 class QtCamDevice;
31 class QtCamRoi;
32
33 class Roi : public QObject {
34   Q_OBJECT
35
36   Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged);
37   Q_PROPERTY(bool normalize READ normalize WRITE setNormalize NOTIFY normalizeChanged);
38
39 public:
40   Roi(QtCamDevice *device, QObject *parent = 0);
41   ~Roi();
42
43   void setEnabled(bool enabled);
44   bool isEnabled();
45
46   QList<QRectF> regions();
47
48   bool normalize() const;
49   void setNormalize(bool normalize);
50
51 public slots:
52   void setRegionOfInterest(const QRectF& region);
53   void resetRegionOfInterest();
54
55 signals:
56   void enabledChanged();
57   void normalizeChanged();
58   void regionsChanged(const QVariantList& regions, const QVariant& primary,
59                       const QVariantList& rest);
60
61 private slots:
62   void handleRegionsChanged(const QList<QRectF>& regions, const QRectF& primary,
63                             const QList<QRectF>& rest);
64
65 private:
66   QtCamRoi *m_roi;
67   bool m_normalize;
68 };
69
70 #endif /* ROI_H */