diff options
author | Weblate <noreply@weblate.org> | 2017-12-27 22:24:48 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2017-12-27 22:24:48 +0000 |
commit | 107851adab5f573e331150847b48f499edbcfbb9 (patch) | |
tree | 28aac1799650b0c51530130817e63e4c6381127a /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml | |
parent | Translated using Weblate (Danish) (diff) | |
parent | Shifted from a custom QWidget to a subclass of QGraphicalView and connected i... (diff) | |
download | lumina-107851adab5f573e331150847b48f499edbcfbb9.tar.gz lumina-107851adab5f573e331150847b48f499edbcfbb9.tar.bz2 lumina-107851adab5f573e331150847b48f499edbcfbb9.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml new file mode 100644 index 00000000..3b83653a --- /dev/null +++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/Screen.qml @@ -0,0 +1,26 @@ +//=========================================== +// Lumina-desktop source code +// Copyright (c) 2017, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +import QtQuick 2.2 +import QtQuick.Window 2.2 +import QtQuick.Controls 1 + +import Lumina.Backend.ScreenObject 2.0 + +AnimatedImage { + //C++ backend object + property string screen_id + property ScreenObject object + + //Normal geometries/placements + asynchronous: true + clip: true + source: object.background + x: object.x + y: object.y + width: object.width + height: object.height + } |