-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Fix #25299: Allow navigating to grace notes when inputting fingerings #26033
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5920,16 +5920,32 @@ void NotationInteraction::navigateToNearText(MoveDirection direction) | |||||||||||||||||||||||||||||||||
Note* origNote = toNote(op); | ||||||||||||||||||||||||||||||||||
Chord* ch = origNote->chord(); | ||||||||||||||||||||||||||||||||||
const std::vector<Note*>& notes = ch->notes(); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// first, try going to prev/next note in the current chord | ||||||||||||||||||||||||||||||||||
if (origNote != (back ? notes.back() : notes.front())) { | ||||||||||||||||||||||||||||||||||
// find prev/next note in same chord | ||||||||||||||||||||||||||||||||||
for (auto it = notes.cbegin(); it != notes.cend(); ++it) { | ||||||||||||||||||||||||||||||||||
if (*it == origNote) { | ||||||||||||||||||||||||||||||||||
el = back ? *(it + 1) : *(it - 1); | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||
// find prev/next chord in another voice | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// next, try going to next/prev grace note chord in the same group as the current | ||||||||||||||||||||||||||||||||||
std::vector<Chord*> chordList = ch->allGraceChordsOfMainChord(); | ||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
if (!el && ch != (back ? chordList.front() : chordList.back())) { | ||||||||||||||||||||||||||||||||||
for (auto it = chordList.begin(); it != chordList.end(); ++it) { | ||||||||||||||||||||||||||||||||||
if (*it == ch) { | ||||||||||||||||||||||||||||||||||
Chord* targetChord = back ? *(it - 1) : *(it + 1); | ||||||||||||||||||||||||||||||||||
el = back ? targetChord->notes().front() : targetChord->notes().back(); | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
Comment on lines
+5937
to
+5945
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can make this more concise with some
Suggested change
...
... |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// next, try going to prev/next chord in another voice | ||||||||||||||||||||||||||||||||||
if (!el) { | ||||||||||||||||||||||||||||||||||
Segment* seg = ch->segment(); | ||||||||||||||||||||||||||||||||||
if (!seg) { | ||||||||||||||||||||||||||||||||||
LOGD("navigateToNearText: no segment"); | ||||||||||||||||||||||||||||||||||
|
@@ -5941,31 +5957,37 @@ void NotationInteraction::navigateToNearText(MoveDirection direction) | |||||||||||||||||||||||||||||||||
for (int track = sTrack; back ? (track >= eTrack) : (track <= eTrack); track += inc) { | ||||||||||||||||||||||||||||||||||
EngravingItem* e = seg->element(track); | ||||||||||||||||||||||||||||||||||
if (e && e->isChord()) { | ||||||||||||||||||||||||||||||||||
el = back ? toChord(e)->notes().front() : toChord(e)->notes().back(); | ||||||||||||||||||||||||||||||||||
std::vector<Chord*> targetChordList = toChord(e)->allGraceChordsOfMainChord(); | ||||||||||||||||||||||||||||||||||
Chord* targetChord = back ? targetChordList.back() : targetChordList.front(); | ||||||||||||||||||||||||||||||||||
el = back ? targetChord->notes().front() : targetChord->notes().back(); | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// find chord in prev/next segments | ||||||||||||||||||||||||||||||||||
if (!el) { | ||||||||||||||||||||||||||||||||||
seg = back ? seg->prev1(SegmentType::ChordRest) : seg->next1(SegmentType::ChordRest); | ||||||||||||||||||||||||||||||||||
sTrack = back ? maxTrack : minTrack; | ||||||||||||||||||||||||||||||||||
eTrack = back ? minTrack : maxTrack; | ||||||||||||||||||||||||||||||||||
while (seg) { | ||||||||||||||||||||||||||||||||||
for (int track = sTrack; back ? (track >= eTrack) : (track <= eTrack); track += inc) { | ||||||||||||||||||||||||||||||||||
EngravingItem* e = seg->element(track); | ||||||||||||||||||||||||||||||||||
if (e && e->isChord()) { | ||||||||||||||||||||||||||||||||||
el = back ? toChord(e)->notes().front() : toChord(e)->notes().back(); | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
if (el) { | ||||||||||||||||||||||||||||||||||
// finally, try going to chord in prev/next segments | ||||||||||||||||||||||||||||||||||
if (!el) { | ||||||||||||||||||||||||||||||||||
Segment* seg = ch->segment(); | ||||||||||||||||||||||||||||||||||
seg = back ? seg->prev1(SegmentType::ChordRest) : seg->next1(SegmentType::ChordRest); | ||||||||||||||||||||||||||||||||||
int sTrack = back ? maxTrack : minTrack; | ||||||||||||||||||||||||||||||||||
int eTrack = back ? minTrack : maxTrack; | ||||||||||||||||||||||||||||||||||
int inc = back ? -1 : 1; | ||||||||||||||||||||||||||||||||||
while (seg) { | ||||||||||||||||||||||||||||||||||
for (int track = sTrack; back ? (track >= eTrack) : (track <= eTrack); track += inc) { | ||||||||||||||||||||||||||||||||||
EngravingItem* e = seg->element(track); | ||||||||||||||||||||||||||||||||||
if (e && e->isChord()) { | ||||||||||||||||||||||||||||||||||
std::vector<Chord*> targetChordList = toChord(e)->allGraceChordsOfMainChord(); | ||||||||||||||||||||||||||||||||||
Chord* targetChord = back ? targetChordList.back() : targetChordList.front(); | ||||||||||||||||||||||||||||||||||
el = back ? targetChord->notes().front() : targetChord->notes().back(); | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
seg = back ? seg->prev1(SegmentType::ChordRest) : seg->next1(SegmentType::ChordRest); | ||||||||||||||||||||||||||||||||||
if (el) { | ||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
seg = back ? seg->prev1(SegmentType::ChordRest) : seg->next1(SegmentType::ChordRest); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} else if (op->isSegment()) { | ||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.