QCameraZoomControl Class

The QCameraZoomControl class supplies control for optical and digital camera zoom. More...

Header: #include <QCameraZoomControl>
qmake: QT += multimedia
Inherits: QMediaControl

Public Functions

virtual ~QCameraZoomControl()
virtual qreal currentDigitalZoom() const = 0
virtual qreal currentOpticalZoom() const = 0
virtual qreal maximumDigitalZoom() const = 0
virtual qreal maximumOpticalZoom() const = 0
virtual qreal requestedDigitalZoom() const = 0
virtual qreal requestedOpticalZoom() const = 0
virtual void zoomTo(qreal optical, qreal digital) = 0
  • 34 public functions inherited from QObject

Signals

void currentDigitalZoomChanged(qreal zoom)
void currentOpticalZoomChanged(qreal zoom)
void maximumDigitalZoomChanged(qreal zoom)
void maximumOpticalZoomChanged(qreal zoom)
void requestedDigitalZoomChanged(qreal zoom)
void requestedOpticalZoomChanged(qreal zoom)

Protected Functions

QCameraZoomControl(QObject *parent = nullptr)
  • 9 protected functions inherited from QObject

Macros

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 public variable inherited from QObject
  • 10 static public members inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QCameraZoomControl class supplies control for optical and digital camera zoom.

The interface name of QCameraZoomControl is org.qt-project.qt.camerazoomcontrol/5.0 as defined in QCameraZoomControl_iid.

See also QMediaService::requestControl() and QCamera.

Member Function Documentation

[protected] QCameraZoomControl::QCameraZoomControl(QObject *parent = nullptr)

Constructs a camera zoom control object with parent.

[virtual] QCameraZoomControl::~QCameraZoomControl()

Destruct the camera zoom control object.

[pure virtual] qreal QCameraZoomControl::currentDigitalZoom() const

Return the current digital zoom value.

[signal] void QCameraZoomControl::currentDigitalZoomChanged(qreal zoom)

Signal emitted when the current digital zoom value changed.

[pure virtual] qreal QCameraZoomControl::currentOpticalZoom() const

Return the current optical zoom value.

[signal] void QCameraZoomControl::currentOpticalZoomChanged(qreal zoom)

Signal emitted when the current optical zoom value changed.

[pure virtual] qreal QCameraZoomControl::maximumDigitalZoom() const

Returns the maximum digital zoom value, or 1.0 if digital zoom is not supported.

[signal] void QCameraZoomControl::maximumDigitalZoomChanged(qreal zoom)

Signal emitted when the maximum supported digital zoom value changed.

The maximum supported zoom value can depend on other camera settings, like capture mode or resolution.

[pure virtual] qreal QCameraZoomControl::maximumOpticalZoom() const

Returns the maximum optical zoom value, or 1.0 if optical zoom is not supported.

[signal] void QCameraZoomControl::maximumOpticalZoomChanged(qreal zoom)

Signal emitted when the maximum supported optical zoom value changed.

The maximum supported zoom value can depend on other camera settings, like focusing mode.

[pure virtual] qreal QCameraZoomControl::requestedDigitalZoom() const

Return the requested digital zoom value.

[signal] void QCameraZoomControl::requestedDigitalZoomChanged(qreal zoom)

Signal emitted when the requested digital zoom value changed.

[pure virtual] qreal QCameraZoomControl::requestedOpticalZoom() const

Return the requested optical zoom value.

[signal] void QCameraZoomControl::requestedOpticalZoomChanged(qreal zoom)

Signal emitted when the requested optical zoom value changed.

[pure virtual] void QCameraZoomControl::zoomTo(qreal optical, qreal digital)

Sets optical and digital zoom values.

Zooming can be asynchronous with value changes reported with currentDigitalZoomChanged() and currentOpticalZoomChanged() signals.

The backend should expect and correctly handle frequent zoomTo() calls during zoom animations or slider movements.

Macro Documentation

QCameraZoomControl_iid

org.qt-project.qt.camerazoomcontrol/5.0

Defines the interface name of the QCameraZoomControl class.

© 2018 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.