Newer
Older
/** This file is part of Nootka (http://nootka.sf.net) *
* Copyright (C) 2017-2021 by Tomasz Bojczuk (seelook@gmail.com) *
* on the terms of GNU GPLv3 license (http://www.gnu.org/licenses) */
import QtQuick 2.12
import QtQuick.Controls 2.12
import Score 1.0
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
id: mainScore
property alias showNamesAct: mainObj.showNamesAct
property alias extraAccidsAct: mainObj.extraAccidsAct
property alias zoomInAct: mainObj.zoomInAct
property alias zoomOutAct: mainObj.zoomOutAct
property alias transposeAct: mainObj.transposeAct
property alias openXmlAct: mainObj.openXmlAct
property alias saveXmlAct: mainObj.saveXmlAct
property alias playAct: mainObj.playAct
property alias scoreActions: mainObj.scoreActions
property alias melodyActions: mainObj.melodyActions
property alias noteActions: mainObj.noteActions
property alias notesMenuAct: mainObj.notesMenuAct
property alias randMelodyAct: mainObj.randMelodyAct
property alias keyName: keyName
// private
property var scordature: null
property var notePrompt: null
function zoom(zoomIn) {
if (!zoomTimer.running) {
if (zoomIn)
zoomInAct.trigger();
else
zoomOutAct.trigger();
zoomTimer.running = true;
}
}
function updateScord() {
if (scordature)
scordature.destroy();
if (GLOB.tuning.scordature && GLOB.instrument.isGuitar && !GLOB.instrument.bassGuitar && !GLOB.instrument.ukulele) {
scordature = Qt.createComponent("qrc:/score/Scordature.qml").createObject(firstStaff);
firstStaff.scordSpace = scordature.realHeight;
} else {
firstStaff.scordSpace = 0;
}
}
scoreObj.meter: GLOB.rhythmsEnabled && !GLOB.singleNoteMode ? Tmeter.Meter_4_4 : Tmeter.NoMeter
focus: true
clef: GLOB.clefType
enableDoubleAccids: GLOB.enableDoubleAccids
scoreObj.showNoteNames: GLOB.namesOnScore
scoreObj.nameColor: GLOB.nameColor
scoreObj.nameStyle: GLOB.noteNameStyle
scoreObj.enableDoubleAccidentals: GLOB.enableDoubleAccids
scoreObj.enharmNotesEnabled: GLOB.showEnharmNotes
scoreObj.bgColor: activPal.base
scoreObj.enableTechnical: GLOB.instrument.bandoneon
onSingleNoteChanged: {
if (singleNote)
notePrompt = Qt.createComponent("qrc:/score/NotePrompt.qml").createObject(scoreObj.note(0));
else
notePrompt.destroy();
}
TmainScoreObject {
id: mainObj
onMelodyGenerate: nootkaWindow.showDialog(Nootka.MelodyGenerator)
mainScoreItem: mainScore
onMelodyNameDialog: Qt.createComponent("qrc:/score/MelodyNameDialog.qml").createObject(nootkaWindow)
onWantSelectGotIt: Qt.createComponent("qrc:/gotit/NoteSelected.qml").createObject(nootkaWindow.contentItem.parent, {
"remaindChecked": true
})
notesMenuAct.enabled: mainScore.meter !== Tmeter.NoMeter
}
Timer {
id: zoomTimer
interval: 500
}
Text {
text: mainObj.title
visible: !singleNote
y: NOO.factor() / 2
x: parent.width * 0.125
z: -1
color: activPal.dimText
width: parent.width * 0.75
horizontalAlignment: Text.AlignHCenter
font {
pixelSize: NOO.factor() * 2
bold: true
}
}
Text {
text: mainObj.composer
visible: !singleNote
y: NOO.factor() * 1.5
x: parent.width * 0.875
z: -1
color: activPal.dimText
width: parent.width * 0.125
horizontalAlignment: Text.AlignHCenter
font.bold: true
}
PinchArea {
z: -1
anchors.fill: parent
pinch.dragAxis: Pinch.XandYAxis
onPinchFinished: {
if (pinch.scale > 1.4)
zoom(true);
else if (pinch.scale < 0.7)
zoom(false);
}
// HACK: keeping MouseArea inside PinchArea makes it working
MouseArea {
anchors.fill: parent
//z: -1
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
if (wheel.modifiers & Qt.ControlModifier) {
if (wheel.angleDelta.y > 0)
zoom(true);
else if (wheel.angleDelta.y < 0)
zoom(false);
} else {
wheel.accepted = false;
}
}
// reset note selection when score is clicked
onClicked: currentNote = null
}
}
Text {
id: keyName
parent: firstStaff
visible: GLOB.showKeyName && enableKeySign
x: clef === Tclef.PianoStaffClefs ? 7.5 : 5.5
y: clef === Tclef.PianoStaffClefs ? 4.2 : 7
color: activPal.text
transformOrigin: Item.TopLeft
scale: 1 / 6
text: GLOB.showKeyName && enableKeySign ? mainObj.keyNameText : ""
font {
pixelSize: 12
}
mainObj.scoreObject = scoreObj;
singleNote = Qt.binding(function() {
return GLOB.singleNoteMode;
});
scoreObj.allowAdding = Qt.binding(function() {
return !GLOB.singleNoteMode;
});
enableKeySign = Qt.binding(function() {
return GLOB.keySignatureEnabled;
});
updateScord();
if (!GLOB.singleNoteMode)
scoreObj.editModeAct.trigger();
if (NOO.isAndroid() && GLOB.gotIt("howToScore", true))
Qt.createComponent("qrc:/gotit/FirstTouchScore.qml").createObject(mainScore);
}
function onClefTypeChanged() : void { score.clef = GLOB.clefType }
function onScordatureChanged() : void { updateScord() }
}
// note highlight
Rectangle {
id: noteHighlight
parent: currentNote
visible: currentNote != null && !singleNote
width: currentNote ? (currentNote.width - currentNote.alterWidth) * 1.5 : 0
height: currentNote ? Math.min(12, currentNote.notePosY + 6) : 0
x: currentNote ? -width * 0.25 : 0
y: currentNote ? Math.min(currentNote.height - height, Math.max(0, currentNote.notePosY - height / 2)) : 0
color: NOO.alpha(activPal.highlight, 75)
z: -1
radius: width / 3