Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Verison for MuseScore4 #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions harmonica_tablature.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ MuseScore {
description: "Harmonica Tab plugin"
menuPath: "Plugins.Harmonica Tablature"
pluginType: "dialog"
title: "Harmonica Tab"

// ------ OPTIONS -------
property string sep : "\n" // change to "," if you want tabs horizontally
Expand Down Expand Up @@ -92,6 +93,7 @@ MuseScore {
ListElement { text: "Power Bender (Brendan Power), valved"; tuning: 11 }
ListElement { text: "Power Draw (Brendan Power), valved"; tuning: 12 }
ListElement { text: "Standard Chromatic"; tuning: 4 }
ListElement { text: "Chromatic 16Hole"; tuning: 13 }
}
width: 100
onCurrentIndexChanged: {
Expand Down Expand Up @@ -123,13 +125,13 @@ MuseScore {
text: "Ok"
onClicked: {
apply()
Qt.quit()
quit()
}
}
Button {
id: closeButton
text: "Close"
onClicked: { Qt.quit() }
onClicked: { quit() }
}

}
Expand Down Expand Up @@ -163,7 +165,7 @@ MuseScore {
"+4", "+4s", "-5", "-5s", "+6", "-6", "-6s", "+7", "+7s", "-7", "-7s", "-8",
"+8", "+8s", "-9", "-9s", "+10", "-10", "-10s", "+11", "+11s", "-11", "-11s", "-12",
"+12", "+12s", "-12", "-12s" ];

var zirkValved = ["+1", "-1b", "-1", "+2b", "+2", "-2", "+3b", "+3", "-3b", "-3", "+4", "-4b",
"-4", "+5b", "+5", "-5b", "-5", "+6", "-6b", "-6", "+7b", "+7", "-7", "+8b",
"+8", "-8b", "-8", "+9b", "+9", "-9", "10b", "+10", "-10b", "-10" ]; // Circular/Spiral tuned diatonic
Expand Down Expand Up @@ -205,6 +207,12 @@ MuseScore {
"-10" ];
powerDraw[-2] = "+1bb"; powerDraw[-1] = "+1b"; //Two notes below the key at blow 1
// Brendan Power's tuning, half valved

var chromatic16H = ["+1.", "+1.s", "-1.", "-1.s", "+2.", "-2.", "-2.s", "+3.", "+3.s", "-3.", "-3.s","-4.",
"+1", "+1s", "-1", "-1s", "+2", "-2", "-2s", "+3", "+3s", "-3", "-3s","-4",
"+4", "+4s", "-5", "-5s", "+6", "-6", "-6s", "+7", "+7s", "-7", "-7s", "-8",
"+8", "+8s", "-9", "-9s", "+10", "-10", "-10s", "+11", "+11s", "-11", "-11s", "-12",
"+12", "+12s", "-12", "-12s" ];

var tuning = richter
switch (harp.tuning) {
Expand All @@ -220,6 +228,7 @@ MuseScore {
case 10: tuning = paddyRichter; break;
case 11: tuning = powerBender; break;
case 12: tuning = powerDraw; break;
case 13: tuning = chromatic16H; break;
default: tuning = richter; break;
}

Expand All @@ -246,7 +255,7 @@ MuseScore {

function applyToSelection(func) {
if (typeof curScore === 'undefined')
Qt.quit();
quit();
var cursor = curScore.newCursor();
var startStaff;
var endStaff;
Expand Down Expand Up @@ -312,7 +321,7 @@ MuseScore {
} // end while segment
} // end for voice
} // end for staff
Qt.quit();
quit();
} // end applyToSelection()

function apply() {
Expand All @@ -323,6 +332,6 @@ MuseScore {

onRun: {
if (typeof curScore === 'undefined')
Qt.quit();
quit();
}
}