/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef JCAMERA_H #define JCAMERA_H #include #include #include #include QT_BEGIN_NAMESPACE class QThread; class JCameraPrivate; class JCamera : public QObject { Q_OBJECT Q_ENUMS(CameraFacing) Q_ENUMS(ImageFormat) public: enum CameraFacing { CameraFacingBack = 0, CameraFacingFront = 1 }; enum ImageFormat { // same values as in android.graphics.ImageFormat Java class Unknown = 0, RGB565 = 4, NV16 = 16, NV21 = 17, YUY2 = 20, JPEG = 256, YV12 = 842094169 }; ~JCamera(); static JCamera *open(int cameraId); int cameraId() const; void lock(); void unlock(); void reconnect(); void release(); CameraFacing getFacing(); int getNativeOrientation(); QSize getPreferredPreviewSizeForVideo(); QList getSupportedPreviewSizes(); ImageFormat getPreviewFormat(); void setPreviewFormat(ImageFormat fmt); QSize previewSize() const; void setPreviewSize(const QSize &size); void setPreviewTexture(jobject surfaceTexture); bool isZoomSupported(); int getMaxZoom(); QList getZoomRatios(); int getZoom(); void setZoom(int value); QStringList getSupportedFlashModes(); QString getFlashMode(); void setFlashMode(const QString &value); QStringList getSupportedFocusModes(); QString getFocusMode(); void setFocusMode(const QString &value); int getMaxNumFocusAreas(); QList getFocusAreas(); void setFocusAreas(const QList &areas); void autoFocus(); void cancelAutoFocus(); bool isAutoExposureLockSupported(); bool getAutoExposureLock(); void setAutoExposureLock(bool toggle); bool isAutoWhiteBalanceLockSupported(); bool getAutoWhiteBalanceLock(); void setAutoWhiteBalanceLock(bool toggle); int getExposureCompensation(); void setExposureCompensation(int value); float getExposureCompensationStep(); int getMinExposureCompensation(); int getMaxExposureCompensation(); QStringList getSupportedSceneModes(); QString getSceneMode(); void setSceneMode(const QString &value); QStringList getSupportedWhiteBalance(); QString getWhiteBalance(); void setWhiteBalance(const QString &value); void setRotation(int rotation); int getRotation() const; QList getSupportedPictureSizes(); void setPictureSize(const QSize &size); void setJpegQuality(int quality); void startPreview(); void stopPreview(); void takePicture(); void fetchEachFrame(bool fetch); void fetchLastPreviewFrame(); QJNIObjectPrivate getCameraObject(); static bool initJNI(JNIEnv *env); Q_SIGNALS: void previewSizeChanged(); void previewStarted(); void previewStopped(); void autoFocusStarted(); void autoFocusComplete(bool success); void whiteBalanceChanged(); void pictureExposed(); void pictureCaptured(const QByteArray &data); void previewFetched(const QByteArray &preview); void frameFetched(const QByteArray &frame); private: JCamera(JCameraPrivate *d, QThread *worker); Q_DECLARE_PRIVATE(JCamera) JCameraPrivate *d_ptr; QScopedPointer m_worker; }; QT_END_NAMESPACE #endif // JCAMERA_H