plasma-framework/tests/testborders.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
2.3 KiB
QML
Raw Normal View History

2014-07-16 17:02:01 +02:00
/*
SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
2014-07-16 17:02:01 +02:00
import QtQuick 2.0
import QtQuick.Layouts 1.1
import QtQuick.Controls 1.1
2014-07-16 17:02:01 +02:00
import org.kde.plasma.core 2.0 as PlasmaCore
Item
{
width: 500
height: 500
PlasmaCore.FrameSvgItem {
id: theItem
imagePath: "widgets/background"
anchors {
fill: parent
margins: 10
}
Button {
2014-07-16 17:02:01 +02:00
text: "left"
checkable: true
checked: true
anchors {
horizontalCenterOffset: -50
centerIn: parent
}
onClicked: {
if (checked)
theItem.enabledBorders |= PlasmaCore.FrameSvg.LeftBorder;
else
theItem.enabledBorders &=~PlasmaCore.FrameSvg.LeftBorder;
}
}
Button {
2014-07-16 17:02:01 +02:00
text: "right"
checkable: true
checked: true
anchors {
horizontalCenterOffset: 50
centerIn: parent
}
onClicked: {
if (checked)
theItem.enabledBorders |= PlasmaCore.FrameSvg.RightBorder;
else
theItem.enabledBorders &=~PlasmaCore.FrameSvg.RightBorder;
}
}
Button {
2014-07-16 17:02:01 +02:00
text: "top"
checkable: true
checked: true
anchors {
verticalCenterOffset: -50
centerIn: parent
}
onClicked: {
if (checked)
theItem.enabledBorders |= PlasmaCore.FrameSvg.TopBorder;
else
theItem.enabledBorders &=~PlasmaCore.FrameSvg.TopBorder;
}
}
Button {
2014-07-16 17:02:01 +02:00
text: "bottom"
checkable: true
checked: true
anchors {
verticalCenterOffset: 50
centerIn: parent
}
onClicked: {
if (checked)
theItem.enabledBorders |= PlasmaCore.FrameSvg.BottomBorder;
else
theItem.enabledBorders &=~PlasmaCore.FrameSvg.BottomBorder;
}
}
}
}