summaryrefslogtreecommitdiffstats
path: root/src/multimediaquick/qtmultimediaquicktypes_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimediaquick/qtmultimediaquicktypes_p.h')
-rw-r--r--src/multimediaquick/qtmultimediaquicktypes_p.h201
1 files changed, 201 insertions, 0 deletions
diff --git a/src/multimediaquick/qtmultimediaquicktypes_p.h b/src/multimediaquick/qtmultimediaquicktypes_p.h
new file mode 100644
index 000000000..80133c203
--- /dev/null
+++ b/src/multimediaquick/qtmultimediaquicktypes_p.h
@@ -0,0 +1,201 @@
+// Copyright (C) 2022 The Qt Company
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QTMULTIMEDIAQUICKTYPES_H
+#define QTMULTIMEDIAQUICKTYPES_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtQml/qqml.h>
+#include <QtMultimedia/QtMultimedia>
+#include <private/qtmultimediaquickglobal_p.h>
+
+QT_BEGIN_NAMESPACE
+
+struct QMediaCaptureSessionForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QMediaCaptureSession)
+ QML_NAMED_ELEMENT(CaptureSession) // ### MediaCaptureSession?
+};
+
+struct QCameraForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QCamera)
+ QML_NAMED_ELEMENT(Camera)
+};
+
+struct QImageCaptureForeign
+{
+ Q_GADGET
+ QML_ANONYMOUS
+ QML_FOREIGN(QImageCapture)
+};
+
+struct QScreenCaptureForeign
+{
+ Q_GADGET
+ QML_ANONYMOUS
+ QML_FOREIGN(QScreenCapture)
+};
+
+struct QScreenForeign
+{
+ Q_GADGET
+ QML_ANONYMOUS
+ QML_FOREIGN(QScreen)
+};
+
+struct QMediaRecorderForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QMediaRecorder)
+ QML_NAMED_ELEMENT(MediaRecorder)
+};
+
+struct QMediaMetaDataForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QMediaMetaData)
+ QML_NAMED_ELEMENT(mediaMetaData)
+};
+
+// To prevent the same type from being exported twice into qmltypes
+// (for value type and for the enums)
+struct QMediaMetaDataDerived : public QMediaMetaData
+{
+ Q_GADGET
+};
+
+namespace QMediaMetaDataNamespaceForeign
+{
+ Q_NAMESPACE
+ QML_FOREIGN_NAMESPACE(QMediaMetaDataDerived)
+ QML_NAMED_ELEMENT(MediaMetaData)
+};
+
+struct QMediaDevicesForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QMediaDevices)
+ QML_NAMED_ELEMENT(MediaDevices)
+};
+
+struct QAudioInputForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QAudioInput)
+ QML_NAMED_ELEMENT(AudioInput)
+};
+
+struct QAudioOutputForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QAudioOutput)
+ QML_NAMED_ELEMENT(AudioOutput)
+};
+
+struct QAudioDeviceForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QAudioDevice)
+ QML_NAMED_ELEMENT(audioDevice)
+};
+
+// To prevent the same type from being exported twice into qmltypes
+// (for value type and for the enums)
+struct QAudioDeviceDerived : public QAudioDevice
+{
+ Q_GADGET
+};
+
+namespace QAudioDeviceNamespaceForeign
+{
+ Q_NAMESPACE
+ QML_FOREIGN_NAMESPACE(QAudioDeviceDerived)
+ QML_NAMED_ELEMENT(AudioDevice)
+};
+
+struct QCameraDeviceForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QCameraDevice)
+ QML_NAMED_ELEMENT(cameraDevice)
+};
+
+// To prevent the same type from being exported twice into qmltypes
+// (for value type and for the enums)
+struct QCameraDeviceDerived : public QCameraDevice
+{
+ Q_GADGET
+};
+
+namespace QCameraDeviceNamespaceForeign
+{
+ Q_NAMESPACE
+ QML_FOREIGN_NAMESPACE(QCameraDeviceDerived)
+ QML_NAMED_ELEMENT(CameraDevice)
+};
+
+struct QMediaFormatForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QMediaFormat)
+ QML_NAMED_ELEMENT(mediaFormat)
+};
+
+// To prevent the same type from being exported twice into qmltypes
+// (for value type and for the enums)
+struct QMediaFormatDerived : public QMediaFormat
+{
+ Q_GADGET
+};
+
+namespace QMediaFormatNamespaceForeign
+{
+ Q_NAMESPACE
+ QML_FOREIGN_NAMESPACE(QMediaFormatDerived)
+ QML_NAMED_ELEMENT(MediaFormat)
+};
+
+struct QCameraFormatForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QCameraFormat)
+ QML_NAMED_ELEMENT(cameraFormat)
+};
+
+struct QVideoSinkForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QVideoSink)
+ QML_NAMED_ELEMENT(VideoSink)
+};
+
+struct QCapturableWindowForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QCapturableWindow)
+ QML_NAMED_ELEMENT(capturableWindow)
+};
+
+struct QWindowCaptureForeign
+{
+ Q_GADGET
+ QML_FOREIGN(QWindowCapture)
+ QML_NAMED_ELEMENT(WindowCapture)
+};
+
+QT_END_NAMESPACE
+
+#endif