
| 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/view.qml |
import QtQuick 2.0
import MuseScore 3.0
MuseScore {
version: "3.0"
description: "Demo plugin to demonstrate the use of a ScoreView"
menuPath: "Plugins.ScoreView"
pluginType: "dialog"
width: 400
height: 400
Component.onCompleted: {
if (typeof curScore === 'undefined')
Qt.quit();
scoreview.setScore(curScore);
}
ScoreView {
id: scoreview
anchors.fill: parent
color: "white"
MouseArea {
anchors.fill: parent
onClicked: Qt.quit()
}
}
}