[ChangLog][multimedia][winrt] The winrt backend now supports camera focus and focus lock for Windows Phone. Task-Id: QTBUG-46120 Change-Id: Idb222798284d887a6e90a4986c69274e0ef765f5 Reviewed-by: Andrew Knight <andrew.knight@intopalo.com>
110 lines
3.8 KiB
C++
110 lines
3.8 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL3$
|
|
** 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 The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 3 requirements
|
|
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 2.0 or later 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 2.0 requirements will be
|
|
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qwinrtcameraservice.h"
|
|
#include "qwinrtcameracontrol.h"
|
|
#include "qwinrtcamerainfocontrol.h"
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
#include <QtCore/qfunctions_winrt.h>
|
|
#include <QtCore/QPointer>
|
|
#include <QtMultimedia/QCameraImageCaptureControl>
|
|
#include <QtMultimedia/QVideoRendererControl>
|
|
#include <QtMultimedia/QVideoDeviceSelectorControl>
|
|
#include <QtMultimedia/QImageEncoderControl>
|
|
#include <QtMultimedia/QCameraFocusControl>
|
|
#include <QtMultimedia/QCameraLocksControl>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QWinRTCameraServicePrivate
|
|
{
|
|
public:
|
|
QPointer<QWinRTCameraControl> cameraControl;
|
|
QPointer<QWinRTCameraInfoControl> cameraInfoControl;
|
|
};
|
|
|
|
QWinRTCameraService::QWinRTCameraService(QObject *parent)
|
|
: QMediaService(parent), d_ptr(new QWinRTCameraServicePrivate)
|
|
{
|
|
}
|
|
|
|
QMediaControl *QWinRTCameraService::requestControl(const char *name)
|
|
{
|
|
Q_D(QWinRTCameraService);
|
|
|
|
if (qstrcmp(name, QCameraControl_iid) == 0) {
|
|
if (!d->cameraControl)
|
|
d->cameraControl = new QWinRTCameraControl(this);
|
|
return d->cameraControl;
|
|
}
|
|
if (qstrcmp(name, QCameraInfoControl_iid) == 0) {
|
|
if (!d->cameraInfoControl)
|
|
d->cameraInfoControl = new QWinRTCameraInfoControl(this);
|
|
return d->cameraInfoControl;
|
|
}
|
|
|
|
if (!d->cameraControl)
|
|
return nullptr;
|
|
|
|
if (qstrcmp(name, QVideoRendererControl_iid) == 0)
|
|
return d->cameraControl->videoRenderer();
|
|
|
|
if (qstrcmp(name, QVideoDeviceSelectorControl_iid) == 0)
|
|
return d->cameraControl->videoDeviceSelector();
|
|
|
|
if (qstrcmp(name, QCameraImageCaptureControl_iid) == 0)
|
|
return d->cameraControl->imageCaptureControl();
|
|
|
|
if (qstrcmp(name, QImageEncoderControl_iid) == 0)
|
|
return d->cameraControl->imageEncoderControl();
|
|
|
|
if (qstrcmp(name, QCameraFocusControl_iid) == 0)
|
|
return d->cameraControl->cameraFocusControl();
|
|
|
|
if (qstrcmp(name, QCameraLocksControl_iid) == 0)
|
|
return d->cameraControl->cameraLocksControl();
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void QWinRTCameraService::releaseControl(QMediaControl *control)
|
|
{
|
|
Q_UNUSED(control);
|
|
}
|
|
|
|
QT_END_NAMESPACE
|