mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-06-12 17:27:43 +00:00
22 lines
544 B
QML
22 lines
544 B
QML
|
|
// SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org>
|
||
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
import org.kde.pipewire as PipeWire
|
||
|
|
import org.kde.taskmanager as TaskManager
|
||
|
|
|
||
|
|
PipeWire.PipeWireSourceItem {
|
||
|
|
id: pipeWireSourceItem
|
||
|
|
|
||
|
|
property string windowUuid: ""
|
||
|
|
readonly property alias hasThumbnail: pipeWireSourceItem.ready
|
||
|
|
|
||
|
|
anchors.fill: parent
|
||
|
|
nodeId: waylandItem.nodeId
|
||
|
|
|
||
|
|
TaskManager.ScreencastingRequest {
|
||
|
|
id: waylandItem
|
||
|
|
uuid: pipeWireSourceItem.windowUuid
|
||
|
|
}
|
||
|
|
}
|