/usr/share/kwin/outline/plasma/outline.qml is in kwin-data 4:5.12.4-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | /*
* Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
* Copyright 2017 Kai Uwe Broulik <kde@privat.broulik.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.1
import QtQuick.Window 2.1
import org.kde.plasma.core 2.0 as PlasmaCore
Window {
id: window
readonly property int animationDuration: units.longDuration
property bool animationEnabled: false
flags: Qt.BypassWindowManagerHint | Qt.FramelessWindowHint
color: "transparent"
// outline is a context property
x: outline.unifiedGeometry.x
y: outline.unifiedGeometry.y
width: outline.unifiedGeometry.width
height: outline.unifiedGeometry.height
visible: outline.active
onVisibleChanged: {
if (visible) {
if (outline.visualParentGeometry.width > 0 && outline.visualParentGeometry.height > 0) {
window.animationEnabled = false
// move our frame to the visual parent geometry
svg.setGeometry(outline.visualParentGeometry)
window.animationEnabled = true
// and then animate it nicely to its destination
svg.setGeometry(outline.geometry)
} else {
// no visual parent? just move it to its destination right away
window.animationEnabled = false
svg.setGeometry(outline.geometry)
window.animationEnabled = true
}
}
}
Connections {
target: outline
// when unified geometry changes, this means our window position changed and any
// animation will potentially be offset and/or cut off, skip the animation in this case
onUnifiedGeometryChanged: {
if (window.visible) {
window.animationEnabled = false
svg.setGeometry(outline.geometry)
window.animationEnabled = true
}
}
}
PlasmaCore.FrameSvgItem {
id: svg
// takes into account the offset inside unified geometry
function setGeometry(geometry) {
x = geometry.x - outline.unifiedGeometry.x
y = geometry.y - outline.unifiedGeometry.y
width = geometry.width
height = geometry.height
}
imagePath: "widgets/translucentbackground"
x: 0
y: 0
width: 0
height: 0
enabledBorders: {
var maximizedArea = workspace.clientArea(workspace.MaximizeArea, Qt.point(outline.geometry.x, outline.geometry.y), workspace.currentDesktop);
var left = outline.geometry.x === maximizedArea.x;
var right = outline.geometry.x + outline.geometry.width === maximizedArea.x + maximizedArea.width;
var top = outline.geometry.y === maximizedArea.y;
var bottom = outline.geometry.y + outline.geometry.height === maximizedArea.y + maximizedArea.height;
var borders = PlasmaCore.FrameSvgItem.AllBorders;
if (left) {
borders = borders & ~PlasmaCore.FrameSvgItem.LeftBorder;
}
if (right) {
borders = borders & ~PlasmaCore.FrameSvgItem.RightBorder;
}
if (top) {
borders = borders & ~PlasmaCore.FrameSvgItem.TopBorder;
}
if (bottom) {
borders = borders & ~PlasmaCore.FrameSvgItem.BottomBorder;
}
if (left && right && bottom && top) {
borders = PlasmaCore.FrameSvgItem.AllBorders;
}
return borders;
}
Behavior on x {
NumberAnimation { duration: window.animationDuration; easing.type: Easing.InOutQuad; }
enabled: window.animationEnabled
}
Behavior on y {
NumberAnimation { duration: window.animationDuration; easing.type: Easing.InOutQuad; }
enabled: window.animationEnabled
}
Behavior on width {
NumberAnimation { duration: window.animationDuration; easing.type: Easing.InOutQuad; }
enabled: window.animationEnabled
}
Behavior on height {
NumberAnimation { duration: window.animationDuration; easing.type: Easing.InOutQuad; }
enabled: window.animationEnabled
}
}
}
|