Initial Qt5 port
[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
37 #if defined(QT4)
38 class Viewfinder : public QDeclarativeItem, public QtCamViewfinder {
39 #elif defined(QT5)
40 class Viewfinder : public QQuickPaintedItem, public QtCamViewfinder {
41 #endif
42
43   Q_OBJECT
44
45   Q_PROPERTY(QRectF renderArea READ renderArea NOTIFY renderAreaChanged);
46   Q_PROPERTY(QSizeF videoResolution READ videoResolution NOTIFY videoResolutionChanged);
47   Q_PROPERTY(bool renderingEnabled READ isRenderingEnabled WRITE setRenderingEnabled NOTIFY renderingEnabledChanged);
48   Q_PROPERTY(Camera *camera READ camera WRITE setCamera NOTIFY cameraChanged);
49   Q_PROPERTY(CameraConfig *cameraConfig READ cameraConfig WRITE setCameraConfig NOTIFY cameraConfigChanged);
50
51 public:
52 #if defined(QT4)
53   Viewfinder(QDeclarativeItem *parent = 0);
54 #elif defined(QT5)
55   Viewfinder(QQuickItem *parent = 0);
56 #endif
57
58   ~Viewfinder();
59
60   QRectF renderArea() const;
61   QSizeF videoResolution() const;
62
63   bool isRenderingEnabled() const;
64   void setRenderingEnabled(bool enabled);
65
66   Camera *camera() const;
67   void setCamera(Camera *camera);
68
69   CameraConfig *cameraConfig() const;
70   void setCameraConfig(CameraConfig *config);
71
72 #if defined(QT4)
73   void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
74 #elif defined(QT5)
75   void paint(QPainter *painter);
76 #endif
77
78   GstElement *sinkElement();
79   bool setDevice(QtCamDevice *device);
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
97 private:
98   QtCamViewfinderRenderer *m_renderer;
99   Camera *m_cam;
100   CameraConfig *m_conf;
101   bool m_enabled;
102 };
103
104 #endif /* VIEWFINDER_H */