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 | #include "qquickscreencapture_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | QQuickScreenCatpure::QQuickScreenCatpure(QObject *parent) : QScreenCapture(parent) |
9 | { |
10 | connect(sender: this, signal: &QScreenCapture::screenChanged, context: this, slot: [this](QScreen *screen) { |
11 | emit QQuickScreenCatpure::screenChanged(new QQuickScreenInfo(this, screen)); |
12 | }); |
13 | } |
14 | |
15 | void QQuickScreenCatpure::qmlSetScreen(const QQuickScreenInfo *info) |
16 | { |
17 | setScreen(info ? info->wrappedScreen() : nullptr); |
18 | } |
19 | |
20 | QQuickScreenInfo *QQuickScreenCatpure::qmlScreen() |
21 | { |
22 | return new QQuickScreenInfo(this, screen()); |
23 | } |
24 | |
25 | QT_END_NAMESPACE |
26 | |
27 | #include "moc_qquickscreencapture_p.cpp" |
28 |