mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
62 lines
994 B
QML
62 lines
994 B
QML
|
/* vim:set foldmethod=marker:
|
||
|
|
||
|
SPDX-FileCopyrightText: 2014 Ivan Cukic <ivan.cukic(at)kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
import QtQuick 2.2
|
||
|
import org.kde.kirigami as Kirigami
|
||
|
|
||
|
Image {
|
||
|
id: main
|
||
|
|
||
|
width: 480
|
||
|
height: 425
|
||
|
|
||
|
source: "images/window2.png"
|
||
|
anchors.centerIn: parent
|
||
|
|
||
|
Item {
|
||
|
id: title
|
||
|
|
||
|
|
||
|
width: titleText.width + 32
|
||
|
height: titleText.height + 32
|
||
|
|
||
|
Rectangle {
|
||
|
anchors.fill: parent
|
||
|
color: "black"
|
||
|
radius: Kirigami.Units.cornerRadius
|
||
|
opacity: .7
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: titleText
|
||
|
color: "white"
|
||
|
text: "Firefox"
|
||
|
font.pointSize: 24
|
||
|
|
||
|
anchors.centerIn: parent
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
Drag.active: mouseArea.drag.active
|
||
|
Drag.hotSpot.x: 32
|
||
|
Drag.hotSpot.y: 32
|
||
|
|
||
|
MouseArea {
|
||
|
id: mouseArea
|
||
|
anchors.fill: parent
|
||
|
|
||
|
drag {
|
||
|
target: title
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|