Added renderArea property to Camera
[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
49 private slots:
50   void setVideoSize(const QSizeF& size);
51
52 private:
53   static void frame_ready(GstElement *sink, int frame, QtCamViewfinderRendererMeeGo *r);
54   static void sink_notify(QtCamViewfinderRendererMeeGo *q, GObject *object, gboolean is_last_ref);
55   static void sink_caps_changed(GObject *obj, GParamSpec *pspec, QtCamViewfinderRendererMeeGo *q);
56
57   void calculateProjectionMatrix(const QRectF& rect);
58   void createProgram();
59   void paintFrame(QPainter *painter, int frame);
60   void calculateCoords();
61
62   QtCamConfig *m_conf;
63   GstElement *m_sink;
64   QMutex m_frameMutex;
65   int m_frame;
66   unsigned long m_id;
67   unsigned long m_notify;
68   bool m_needsInit;
69   QGLShaderProgram *m_program;
70   QMatrix4x4 m_projectionMatrix;
71   GLfloat m_vertexCoords[8];
72   GLfloat m_texCoords[8];
73   QSizeF m_size;
74   QSizeF m_videoSize;
75   QRectF m_renderArea;
76 };
77
78 #endif /* QT_CAM_VIEWFINDER_RENDERER_MEEGO_H */