Bind checked property to the corresponding setting value for CameraTextSwitch
[harmattan/cameraplus] / declarative / viewfinder.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 VIEWFINDER_H
24 #define VIEWFINDER_H
25
26 #if defined(QT4)
27 #include <QDeclarativeItem>
28 #elif defined(QT5)
29 #include <QQuickPaintedItem>
30 #endif
31 #include "qtcamviewfinder.h"
32
33 class QtCamViewfinderRenderer;
34 class Camera;
35 class CameraConfig;
36 class QtCamDevice;
37
38 #if defined(QT4)
39 class Viewfinder : public QDeclarativeItem, public QtCamViewfinder {
40 #elif defined(QT5)
41 class Viewfinder : public QQuickPaintedItem, public QtCamViewfinder {
42 #endif
43
44   Q_OBJECT
45
46   Q_PROPERTY(QRectF renderArea READ renderArea NOTIFY renderAreaChanged);
47   Q_PROPERTY(QSizeF videoResolution READ videoResolution NOTIFY videoResolutionChanged);
48   Q_PROPERTY(bool renderingEnabled READ isRenderingEnabled WRITE setRenderingEnabled NOTIFY renderingEnabledChanged);
49   Q_PROPERTY(Camera *camera READ camera WRITE setCamera NOTIFY cameraChanged);
50   Q_PROPERTY(CameraConfig *cameraConfig READ cameraConfig WRITE setCameraConfig NOTIFY cameraConfigChanged);
51
52 public:
53 #if defined(QT4)
54   Viewfinder(QDeclarativeItem *parent = 0);
55 #elif defined(QT5)
56   Viewfinder(QQuickItem *parent = 0);
57 #endif
58
59   ~Viewfinder();
60
61   QRectF renderArea() const;
62   QSizeF videoResolution() const;
63
64   bool isRenderingEnabled() const;
65   void setRenderingEnabled(bool enabled);
66
67   Camera *camera() const;
68   void setCamera(Camera *camera);
69
70   CameraConfig *cameraConfig() const;
71   void setCameraConfig(CameraConfig *config);
72
73 #if defined(QT4)
74   void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
75 #elif defined(QT5)
76   void paint(QPainter *painter);
77 #endif
78
79   GstElement *sinkElement();
80   void stop();
81
82 signals:
83   void renderAreaChanged();
84   void videoResolutionChanged();
85   void renderingEnabledChanged();
86   void cameraChanged();
87   void cameraConfigChanged();
88
89 protected:
90   void geometryChanged(const QRectF& newGeometry, const QRectF& oldGeometry);
91   void componentComplete();
92
93 private slots:
94   void deviceChanged();
95   void updateRequested();
96   void prepareForDeviceChange();
97
98 private:
99   QtCamViewfinderRenderer *m_renderer;
100   Camera *m_cam;
101   CameraConfig *m_conf;
102   QtCamDevice *m_dev;
103   bool m_enabled;
104 };
105
106 #endif /* VIEWFINDER_H */