42 lines
942 B
QML
42 lines
942 B
QML
import QtQuick 2.0
|
|
|
|
/**
|
|
* ScaleToise
|
|
*
|
|
* Display notes from scale, with current note centered.
|
|
*/
|
|
|
|
Toise {
|
|
id: scale
|
|
|
|
// note
|
|
property int note: 1
|
|
// octave
|
|
property int octave: 4
|
|
// en or fr
|
|
property int notes_style: 1
|
|
|
|
property variant notes_fr: [
|
|
"do", "do#", "ré", "mib", "mi", "fa", "fa#", "sol", "sol#", "la", "sib", "si"]
|
|
property variant notes_en: [
|
|
"C", "C#", "D", "Eb", "E", "F", "F#", "G", "G#", "A", "Bb", "B"]
|
|
property variant notes: [notes_en, notes_fr]
|
|
|
|
// case colors
|
|
property color colorAltered: "#40888888"
|
|
property color colorNatural: "transparent"
|
|
|
|
// Toise parameters
|
|
index: note + notes_en.length * octave
|
|
marks: notes[notes_style]
|
|
nb_marks_displayed: Math.min(nb_marks, width / theme.fontSizeLarge * 0.8)
|
|
|
|
mark_color: function(note) {
|
|
if (isAltered(note)) return colorAltered;
|
|
else return colorNatural;
|
|
}
|
|
|
|
function isAltered(i) {
|
|
return (i < 4 && (i & 1)) || (i > 5 && !(i & 1))
|
|
}
|
|
}
|