Added QtCamAutoFocus::setRegionOfInterest()
[harmattan/cameraplus] / lib / qtcamviewfinderrenderermeego.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 QT_CAM_VIEWFINDER_RENDERER_MEEGO_H
24 #define QT_CAM_VIEWFINDER_RENDERER_MEEGO_H
25
26 #include "qtcamviewfinderrenderer.h"
27 #include <QImage>
28 #include <QMutex>
29 #include <QMatrix4x4>
30 #include <GLES2/gl2.h>
31
32 class QGLShaderProgram;
33
34 class QtCamViewfinderRendererMeeGo : public QtCamViewfinderRenderer {
35   Q_OBJECT
36
37 public:
38   Q_INVOKABLE QtCamViewfinderRendererMeeGo(QtCamConfig *config, QObject *parent = 0);
39
40   ~QtCamViewfinderRendererMeeGo();
41
42   virtual void paint(QPainter *painter);
43   virtual void resize(const QSizeF& size);
44   virtual void reset();
45   virtual GstElement *sinkElement();
46
47   QRectF renderArea();
48   QSizeF videoResolution();
49
50 private slots:
51   void setVideoSize(const QSizeF& size);
52
53 private:
54   static void frame_ready(GstElement *sink, int frame, QtCamViewfinderRendererMeeGo *r);
55   static void sink_notify(QtCamViewfinderRendererMeeGo *q, GObject *object, gboolean is_last_ref);
56   static void sink_caps_changed(GObject *obj, GParamSpec *pspec, QtCamViewfinderRendererMeeGo *q);
57
58   void calculateProjectionMatrix(const QRectF& rect);
59   void createProgram();
60   void paintFrame(QPainter *painter, int frame);
61   void calculateCoords();
62
63   QtCamConfig *m_conf;
64   GstElement *m_sink;
65   QMutex m_frameMutex;
66   int m_frame;
67   unsigned long m_id;
68   unsigned long m_notify;
69   bool m_needsInit;
70   QGLShaderProgram *m_program;
71   QMatrix4x4 m_projectionMatrix;
72   GLfloat m_vertexCoords[8];
73   GLfloat m_texCoords[8];
74   QSizeF m_size;
75   QSizeF m_videoSize;
76   QRectF m_renderArea;
77 };
78
79 #endif /* QT_CAM_VIEWFINDER_RENDERER_MEEGO_H */