
| 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/run.qml |
//=============================================================================
// MuseScore
// Linux Music Score Editor
//
// Color notehead plugin
// Noteheads are colored according to pitch. User can change to color by
// modifying the colors array. First element is C, second C# etc...
//
// Copyright (C)2012 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
import QtQuick 2.0
import MuseScore 3.0
MuseScore {
menuPath: "Plugins.run"
version: "3.0"
description: "This demo plugin runs an external command."
requiresScore: false
QProcess {
id: proc
}
onRun: {
console.log("run ls");
//proc.start("/bin/ls"); // Linux, Mac(?)
proc.start("cmd.exe /c dir"); // Windows
var val = proc.waitForFinished(30000);
if (val)
console.log(proc.readAllStandardOutput());
Qt.quit()
}
}