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
qohosimagecapture_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 QOHOSIMAGECAPTURE_P_H
5#define QOHOSIMAGECAPTURE_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 <QtCore/qpointer.h>
19
20#include <private/qplatformimagecapture_p.h>
21
22QT_BEGIN_NAMESPACE
23
24class QOhosCameraSession;
26
28{
30public:
32
33 bool isReadyForCapture() const override;
34 int capture(const QString &fileName) override;
36
37 QImageEncoderSettings imageSettings() const override;
38 void setImageSettings(const QImageEncoderSettings &settings) override;
39
40 void setCaptureSession(QPlatformMediaCaptureSession *session);
41
42private:
43 void connectToSession();
44 void disconnectFromSession();
45 void notifyReadyForCaptureChanged(bool ready);
46 void onSessionImageCaptured(int id, const QImage &preview);
47
48 QPointer<QOhosMediaCaptureSession> m_service;
49 QPointer<QOhosCameraSession> m_session;
50 QImageEncoderSettings m_pendingSettings;
51 bool m_lastReady{ false };
52};
53
54QT_END_NAMESPACE
55
56#endif // QOHOSIMAGECAPTURE_P_H
\inmodule QtMultimedia
QObject * parent
Definition qobject.h:74
void imageExposed(int id)
void readyForCaptureChanged(bool ready)
int capture(const QString &fileName) override
bool isReadyForCapture() const override
void setCaptureSession(QPlatformMediaCaptureSession *session)
void setImageSettings(const QImageEncoderSettings &settings) override
QImageEncoderSettings imageSettings() const override
int captureToBuffer() override
Combined button and popup list for selecting options.