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
qplatformsurfacecapture_p.h
Go to the documentation of this file.
1// Copyright (C) 2022 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 QPLATFORMSURFACECAPTURE_H
5#define QPLATFORMSURFACECAPTURE_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 <QtMultimedia/private/qerrorinfo_p.h>
19#include <QtMultimedia/private/qplatformvideosource_p.h>
20#include <QtMultimedia/qcapturablewindow.h>
21#include <QtGui/qscreen.h>
22#include <QtCore/qpointer.h>
23
24#include <variant>
25
26QT_BEGIN_NAMESPACE
27
28class QVideoFrame;
29
30class Q_MULTIMEDIA_EXPORT QPlatformSurfaceCapture : public QPlatformVideoSource
31{
32 Q_OBJECT
33
34public:
35 enum class Error {
36 NoError = 0,
37 InternalError = 1,
38 CapturingNotSupported = 2,
39 CaptureFailed = 4,
40 NotFound = 5,
41 };
42
43 using ScreenSource = QPointer<QScreen>;
44 using WindowSource = QCapturableWindow;
45
46 using Source = std::variant<ScreenSource, WindowSource>;
47
48 explicit QPlatformSurfaceCapture(Source initialSource);
49
50 void setActive(bool active) override;
51 bool isActive() const override;
52
53 void setSource(Source source);
54
55 template<typename Type>
56 Type source() const {
57 Q_ASSERT(std::holds_alternative<Type>(m_source));
58 return *std::get_if<Type>(&m_source);
59 }
60
61 Source source() const { return m_source; }
62
63 Error error() const;
64 QString errorString() const final;
65
66 void setFrameRate(std::optional<qreal>);
67 [[nodiscard]] std::optional<qreal> frameRate() const;
68
69 void setIgnoreCursor(bool);
70 // Applied on next stream start.
71 [[nodiscard]] bool ignoreCursor() const;
72
73 void setIgnoreDropShadow(bool);
74 // Applied on next stream start.
75 [[nodiscard]] bool ignoreDropShadow() const;
76
77protected:
78 virtual bool setActiveInternal(bool) = 0;
79
80 bool checkScreenWithError(ScreenSource &screen);
81
82public Q_SLOTS:
83 void updateError(Error error, const QString &errorString);
84
85Q_SIGNALS:
86 void sourceChanged(WindowSource);
87 void sourceChanged(ScreenSource);
88 void errorOccurred(Error error, QString errorString);
89 void frameRateChanged(std::optional<qreal>);
90
91private:
92 std::optional<qreal> m_frameRate;
93 QErrorInfo<Error> m_error;
94 Source m_source;
95 bool m_active = false;
96
97 // While not part of public API, these settings tend to impact
98 // integration tests.
99 bool m_ignoreCursor = false;
100 bool m_ignoreDropShadow = false;
101};
102
103QT_END_NAMESPACE
104
105#endif // QPLATFORMSURFACECAPTURE_H
Combined button and popup list for selecting options.