Add test for ContextMenu

This enables and disabled menuitems with a timer, so we can see whether
dynamically updating these properties are propagated to the QMenu in the
proxy.

CCBUG:336281
This commit is contained in:
Sebastian Kügler 2014-06-17 03:12:39 +02:00
parent 5b38b9f850
commit bcde055673

View File

@ -0,0 +1,102 @@
/*
* Copyright 2014 Sebastian Kügler <sebas@kde.org>
*
* 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) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 2.010-1301, USA.
*/
import QtQuick 2.1
// import QtQuick.Layouts 1.1
//
// import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
Item {
id: root
width: 300
height: 400
PlasmaComponents.ContextMenu {
id: contextMenu
PlasmaComponents.MenuItem {
id: actionsSeparator
separator: true
}
PlasmaComponents.MenuItem {
id: enableDisable
text: enabled ? "It's on!" : "Shut Down"
icon: "view-sort-ascending"
onClicked: {
print("Clicked " + text);
}
}
PlasmaComponents.MenuItem {
id: sortFavoritesDescending
text: "Just a random menu item"
icon: "view-sort-descending"
onClicked: {
print("Clicked " + text);
}
}
PlasmaComponents.MenuItem {
id: blinker
text: "Blinker: " + visible
icon: "device-notifier"
onVisibleChanged: {
print(" vis: " + visible);
}
Timer {
interval: 2000
repeat: true
running: true
onTriggered: {
blinker.visible = !blinker.visible;
enableDisable.enabled = !enableDisable.enabled;
}
}
onClicked: {
print("Clicked " + text);
}
}
}
Rectangle {
anchors.fill: parent
color: "orange"
MouseArea {
anchors.fill: parent
onClicked: {
contextMenu.open(mouse.x, mouse.y);
}
}
}
Component.onCompleted: contextMenu.open();
}