
| 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/scorelist.qml |
import QtQuick 2.0
import MuseScore 3.0
MuseScore {
menuPath: "Plugins.scorelist"
version: "3.0"
description: "This test plugin iterates through the score list."
pluginType: "dialog"
width: 150
height: 75
Component.onCompleted: {
console.log("hello scorelist");
for (var i = 0; i < scores.length; i++) {
console.log(scores[i].name);
scoreList.text = scoreList.text + scores[i].name + '\n';
}
}
Rectangle {
color: "grey"
anchors.fill: parent
Text {
id: scoreList
anchors.fill: parent
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
text: ""
}
MouseArea {
anchors.fill: parent
onClicked: Qt.quit()
}
}
}