Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qohoscamera_p.h
Go to the documentation of this file.
1// Copyright (C) 2026 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QOHOSCAMERA_P_H
5#define QOHOSCAMERA_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <private/qplatformcamera_p.h>
19
20#include <memory>
21
22QT_BEGIN_NAMESPACE
23
24class QOhosCameraSession;
26
28{
30public:
31 explicit QOhosCamera(QCamera *camera);
33
34 bool isActive() const override;
35 void setActive(bool active) override;
36 void setCamera(const QCameraDevice &camera) override;
37 bool setCameraFormat(const QCameraFormat &format) override;
38 void setCaptureSession(QPlatformMediaCaptureSession *session) override;
39
40 QOhosCameraSession *session() const { return m_session.get(); }
41
42private:
43 QOhosMediaCaptureSession *m_captureSession{ nullptr };
44 std::unique_ptr<QOhosCameraSession> m_session;
45};
46
47QT_END_NAMESPACE
48
49#endif // QOHOSCAMERA_P_H
The QCamera class provides interface for system camera devices.
Definition qcamera.h:25
bool setCameraFormat(const QCameraFormat &format) override
void setCaptureSession(QPlatformMediaCaptureSession *session) override
void setCamera(const QCameraDevice &camera) override
void setActive(bool active) override
bool isActive() const override
~QOhosCamera() override
QOhosCameraSession * session() const
Combined button and popup list for selecting options.