123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- #ifndef QNATIVECAMERA_H
- #define QNATIVECAMERA_H
- #include <QDeclarativeItem>
- #include <QVideoFrame>
- #include <QCamera>
- #include <QSize>
- #include <QCameraImageCapture>
- #include <QMediaRecorder>
- #include "qdll_global.h"
- class VideoSurface;
- // Observer design pattern to provide the view finder frame for the CustomCamera
- // object.
- class QDLLSHARED_EXPORT FrameObserver
- {
- public:
- virtual bool updateFrame(const QVideoFrame &frame) = 0;
- };
- class QDLLSHARED_EXPORT QNativeCamera : public QDeclarativeItem, FrameObserver
- //class QNativeCamera : public QDeclarativeItem, FrameObserver
- {
- Q_OBJECT
- Q_ENUMS(State)
- // State properties
- Q_PROPERTY(State cameraState READ cameraState NOTIFY cameraStateChanged)
- // Devices properties
- Q_PROPERTY(QStringList availableDevices READ availableDevices)
- Q_PROPERTY(QString currentDevice READ currentDevice NOTIFY currentDeviceChanged)
- Q_PROPERTY(bool frontCamera READ frontCamera NOTIFY frontCameraChanged)
- Q_PROPERTY(QSize resolution READ resolution WRITE setResolution NOTIFY resolutionChanged)
- Q_PROPERTY(qreal exposureCompensation READ exposureCompensation WRITE setExposureCompensation NOTIFY exposureCompensationChanged)
- public:
- enum State {
- ActiveState = QCamera::ActiveState,
- LoadedState = QCamera::LoadedState,
- UnloadedState = QCamera::UnloadedState
- };
- explicit QNativeCamera(QDeclarativeItem *parent = 0);
- ~QNativeCamera();
- QStringList availableDevices() const;
- virtual void paint(QPainter *painter,
- const QStyleOptionGraphicsItem *option,
- QWidget *widget);
- virtual bool updateFrame(const QVideoFrame &frame);
- QSize resolution();
- void setResolution(QSize& value);
- qreal exposureCompensation();
- void setExposureCompensation(qreal);
- protected:
- void destroyResources();
- State cameraState() const;
- QString currentDevice() const;
- bool frontCamera() const;
- signals:
- void resolutionChanged(QSize resolution);
- void digitalZoomChanged();
- void maximumDigitalZoomChanged();
- void exposureCompensationChanged();
- void exposureModeChanged();
- void supportedExposureModesChanged();
- void flashModeChanged();
- void supportedFlashModesChanged();
- void locked();
- void lockFailed();
- void isoValueChanged();
- void supportedIsoValuesChanged();
- void imageSaved(const QString &fileName);
- void cameraStateChanged();
- void whiteBalanceModeChanged();
- void supportedWhiteBalanceModesChanged();
- //void sharpeningLevelChanged();
- //void contrastChanged();
- void currentDeviceChanged();
- void frontCameraChanged();
- //void imageAnalyzerChanged();
- public slots:
- void start(const QString &device);
- void stop();
- void cameraStateChanged(QCamera::State state);
- void handleImageSaved(int id, const QString &fileName);
- virtual void captureImage();
- virtual void imageAvailable(int,QVideoFrame);
- virtual void imageCaptured ( int id, const QImage & preview );
- virtual void imageExposed(int);
- void emitImageSavedSignal();
- protected:
- qreal m_exposureCompensation;
- protected:
- QCamera *m_camera; // Owned
- QString m_currentDevice;
- bool m_frontCamera;
- // Still image capturing
- QCameraImageCapture *m_cameraImageCapture; // Owned
- // Video capturing
- QMediaRecorder *m_mediaRecorder; // Owned
- // For showing view finder image
- VideoSurface *m_videoSurface; // Owned
- // For storing the latest frame
- unsigned int m_processedFrameCounter;
- unsigned int m_incomingFrameCounter;
- QImage m_imageFrame;
- // File to be opened in the gallery.
- QString m_galleryImage;
- QSize m_resolution;
- };
- #endif // QNATIVECAMERA_H
|