
| Current Path : /usr/share/mscore3-3.2/plugins/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/share/mscore3-3.2/plugins/panel.qml |
import QtQuick 2.0
import MuseScore 3.0
MuseScore {
menuPath: "Plugins.panel"
version: "3.0"
description: "This demo plugin creates a GUI panel."
requiresScore: false
pluginType: "dock"
dockArea: "left"
width: 150
height: 75
onRun: console.log("hello panel");
Rectangle {
color: "grey"
anchors.fill: parent
Text {
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
text: "Hello Panel"
}
MouseArea {
anchors.fill: parent
onClicked: Qt.quit()
}
}
}