MuseScore/src/notation/internal/notationinteraction.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

2237 lines
67 KiB
C++
Raw Normal View History

2020-06-16 10:33:18 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2020 MuseScore BVBA 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.
//=============================================================================
#include "notationinteraction.h"
#include "log.h"
#include <memory>
#include <QRectF>
2020-06-16 10:48:13 +02:00
#include <QPainter>
2020-12-05 16:59:48 +01:00
#include <QClipboard>
2020-06-16 10:33:18 +02:00
#include "ptrutils.h"
2020-06-16 10:33:18 +02:00
#include "libmscore/score.h"
#include "libmscore/page.h"
#include "libmscore/shadownote.h"
#include "libmscore/staff.h"
#include "libmscore/measure.h"
#include "libmscore/part.h"
#include "libmscore/drumset.h"
#include "libmscore/rest.h"
#include "libmscore/slur.h"
#include "libmscore/system.h"
#include "libmscore/chord.h"
#include "libmscore/elementgroup.h"
#include "libmscore/textframe.h"
#include "libmscore/stafflines.h"
#include "libmscore/icon.h"
2020-07-09 14:31:34 +02:00
#include "libmscore/undo.h"
#include "libmscore/navigate.h"
#include "libmscore/keysig.h"
2020-12-04 14:21:54 +01:00
#include "libmscore/instrchange.h"
2020-06-16 10:33:18 +02:00
2020-08-05 10:37:49 +02:00
#include "masternotation.h"
2020-06-16 10:33:18 +02:00
#include "scorecallbacks.h"
#include "notationnoteinput.h"
#include "notationselection.h"
2020-06-16 10:33:18 +02:00
2020-12-04 14:21:54 +01:00
#include "instrumentsconverter.h"
2020-08-27 13:20:03 +02:00
using namespace mu::notation;
2020-06-16 10:33:18 +02:00
2020-10-23 19:30:10 +02:00
NotationInteraction::NotationInteraction(Notation* notation, INotationUndoStackPtr undoStack)
: m_notation(notation), m_undoStack(undoStack)
2020-06-16 10:33:18 +02:00
{
m_noteInput = std::make_shared<NotationNoteInput>(notation, this, m_undoStack);
m_selection = std::make_shared<NotationSelection>(notation);
2020-06-16 10:33:18 +02:00
m_noteInput->stateChanged().onNotify(this, [this]() {
if (!m_noteInput->isNoteInputMode()) {
hideShadowNote();
}
});
m_dragData.ed.view = new ScoreCallbacks();
m_dropData.ed.view = new ScoreCallbacks();
2020-06-16 10:33:18 +02:00
}
NotationInteraction::~NotationInteraction()
{
delete m_shadowNote;
}
void NotationInteraction::init()
{
2020-12-15 14:56:47 +01:00
m_shadowNote = new Ms::ShadowNote(score());
m_shadowNote->setVisible(false);
}
2020-06-16 10:33:18 +02:00
Ms::Score* NotationInteraction::score() const
{
2020-08-05 12:20:48 +02:00
return m_notation->score();
2020-06-16 10:33:18 +02:00
}
void NotationInteraction::startEdit()
{
m_undoStack->prepareChanges();
}
void NotationInteraction::apply()
{
m_undoStack->commitChanges();
}
void NotationInteraction::notifyAboutDragChanged()
{
m_dragChanged.notify();
}
void NotationInteraction::notifyAboutDropChanged()
{
m_dropChanged.notify();
}
void NotationInteraction::notifyAboutNotationChanged()
{
m_notation->notifyAboutNotationChanged();
}
void NotationInteraction::notifyAboutTextEditingStarted()
{
m_textEditingStarted.notify();
}
void NotationInteraction::notifyAboutTextEditingChanged()
{
m_textEditingChanged.notify();
}
void NotationInteraction::notifyAboutSelectionChanged()
{
m_selectionChanged.notify();
}
2020-06-16 10:33:18 +02:00
void NotationInteraction::paint(QPainter* p)
{
m_shadowNote->draw(p);
2020-06-16 10:48:13 +02:00
drawAnchorLines(p);
drawTextEditMode(p);
2020-11-10 08:03:27 +01:00
drawSelectionRange(p);
2020-06-16 10:33:18 +02:00
}
INotationNoteInputPtr NotationInteraction::noteInput() const
2020-06-16 10:33:18 +02:00
{
return m_noteInput;
2020-06-16 10:33:18 +02:00
}
void NotationInteraction::showShadowNote(const QPointF& p)
{
//! NOTE This method coped from ScoreView::setShadowNote
2020-12-15 14:56:47 +01:00
const Ms::InputState& is = score()->inputState();
Ms::Position pos;
2020-06-16 10:33:18 +02:00
if (!score()->getPosition(&pos, p, is.voice())) {
m_shadowNote->setVisible(false);
return;
}
// in any empty measure, pos will be right next to barline
// so pad this by barNoteDistance
qreal mag = score()->staff(pos.staffIdx)->staffMag(Fraction(0,1));
qreal relX = pos.pos.x() - pos.segment->measure()->canvasPos().x();
2020-12-15 14:56:47 +01:00
pos.pos.rx() -= qMin(relX - score()->styleP(Ms::Sid::barNoteDistance) * mag, 0.0);
2020-06-16 10:33:18 +02:00
m_shadowNote->setVisible(true);
Staff* staff = score()->staff(pos.staffIdx);
m_shadowNote->setMag(staff->staffMag(Fraction(0,1)));
2020-12-15 14:56:47 +01:00
const Ms::Instrument* instr = staff->part()->instrument();
Ms::NoteHead::Group noteheadGroup = Ms::NoteHead::Group::HEAD_NORMAL;
2020-06-16 10:33:18 +02:00
int line = pos.line;
2020-12-15 14:56:47 +01:00
Ms::NoteHead::Type noteHead = is.duration().headType();
2020-06-16 10:33:18 +02:00
if (instr->useDrumset()) {
2020-12-15 14:56:47 +01:00
const Ms::Drumset* ds = instr->drumset();
2020-06-16 10:33:18 +02:00
int pitch = is.drumNote();
if (pitch >= 0 && ds->isValid(pitch)) {
line = ds->line(pitch);
noteheadGroup = ds->noteHead(pitch);
}
}
m_shadowNote->setLine(line);
int voice;
if (is.drumNote() != -1 && is.drumset() && is.drumset()->isValid(is.drumNote())) {
voice = is.drumset()->voice(is.drumNote());
} else {
voice = is.voice();
}
2020-12-15 14:56:47 +01:00
Ms::SymId symNotehead;
Ms::TDuration d(is.duration());
2020-06-16 10:33:18 +02:00
2020-12-01 15:19:42 +01:00
qreal segmentSkylineTopY = 0;
qreal segmentSkylineBottomY = 0;
2020-12-15 14:56:47 +01:00
Ms::Segment* shadowNoteActualSegment = pos.segment->prev1enabled();
2020-12-01 15:19:42 +01:00
if (shadowNoteActualSegment) {
segmentSkylineTopY = shadowNoteActualSegment->elementsTopOffsetFromSkyline(pos.staffIdx);
segmentSkylineBottomY = shadowNoteActualSegment->elementsBottomOffsetFromSkyline(pos.staffIdx);
}
2020-06-16 10:33:18 +02:00
if (is.rest()) {
int yo;
2020-12-15 14:56:47 +01:00
Ms::Rest rest(Ms::gscore, d.type());
2020-06-16 10:33:18 +02:00
rest.setTicks(d.fraction());
symNotehead = rest.getSymbol(is.duration().type(), 0, staff->lines(pos.segment->tick()), &yo);
2020-12-01 15:19:42 +01:00
m_shadowNote->setState(symNotehead, voice, d, true, segmentSkylineTopY, segmentSkylineBottomY);
2020-06-16 10:33:18 +02:00
} else {
2020-12-15 14:56:47 +01:00
if (Ms::NoteHead::Group::HEAD_CUSTOM == noteheadGroup) {
2020-06-16 10:33:18 +02:00
symNotehead = instr->drumset()->noteHeads(is.drumNote(), noteHead);
} else {
symNotehead = Note::noteHead(0, noteheadGroup, noteHead);
}
2020-12-01 15:19:42 +01:00
m_shadowNote->setState(symNotehead, voice, d, false, segmentSkylineTopY, segmentSkylineBottomY);
2020-06-16 10:33:18 +02:00
}
m_shadowNote->layout();
m_shadowNote->setPos(pos.pos);
}
void NotationInteraction::hideShadowNote()
{
m_shadowNote->setVisible(false);
}
void NotationInteraction::paintShadowNote(QPainter* p)
{
m_shadowNote->draw(p);
}
Element* NotationInteraction::hitElement(const QPointF& pos, float width) const
{
QList<Ms::Element*> ll = hitElements(pos, width);
if (ll.isEmpty()) {
return nullptr;
}
return ll.first();
}
int NotationInteraction::hitStaffIndex(const QPointF& pos) const
{
return hitMeasure(pos).staffIndex;
}
2020-06-16 10:48:13 +02:00
Ms::Page* NotationInteraction::point2page(const QPointF& p) const
{
if (score()->layoutMode() == Ms::LayoutMode::LINE) {
return score()->pages().isEmpty() ? 0 : score()->pages().front();
}
foreach (Ms::Page* page, score()->pages()) {
if (page->bbox().translated(page->pos()).contains(p)) {
return page;
}
}
return nullptr;
}
QList<Element*> NotationInteraction::elementsAt(const QPointF& p) const
{
QList<Element*> el;
2020-12-15 14:56:47 +01:00
Ms::Page* page = point2page(p);
if (page) {
el = page->items(p - page->pos());
std::sort(el.begin(), el.end(), NotationInteraction::elementIsLess);
}
return el;
}
Element* NotationInteraction::elementAt(const QPointF& p) const
{
QList<Element*> el = elementsAt(p);
Element* e = el.value(0);
if (e && e->isPage()) {
e = el.value(1);
}
return e;
}
2020-06-16 10:48:13 +02:00
QList<Ms::Element*> NotationInteraction::hitElements(const QPointF& p_in, float w) const
{
Ms::Page* page = point2page(p_in);
if (!page) {
return QList<Ms::Element*>();
}
QList<Ms::Element*> ll;
QPointF p = p_in - page->pos();
QRectF r(p.x() - w, p.y() - w, 3.0 * w, 3.0 * w);
QList<Ms::Element*> el = page->items(r);
//! TODO
// for (int i = 0; i < MAX_HEADERS; i++)
// if (score()->headerText(i) != nullptr) // gives the ability to select the header
// el.push_back(score()->headerText(i));
// for (int i = 0; i < MAX_FOOTERS; i++)
// if (score()->footerText(i) != nullptr) // gives the ability to select the footer
// el.push_back(score()->footerText(i));
//! -------
for (Ms::Element* e : el) {
e->itemDiscovered = 0;
if (!e->selectable() || e->isPage()) {
continue;
}
if (e->contains(p)) {
ll.append(e);
}
}
int n = ll.size();
if ((n == 0) || ((n == 1) && (ll[0]->isMeasure()))) {
//
// if no relevant element hit, look nearby
//
for (Ms::Element* e : el) {
if (e->isPage() || !e->selectable()) {
continue;
}
if (e->intersects(r)) {
ll.append(e);
}
}
}
if (!ll.empty()) {
std::sort(ll.begin(), ll.end(), NotationInteraction::elementIsLess);
} else {
Ms::Measure* measure = hitMeasure(p_in).measure;
if (measure) {
ll << measure;
}
2020-06-16 10:48:13 +02:00
}
return ll;
}
NotationInteraction::HitMeasureData NotationInteraction::hitMeasure(const QPointF& pos) const
{
int staffIndex;
2020-12-15 14:56:47 +01:00
Ms::Segment* segment;
QPointF offset;
Measure* measure = score()->pos2measure(pos, &staffIndex, 0, &segment, &offset);
HitMeasureData result;
if (measure && measure->staffLines(staffIndex)->canvasBoundingRect().contains(pos)) {
result.measure = measure;
result.staffIndex = staffIndex;
}
return result;
}
2020-06-16 10:48:13 +02:00
bool NotationInteraction::elementIsLess(const Ms::Element* e1, const Ms::Element* e2)
{
if (!e1->selectable()) {
return false;
}
if (!e2->selectable()) {
return true;
}
if (e1->isNote() && e2->isStem()) {
return true;
}
if (e2->isNote() && e1->isStem()) {
return false;
}
if (e1->z() == e2->z()) {
// same stacking order, prefer non-hidden elements
if (e1->type() == e2->type()) {
if (e1->type() == Ms::ElementType::NOTEDOT) {
const Ms::NoteDot* n1 = static_cast<const Ms::NoteDot*>(e1);
const Ms::NoteDot* n2 = static_cast<const Ms::NoteDot*>(e2);
if (n1->note() && n1->note()->hidden()) {
return false;
} else if (n2->note() && n2->note()->hidden()) {
return true;
}
} else if (e1->type() == Ms::ElementType::NOTE) {
const Ms::Note* n1 = static_cast<const Ms::Note*>(e1);
const Ms::Note* n2 = static_cast<const Ms::Note*>(e2);
if (n1->hidden()) {
return false;
} else if (n2->hidden()) {
return true;
}
}
}
// different types, or same type but nothing hidden - use track
return e1->track() <= e2->track();
}
// default case, use stacking order
return e1->z() <= e2->z();
}
void NotationInteraction::select(const std::vector<Element*>& elements, SelectType type, int staffIndex)
2020-06-16 10:33:18 +02:00
{
if (needEndTextEditing(elements)) {
2020-11-02 20:23:13 +01:00
endEditText();
}
for (Element* element: elements) {
score()->select(element, type, staffIndex);
}
notifyAboutSelectionChanged();
2020-11-02 20:23:13 +01:00
}
2020-11-06 09:58:13 +01:00
void NotationInteraction::selectAll()
{
score()->cmdSelectAll();
notifyAboutSelectionChanged();
2020-11-06 09:58:13 +01:00
}
INotationSelectionPtr NotationInteraction::selection() const
2020-06-16 10:33:18 +02:00
{
return m_selection;
}
void NotationInteraction::clearSelection()
{
score()->deselectAll();
notifyAboutSelectionChanged();
}
2020-06-16 10:33:18 +02:00
mu::async::Notification NotationInteraction::selectionChanged() const
{
return m_selectionChanged;
}
bool NotationInteraction::isDragStarted() const
{
return m_dragData.dragGroups.size() > 0;
}
void NotationInteraction::DragData::reset()
{
beginMove = QPointF();
elementOffset = QPointF();
ed = Ms::EditData();
2020-06-16 10:33:18 +02:00
dragGroups.clear();
}
void NotationInteraction::startDrag(const std::vector<Element*>& elems,
const QPointF& eoffset,
const IsDraggable& isDraggable)
{
m_dragData.reset();
2020-06-16 10:48:13 +02:00
m_dragData.elements = elems;
2020-06-16 10:33:18 +02:00
m_dragData.elementOffset = eoffset;
2020-06-16 10:48:13 +02:00
for (Element* e : m_dragData.elements) {
2020-06-16 10:33:18 +02:00
if (!isDraggable(e)) {
continue;
}
std::unique_ptr<Ms::ElementGroup> g = e->getDragGroup(isDraggable);
if (g && g->enabled()) {
m_dragData.dragGroups.push_back(std::move(g));
}
}
startEdit();
2020-06-16 10:33:18 +02:00
for (auto& g : m_dragData.dragGroups) {
g->startDrag(m_dragData.ed);
2020-06-16 10:33:18 +02:00
}
}
void NotationInteraction::drag(const QPointF& fromPos, const QPointF& toPos, DragMode mode)
{
if (m_dragData.beginMove.isNull()) {
m_dragData.beginMove = fromPos;
m_dragData.ed.pos = fromPos;
2020-06-16 10:33:18 +02:00
}
QPointF normalizedBegin = m_dragData.beginMove - m_dragData.elementOffset;
QPointF delta = toPos - normalizedBegin;
QPointF evtDelta = toPos - m_dragData.ed.pos;
2020-06-16 10:33:18 +02:00
switch (mode) {
case DragMode::BothXY:
break;
case DragMode::OnlyX:
delta.setY(m_dragData.ed.delta.y());
2020-06-16 10:33:18 +02:00
evtDelta.setY(0.0);
break;
case DragMode::OnlyY:
delta.setX(m_dragData.ed.delta.x());
2020-06-16 10:33:18 +02:00
evtDelta.setX(0.0);
break;
}
m_dragData.ed.lastPos = m_dragData.ed.pos;
m_dragData.ed.hRaster = false; //mscore->hRaster();
m_dragData.ed.vRaster = false; //mscore->vRaster();
m_dragData.ed.delta = delta;
m_dragData.ed.moveDelta = delta - m_dragData.elementOffset;
m_dragData.ed.evtDelta = evtDelta;
m_dragData.ed.pos = toPos;
2020-06-16 10:33:18 +02:00
if (isTextEditingStarted()) {
m_textEditData.pos = toPos;
toTextBase(m_textEditData.element)->dragTo(m_textEditData);
notifyAboutTextEditingChanged();
return;
}
2020-06-16 10:33:18 +02:00
for (auto& g : m_dragData.dragGroups) {
score()->addRefresh(g->drag(m_dragData.ed));
2020-06-16 10:33:18 +02:00
}
score()->update();
2020-06-16 10:48:13 +02:00
QVector<QLineF> anchorLines;
for (const Element* e : m_dragData.elements) {
QVector<QLineF> elAnchorLines = e->dragAnchorLines();
const Ms::Element* page = e->findAncestor(ElementType::PAGE);
const QPointF pageOffset((page ? page : e)->pos());
if (!elAnchorLines.isEmpty()) {
for (QLineF& l : elAnchorLines) {
l.translate(pageOffset);
}
anchorLines.append(elAnchorLines);
}
}
setAnchorLines(std::vector<QLineF>(anchorLines.begin(), anchorLines.end()));
2020-06-16 10:48:13 +02:00
notifyAboutDragChanged();
2020-06-16 10:33:18 +02:00
// Element* e = _score->getSelectedElement();
// if (e) {
// if (_score->playNote()) {
// mscore->play(e);
// _score->setPlayNote(false);
// }
// }
// updateGrips();
// _score->update();
}
void NotationInteraction::endDrag()
{
for (auto& g : m_dragData.dragGroups) {
g->endDrag(m_dragData.ed);
2020-06-16 10:33:18 +02:00
}
m_dragData.reset();
resetAnchorLines();
apply();
notifyAboutDragChanged();
// updateGrips();
// if (editData.element->normalModeEditBehavior() == Element::EditBehavior::Edit
// && _score->selection().element() == editData.element) {
// startEdit(/* editMode */ false);
// }
2020-06-16 10:33:18 +02:00
}
mu::async::Notification NotationInteraction::dragChanged() const
2020-06-16 10:33:18 +02:00
{
return m_dragChanged;
}
//! NOTE Copied from ScoreView::dragEnterEvent
void NotationInteraction::startDrop(const QByteArray& edata)
{
if (m_dropData.ed.dropElement) {
delete m_dropData.ed.dropElement;
m_dropData.ed.dropElement = nullptr;
}
2020-12-15 14:56:47 +01:00
Ms::XmlReader e(edata);
m_dropData.ed.dragOffset = QPointF();
Fraction duration; // dummy
ElementType type = Element::readType(e, &m_dropData.ed.dragOffset, &duration);
Element* el = Element::create(type, score());
if (el) {
if (type == ElementType::BAR_LINE || type == ElementType::ARPEGGIO || type == ElementType::BRACKET) {
double spatium = score()->spatium();
el->setHeight(spatium * 5);
}
m_dropData.ed.dropElement = el;
m_dropData.ed.dropElement->setParent(0);
m_dropData.ed.dropElement->read(e);
m_dropData.ed.dropElement->layout();
}
}
//! NOTE Copied from ScoreView::dragMoveEvent
bool NotationInteraction::isDropAccepted(const QPointF& pos, Qt::KeyboardModifiers modifiers)
{
if (!m_dropData.ed.dropElement) {
return false;
}
m_dropData.ed.pos = pos;
m_dropData.ed.modifiers = modifiers;
switch (m_dropData.ed.dropElement->type()) {
case ElementType::VOLTA:
return dragMeasureAnchorElement(pos);
case ElementType::PEDAL:
case ElementType::LET_RING:
case ElementType::VIBRATO:
case ElementType::PALM_MUTE:
case ElementType::OTTAVA:
case ElementType::TRILL:
case ElementType::HAIRPIN:
case ElementType::TEXTLINE:
return dragTimeAnchorElement(pos);
case ElementType::IMAGE:
case ElementType::SYMBOL:
case ElementType::FSYMBOL:
case ElementType::DYNAMIC:
case ElementType::KEYSIG:
case ElementType::CLEF:
case ElementType::TIMESIG:
case ElementType::BAR_LINE:
case ElementType::ARPEGGIO:
case ElementType::BREATH:
case ElementType::GLISSANDO:
case ElementType::MEASURE_NUMBER:
case ElementType::BRACKET:
case ElementType::ARTICULATION:
case ElementType::FERMATA:
case ElementType::CHORDLINE:
case ElementType::BEND:
case ElementType::ACCIDENTAL:
case ElementType::TEXT:
case ElementType::FINGERING:
case ElementType::TEMPO_TEXT:
case ElementType::STAFF_TEXT:
case ElementType::SYSTEM_TEXT:
case ElementType::NOTEHEAD:
case ElementType::TREMOLO:
case ElementType::LAYOUT_BREAK:
case ElementType::MARKER:
case ElementType::STAFF_STATE:
case ElementType::INSTRUMENT_CHANGE:
case ElementType::REHEARSAL_MARK:
case ElementType::JUMP:
case ElementType::MEASURE_REPEAT:
case ElementType::ICON:
case ElementType::CHORD:
case ElementType::SPACER:
case ElementType::SLUR:
case ElementType::HARMONY:
case ElementType::BAGPIPE_EMBELLISHMENT:
case ElementType::AMBITUS:
case ElementType::TREMOLOBAR:
case ElementType::FIGURED_BASS:
case ElementType::LYRICS:
case ElementType::FRET_DIAGRAM:
case ElementType::STAFFTYPE_CHANGE: {
Element* e = dropTarget(m_dropData.ed);
if (e) {
if (!e->isMeasure()) {
setDropTarget(e);
}
return true;
} else {
return false;
}
}
break;
default:
break;
}
return false;
}
//! NOTE Copied from ScoreView::dropEvent
bool NotationInteraction::drop(const QPointF& pos, Qt::KeyboardModifiers modifiers)
{
if (!m_dropData.ed.dropElement) {
return false;
}
IF_ASSERT_FAILED(m_dropData.ed.dropElement->score() == score()) {
return false;
}
bool accepted = false;
m_dropData.ed.pos = pos;
m_dropData.ed.modifiers = modifiers;
bool firstStaffOnly = false;
bool applyUserOffset = false;
//bool triggerSpannerDropApplyTour = m_dropData.ed.dropElement->isSpanner();
m_dropData.ed.dropElement->styleChanged();
startEdit();
score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
switch (m_dropData.ed.dropElement->type()) {
case ElementType::VOLTA:
// voltas drop to first staff by default, or closest staff if Control is held
firstStaffOnly = !(m_dropData.ed.modifiers & Qt::ControlModifier);
// fall-thru
case ElementType::OTTAVA:
case ElementType::TRILL:
case ElementType::PEDAL:
case ElementType::LET_RING:
case ElementType::VIBRATO:
case ElementType::PALM_MUTE:
case ElementType::HAIRPIN:
case ElementType::TEXTLINE:
{
2020-12-15 14:56:47 +01:00
Ms::Spanner* spanner = ptr::checked_cast<Ms::Spanner>(m_dropData.ed.dropElement);
score()->cmdAddSpanner(spanner, pos, firstStaffOnly);
score()->setUpdateAll();
accepted = true;
}
break;
case ElementType::SYMBOL:
case ElementType::FSYMBOL:
case ElementType::IMAGE:
applyUserOffset = true;
// fall-thru
case ElementType::DYNAMIC:
case ElementType::FRET_DIAGRAM:
case ElementType::HARMONY:
{
Element* el = elementAt(pos);
if (el == 0 || el->type() == ElementType::STAFF_LINES) {
int staffIdx;
2020-12-15 14:56:47 +01:00
Ms::Segment* seg;
QPointF offset;
el = score()->pos2measure(pos, &staffIdx, 0, &seg, &offset);
if (el && el->isMeasure()) {
m_dropData.ed.dropElement->setTrack(staffIdx * VOICES);
if (m_dropData.ed.dropElement->isImage()) {
m_dropData.ed.dropElement->setParent(el);
offset = pos - el->canvasPos();
} else {
m_dropData.ed.dropElement->setParent(seg);
}
if (applyUserOffset) {
m_dropData.ed.dropElement->setOffset(offset);
}
score()->undoAddElement(m_dropData.ed.dropElement);
} else {
qDebug("cannot drop here");
delete m_dropData.ed.dropElement;
m_dropData.ed.dropElement = nullptr;
}
} else {
score()->addRefresh(el->canvasBoundingRect());
score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
if (!el->acceptDrop(m_dropData.ed)) {
qDebug("drop %s onto %s not accepted", m_dropData.ed.dropElement->name(), el->name());
break;
}
Element* dropElement = el->drop(m_dropData.ed);
score()->addRefresh(el->canvasBoundingRect());
if (dropElement) {
score()->select(dropElement, SelectType::SINGLE, 0);
score()->addRefresh(dropElement->canvasBoundingRect());
}
}
}
accepted = true;
break;
case ElementType::HBOX:
case ElementType::VBOX:
case ElementType::KEYSIG:
case ElementType::CLEF:
case ElementType::TIMESIG:
case ElementType::BAR_LINE:
case ElementType::ARPEGGIO:
case ElementType::BREATH:
case ElementType::GLISSANDO:
case ElementType::MEASURE_NUMBER:
case ElementType::BRACKET:
case ElementType::ARTICULATION:
case ElementType::FERMATA:
case ElementType::CHORDLINE:
case ElementType::BEND:
case ElementType::ACCIDENTAL:
case ElementType::TEXT:
case ElementType::FINGERING:
case ElementType::TEMPO_TEXT:
case ElementType::STAFF_TEXT:
case ElementType::SYSTEM_TEXT:
case ElementType::NOTEHEAD:
case ElementType::TREMOLO:
case ElementType::LAYOUT_BREAK:
case ElementType::MARKER:
case ElementType::STAFF_STATE:
case ElementType::INSTRUMENT_CHANGE:
case ElementType::REHEARSAL_MARK:
case ElementType::JUMP:
case ElementType::MEASURE_REPEAT:
case ElementType::ICON:
case ElementType::NOTE:
case ElementType::CHORD:
case ElementType::SPACER:
case ElementType::SLUR:
case ElementType::BAGPIPE_EMBELLISHMENT:
case ElementType::AMBITUS:
case ElementType::TREMOLOBAR:
case ElementType::FIGURED_BASS:
case ElementType::LYRICS:
case ElementType::STAFFTYPE_CHANGE: {
Element* el = dropTarget(m_dropData.ed);
if (!el) {
if (!dropCanvas(m_dropData.ed.dropElement)) {
qDebug("cannot drop %s(%p) to canvas", m_dropData.ed.dropElement->name(), m_dropData.ed.dropElement);
delete m_dropData.ed.dropElement;
m_dropData.ed.dropElement = nullptr;
}
break;
}
score()->addRefresh(el->canvasBoundingRect());
// TODO: HACK ALERT!
if (el->isMeasure() && m_dropData.ed.dropElement->isLayoutBreak()) {
Measure* m = toMeasure(el);
if (m->isMMRest()) {
el = m->mmRestLast();
}
}
Element* dropElement = el->drop(m_dropData.ed);
if (dropElement && dropElement->isInstrumentChange()) {
2020-12-04 14:21:54 +01:00
selectInstrument(toInstrumentChange(dropElement));
}
score()->addRefresh(el->canvasBoundingRect());
if (dropElement) {
if (!score()->noteEntryMode()) {
score()->select(dropElement, SelectType::SINGLE, 0);
}
score()->addRefresh(dropElement->canvasBoundingRect());
}
accepted = true;
}
break;
default:
delete m_dropData.ed.dropElement;
break;
}
m_dropData.ed.dropElement = nullptr;
setDropTarget(nullptr); // this also resets dropRectangle and dropAnchor
apply();
// update input cursor position (must be done after layout)
// if (noteEntryMode()) {
// moveCursor();
// }
// if (triggerSpannerDropApplyTour) {
// TourHandler::startTour("spanner-drop-apply");
// }
if (accepted) {
notifyAboutDropChanged();
}
return accepted;
}
void NotationInteraction::selectInstrument(Ms::InstrumentChange* instrumentChange)
2020-12-04 14:21:54 +01:00
{
if (!instrumentChange) {
return;
}
RetVal<Val> retVal = interactive()->open("musescore://instruments/select?canSelectMultipleInstruments=false");
if (!retVal.ret) {
return;
}
instruments::Instrument selectedIstrument = retVal.val.toQVariant().value<instruments::Instrument>();
if (!selectedIstrument.isValid()) {
return;
}
2020-12-10 16:23:12 +01:00
Ms::Instrument instrument = InstrumentsConverter::convertInstrument(selectedIstrument);
2020-12-04 14:21:54 +01:00
instrumentChange->setInit(true);
instrumentChange->setupInstrument(&instrument);
}
2020-07-09 14:31:34 +02:00
//! NOTE Copied from Palette::applyPaletteElement
bool NotationInteraction::applyPaletteElement(Ms::Element* element, Qt::KeyboardModifiers modifiers)
{
IF_ASSERT_FAILED(element) {
return false;
}
2020-12-15 14:56:47 +01:00
Ms::Score* score = this->score();
2020-07-09 14:31:34 +02:00
if (!score) {
return false;
}
2020-12-15 14:56:47 +01:00
const Ms::Selection sel = score->selection(); // make a copy of selection state before applying the operation.
2020-07-09 14:31:34 +02:00
if (sel.isNone()) {
return false;
}
//-- if (element->isSpanner()) {
//-- TourHandler::startTour("spanner-drop-apply");
//-- }
//#ifdef MSCORE_UNSTABLE
// if (ScriptRecorder* rec = adapter()->getScriptRecorder()) {
// if (modifiers == 0) {
// rec->recordPaletteElement(element);
// }
// }
//#endif
startEdit();
2020-07-09 14:31:34 +02:00
if (sel.isList()) {
ChordRest* cr1 = sel.firstChordRest();
ChordRest* cr2 = sel.lastChordRest();
bool addSingle = false; // add a single line only
if (cr1 && cr2 == cr1) {
// one chordrest selected, ok to add line
addSingle = true;
} else if (sel.elements().size() == 2 && cr1 && cr2 && cr1 != cr2) {
// two chordrests selected
// must be on same staff in order to add line, except for slur
if (element->isSlur() || cr1->staffIdx() == cr2->staffIdx()) {
addSingle = true;
}
}
auto isEntryDrumStaff = [score]() {
2020-12-23 10:26:43 +01:00
const Ms::InputState& is = score->inputState();
Ms::Staff* staff = score->staff(is.track() / VOICES);
return staff->staffType(is.tick())->group() == Ms::StaffGroup::PERCUSSION;
};
2020-07-09 14:31:34 +02:00
if (isEntryDrumStaff() && element->isChord()) {
2020-12-15 14:56:47 +01:00
Ms::InputState& is = score->inputState();
Element* e = nullptr;
if (!(modifiers & Qt::ShiftModifier)) {
// shift+double-click: add note to "chord"
// use input position rather than selection if possible
// look for a cr in the voice predefined for the drum in the palette
// back up if necessary
// TODO: refactor this with similar code in putNote()
if (is.segment()) {
2020-12-15 14:56:47 +01:00
Ms::Segment* seg = is.segment();
while (seg) {
if (seg->element(is.track())) {
break;
}
2020-12-15 14:56:47 +01:00
seg = seg->prev(Ms::SegmentType::ChordRest);
}
if (seg) {
is.setSegment(seg);
} else {
2020-12-15 14:56:47 +01:00
is.setSegment(is.segment()->measure()->first(Ms::SegmentType::ChordRest));
}
}
score->expandVoice();
e = is.cr();
}
2020-07-09 14:31:34 +02:00
if (!e) {
e = sel.elements().first();
}
if (e) {
// get note if selection was full chord
if (e->isChord()) {
e = toChord(e)->upNote();
}
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, e, element, modifiers, QPointF(), true);
// note has already been played (and what would play otherwise may be *next* input position)
score->setPlayNote(false);
score->setPlayChord(false);
2020-07-09 14:31:34 +02:00
// continue in same track
is.setTrack(e->track());
2020-07-09 14:31:34 +02:00
} else {
qDebug("nowhere to place drum note");
}
} else if (element->isLayoutBreak()) {
2020-12-15 14:56:47 +01:00
Ms::LayoutBreak* breakElement = toLayoutBreak(element);
2020-07-09 14:31:34 +02:00
score->cmdToggleLayoutBreak(breakElement->layoutBreakType());
} else if (element->isSlur() && addSingle) {
2020-11-25 19:03:54 +01:00
doAddSlur(toSlur(element));
2020-07-09 14:31:34 +02:00
} else if (element->isSLine() && !element->isGlissando() && addSingle) {
2020-12-15 14:56:47 +01:00
Ms::Segment* startSegment = cr1->segment();
Ms::Segment* endSegment = cr2->segment();
if (element->type() == Ms::ElementType::PEDAL && cr2 != cr1) {
2020-07-09 14:31:34 +02:00
endSegment = endSegment->nextCR(cr2->track());
}
// TODO - handle cross-voice selections
int idx = cr1->staffIdx();
QByteArray a = element->mimeData(QPointF());
//printf("<<%s>>\n", a.data());
2020-12-15 14:56:47 +01:00
Ms::XmlReader e(a);
Ms::Fraction duration; // dummy
2020-07-09 14:31:34 +02:00
QPointF dragOffset;
2020-12-15 14:56:47 +01:00
Ms::ElementType type = Ms::Element::readType(e, &dragOffset, &duration);
Ms::Spanner* spanner = static_cast<Ms::Spanner*>(Ms::Element::create(type, score));
2020-07-09 14:31:34 +02:00
spanner->read(e);
spanner->styleChanged();
score->cmdAddSpanner(spanner, idx, startSegment, endSegment);
} else {
for (Element* e : sel.elements()) {
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, e, element, modifiers);
2020-07-09 14:31:34 +02:00
}
}
} else if (sel.isRange()) {
if (element->type() == ElementType::BAR_LINE
|| element->type() == ElementType::MARKER
|| element->type() == ElementType::JUMP
|| element->type() == ElementType::SPACER
|| element->type() == ElementType::VBOX
|| element->type() == ElementType::HBOX
|| element->type() == ElementType::TBOX
|| element->type() == ElementType::MEASURE
|| element->type() == ElementType::BRACKET
|| element->type() == ElementType::STAFFTYPE_CHANGE
|| (element->type() == ElementType::ICON
2020-12-15 14:56:47 +01:00
&& (toIcon(element)->iconType() == Ms::IconType::VFRAME
|| toIcon(element)->iconType() == Ms::IconType::HFRAME
|| toIcon(element)->iconType() == Ms::IconType::TFRAME
|| toIcon(element)->iconType() == Ms::IconType::MEASURE
|| toIcon(element)->iconType() == Ms::IconType::BRACKETS))) {
2020-07-09 14:31:34 +02:00
Measure* last = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
for (Measure* m = sel.startSegment()->measure(); m; m = m->nextMeasureMM()) {
QRectF r = m->staffabbox(sel.staffStart());
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
pt += m->system()->page()->pos();
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, m, element, modifiers, pt);
2020-07-09 14:31:34 +02:00
if (m == last) {
break;
}
}
} else if (element->type() == ElementType::LAYOUT_BREAK) {
2020-12-15 14:56:47 +01:00
Ms::LayoutBreak* breakElement = static_cast<Ms::LayoutBreak*>(element);
2020-07-09 14:31:34 +02:00
score->cmdToggleLayoutBreak(breakElement->layoutBreakType());
} else if (element->isClef() || element->isKeySig() || element->isTimeSig()) {
Measure* m1 = sel.startSegment()->measure();
Measure* m2 = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
if (m2 == m1 && sel.startSegment()->rtick().isZero()) {
m2 = nullptr; // don't restore original if one full measure selected
} else if (m2) {
m2 = m2->nextMeasureMM();
}
// for clefs, apply to each staff separately
// otherwise just apply to top staff
int staffIdx1 = sel.staffStart();
int staffIdx2 = element->type() == ElementType::CLEF ? sel.staffEnd() : staffIdx1 + 1;
for (int i = staffIdx1; i < staffIdx2; ++i) {
// for clefs, use mid-measure changes if appropriate
Element* e1 = nullptr;
Element* e2 = nullptr;
// use mid-measure clef changes as appropriate
if (element->type() == ElementType::CLEF) {
if (sel.startSegment()->isChordRestType() && sel.startSegment()->rtick().isNotZero()) {
ChordRest* cr = static_cast<ChordRest*>(sel.startSegment()->nextChordRest(i * VOICES));
if (cr && cr->isChord()) {
2020-07-29 13:20:36 +02:00
e1 = static_cast<Ms::Chord*>(cr)->upNote();
2020-07-09 14:31:34 +02:00
} else {
e1 = cr;
}
}
2020-12-15 14:56:47 +01:00
if (sel.endSegment() && sel.endSegment()->segmentType() == Ms::SegmentType::ChordRest) {
2020-07-09 14:31:34 +02:00
ChordRest* cr = static_cast<ChordRest*>(sel.endSegment()->nextChordRest(i * VOICES));
if (cr && cr->isChord()) {
2020-07-29 13:20:36 +02:00
e2 = static_cast<Ms::Chord*>(cr)->upNote();
2020-07-09 14:31:34 +02:00
} else {
e2 = cr;
}
}
}
if (m2 || e2) {
// restore original clef/keysig/timesig
2020-12-15 14:56:47 +01:00
Ms::Staff* staff = score->staff(i);
Ms::Fraction tick1 = sel.startSegment()->tick();
Ms::Element* oelement = nullptr;
2020-07-09 14:31:34 +02:00
switch (element->type()) {
2020-12-15 14:56:47 +01:00
case Ms::ElementType::CLEF:
2020-07-09 14:31:34 +02:00
{
2020-12-15 14:56:47 +01:00
Ms::Clef* oclef = new Ms::Clef(score);
2020-07-09 14:31:34 +02:00
oclef->setClefType(staff->clef(tick1));
oelement = oclef;
break;
}
2020-12-15 14:56:47 +01:00
case Ms::ElementType::KEYSIG:
2020-07-09 14:31:34 +02:00
{
2020-12-15 14:56:47 +01:00
Ms::KeySig* okeysig = new Ms::KeySig(score);
2020-07-09 14:31:34 +02:00
okeysig->setKeySigEvent(staff->keySigEvent(tick1));
2020-12-15 14:56:47 +01:00
if (!score->styleB(Ms::Sid::concertPitch) && !okeysig->isCustom() && !okeysig->isAtonal()) {
2020-07-09 14:31:34 +02:00
Ms::Interval v = staff->part()->instrument(tick1)->transpose();
if (!v.isZero()) {
Key k = okeysig->key();
okeysig->setKey(transposeKey(k, v, okeysig->part()->preferSharpFlat()));
}
}
oelement = okeysig;
break;
}
2020-12-15 14:56:47 +01:00
case Ms::ElementType::TIMESIG:
2020-07-09 14:31:34 +02:00
{
2020-12-15 14:56:47 +01:00
Ms::TimeSig* otimesig = new Ms::TimeSig(score);
2020-07-09 14:31:34 +02:00
otimesig->setFrom(staff->timeSig(tick1));
oelement = otimesig;
break;
}
default:
break;
}
if (oelement) {
if (e2) {
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, e2, oelement, modifiers);
2020-07-09 14:31:34 +02:00
} else {
QRectF r = m2->staffabbox(i);
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
pt += m2->system()->page()->pos();
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, m2, oelement, modifiers, pt);
2020-07-09 14:31:34 +02:00
}
delete oelement;
}
}
// apply new clef/keysig/timesig
if (e1) {
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, e1, element, modifiers);
2020-07-09 14:31:34 +02:00
} else {
QRectF r = m1->staffabbox(i);
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
pt += m1->system()->page()->pos();
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, m1, element, modifiers, pt);
2020-07-09 14:31:34 +02:00
}
}
} else if (element->isSlur()) {
2020-11-25 19:03:54 +01:00
doAddSlur(toSlur(element));
2020-07-09 14:31:34 +02:00
} else if (element->isSLine() && element->type() != ElementType::GLISSANDO) {
2020-12-15 14:56:47 +01:00
Ms::Segment* startSegment = sel.startSegment();
Ms::Segment* endSegment = sel.endSegment();
2020-07-09 14:31:34 +02:00
bool firstStaffOnly = element->isVolta() && !(modifiers & Qt::ControlModifier);
int startStaff = firstStaffOnly ? 0 : sel.staffStart();
int endStaff = firstStaffOnly ? 1 : sel.staffEnd();
for (int i = startStaff; i < endStaff; ++i) {
2020-12-15 14:56:47 +01:00
Ms::Spanner* spanner = static_cast<Ms::Spanner*>(element->clone());
2020-07-09 14:31:34 +02:00
spanner->setScore(score);
spanner->styleChanged();
score->cmdAddSpanner(spanner, i, startSegment, endSegment);
}
} else {
int track1 = sel.staffStart() * VOICES;
int track2 = sel.staffEnd() * VOICES;
2020-12-15 14:56:47 +01:00
Ms::Segment* startSegment = sel.startSegment();
Ms::Segment* endSegment = sel.endSegment(); //keep it, it could change during the loop
2020-07-09 14:31:34 +02:00
2020-12-15 14:56:47 +01:00
for (Ms::Segment* s = startSegment; s && s != endSegment; s = s->next1()) {
2020-07-09 14:31:34 +02:00
for (int track = track1; track < track2; ++track) {
2020-12-15 14:56:47 +01:00
Ms::Element* e = s->element(track);
2020-07-09 14:31:34 +02:00
if (e == 0 || !score->selectionFilter().canSelect(e)
|| !score->selectionFilter().canSelectVoice(track)) {
continue;
}
if (e->isChord()) {
2020-07-29 13:20:36 +02:00
Ms::Chord* chord = toChord(e);
2020-12-15 14:56:47 +01:00
for (Ms::Note* n : chord->notes()) {
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, n, element, modifiers);
2020-07-09 14:31:34 +02:00
if (!(element->isAccidental() || element->isNoteHead())) { // only these need to apply to every note
break;
}
}
} else {
// do not apply articulation to barline in a range selection
if (!e->isBarLine() || !element->isArticulation()) {
2020-07-11 11:00:29 +02:00
applyDropPaletteElement(score, e, element, modifiers);
2020-07-09 14:31:34 +02:00
}
}
}
if (!element->placeMultiple()) {
break;
}
}
}
} else {
qDebug("unknown selection state");
}
apply();
2020-10-23 19:30:10 +02:00
2020-07-09 14:31:34 +02:00
setDropTarget(nullptr);
return true;
}
//! NOTE Copied from Palette applyDrop
2020-07-11 11:00:29 +02:00
void NotationInteraction::applyDropPaletteElement(Ms::Score* score, Ms::Element* target, Ms::Element* e,
2020-07-09 14:31:34 +02:00
Qt::KeyboardModifiers modifiers,
QPointF pt, bool pasteMode)
{
2020-12-15 14:56:47 +01:00
Ms::EditData dropData;
2020-07-09 14:31:34 +02:00
dropData.pos = pt.isNull() ? target->pagePos() : pt;
dropData.dragOffset = QPointF();
dropData.modifiers = modifiers;
dropData.dropElement = e;
if (target->acceptDrop(dropData)) {
// use same code path as drag&drop
QByteArray a = e->mimeData(QPointF());
2020-12-15 14:56:47 +01:00
Ms::XmlReader n(a);
2020-07-09 14:31:34 +02:00
n.setPasteMode(pasteMode);
Fraction duration; // dummy
QPointF dragOffset;
ElementType type = Element::readType(n, &dragOffset, &duration);
dropData.dropElement = Element::create(type, score);
dropData.dropElement->read(n);
dropData.dropElement->styleChanged(); // update to local style
2020-12-15 14:56:47 +01:00
Ms::Element* el = target->drop(dropData);
2020-07-09 14:31:34 +02:00
if (el && el->isInstrumentChange()) {
2020-12-04 14:21:54 +01:00
selectInstrument(toInstrumentChange(el));
2020-07-09 14:31:34 +02:00
}
if (el && !score->inputState().noteEntryMode()) {
2020-12-15 14:56:47 +01:00
select({ el }, Ms::SelectType::SINGLE, 0);
2020-07-09 14:31:34 +02:00
}
dropData.dropElement = 0;
notifyAboutDropChanged();
2020-07-09 14:31:34 +02:00
}
}
//! NOTE Copied from ScoreView::cmdAddSlur
2020-11-25 19:03:54 +01:00
void NotationInteraction::doAddSlur(const Ms::Slur* slurTemplate)
{
if (m_noteInput->isNoteInputMode()) {
if (m_noteInput->state().withSlur) {
m_noteInput->resetSlur();
return;
2020-07-09 14:31:34 +02:00
}
}
startEdit();
2020-07-09 14:31:34 +02:00
2020-12-15 14:56:47 +01:00
Ms::ChordRest* cr1;
Ms::ChordRest* cr2;
2020-07-09 14:31:34 +02:00
const auto& sel = score()->selection();
auto el = sel.uniqueElements();
if (sel.isRange()) {
int startTrack = sel.staffStart() * VOICES;
int endTrack = sel.staffEnd() * VOICES;
for (int track = startTrack; track < endTrack; ++track) {
cr1 = 0;
cr2 = 0;
2020-12-15 14:56:47 +01:00
for (Ms::Element* e : el) {
2020-07-09 14:31:34 +02:00
if (e->track() != track) {
continue;
}
if (e->isNote()) {
e = toNote(e)->chord();
}
if (!e->isChord()) {
continue;
}
2020-12-15 14:56:47 +01:00
Ms::ChordRest* cr = Ms::toChordRest(e);
2020-07-09 14:31:34 +02:00
if (!cr1 || cr1->tick() > cr->tick()) {
cr1 = cr;
}
if (!cr2 || cr2->tick() < cr->tick()) {
cr2 = cr;
}
}
2020-11-25 19:03:54 +01:00
2020-07-09 14:31:34 +02:00
if (cr1 && (cr1 != cr2)) {
2020-12-15 14:56:47 +01:00
Ms::Slur* slur = score()->addSlur(cr1, cr2, slurTemplate);
2020-11-25 19:03:54 +01:00
if (m_noteInput->isNoteInputMode()) {
m_noteInput->setSlur(slur);
2020-11-25 19:03:54 +01:00
} else if (!cr2) {
NOT_IMPLEMENTED;
//startEditMode(ss);
}
2020-07-09 14:31:34 +02:00
}
}
} else {
cr1 = 0;
cr2 = 0;
2020-12-15 14:56:47 +01:00
for (Ms::Element* e : el) {
2020-07-09 14:31:34 +02:00
if (e->isNote()) {
2020-12-15 14:56:47 +01:00
e = Ms::toNote(e)->chord();
2020-07-09 14:31:34 +02:00
}
if (!e->isChord()) {
continue;
}
2020-12-15 14:56:47 +01:00
Ms::ChordRest* cr = Ms::toChordRest(e);
2020-07-09 14:31:34 +02:00
if (!cr1 || cr->isBefore(cr1)) {
cr1 = cr;
}
if (!cr2 || cr2->isBefore(cr)) {
cr2 = cr;
}
}
if (cr1 == cr2) {
cr2 = 0;
}
if (cr1) {
2020-12-15 14:56:47 +01:00
Ms::Slur* slur = score()->addSlur(cr1, cr2, slurTemplate);
2020-07-09 14:31:34 +02:00
2020-11-25 19:03:54 +01:00
if (m_noteInput->isNoteInputMode()) {
m_noteInput->setSlur(slur);
2020-11-25 19:03:54 +01:00
} else if (!cr2) {
NOT_IMPLEMENTED;
//startEditMode(ss);
}
2020-07-09 14:31:34 +02:00
}
}
apply();
2020-07-09 14:31:34 +02:00
}
2020-12-08 19:37:10 +01:00
bool NotationInteraction::scoreHasMeasure() const
{
2020-12-15 14:56:47 +01:00
Ms::Page* page = score()->pages().isEmpty() ? nullptr : score()->pages().front();
const QList<Ms::System*>* systems = page ? &page->systems() : nullptr;
2020-12-08 19:37:10 +01:00
if (systems == nullptr || systems->empty() || systems->front()->measures().empty()) {
return false;
}
return true;
}
2020-12-14 16:07:33 +01:00
bool NotationInteraction::notesHaveActiculation(const std::vector<Note*>& notes, SymbolId articulationSymbolId) const
{
for (Note* note: notes) {
Chord* chord = note->chord();
std::set<SymbolId> chordArticulations = chord->articulationSymbolIds();
2020-12-14 16:07:33 +01:00
chordArticulations = Ms::flipArticulations(chordArticulations, Ms::Placement::ABOVE);
chordArticulations = Ms::splitArticulations(chordArticulations);
if (chordArticulations.find(articulationSymbolId) == chordArticulations.end()) {
return false;
}
}
return true;
}
//! NOTE Copied from ScoreView::dragLeaveEvent
void NotationInteraction::endDrop()
{
if (m_dropData.ed.dropElement) {
score()->setUpdateAll();
delete m_dropData.ed.dropElement;
m_dropData.ed.dropElement = nullptr;
score()->update();
}
setDropTarget(nullptr);
}
2020-07-10 10:46:56 +02:00
mu::async::Notification NotationInteraction::dropChanged() const
{
return m_dropChanged;
}
//! NOTE Copied from ScoreView::dropCanvas
bool NotationInteraction::dropCanvas(Element* e)
{
if (e->isIcon()) {
2020-12-15 14:56:47 +01:00
switch (Ms::toIcon(e)->iconType()) {
case Ms::IconType::VFRAME:
score()->insertMeasure(ElementType::VBOX, 0);
break;
2020-12-15 14:56:47 +01:00
case Ms::IconType::HFRAME:
score()->insertMeasure(ElementType::HBOX, 0);
break;
2020-12-15 14:56:47 +01:00
case Ms::IconType::TFRAME:
score()->insertMeasure(ElementType::TBOX, 0);
break;
2020-12-15 14:56:47 +01:00
case Ms::IconType::FFRAME:
score()->insertMeasure(ElementType::FBOX, 0);
break;
2020-12-15 14:56:47 +01:00
case Ms::IconType::MEASURE:
score()->insertMeasure(ElementType::MEASURE, 0);
break;
default:
return false;
}
delete e;
return true;
}
return false;
}
//! NOTE Copied from ScoreView::getDropTarget
Element* NotationInteraction::dropTarget(Ms::EditData& ed) const
{
QList<Element*> el = elementsAt(ed.pos);
for (Element* e : el) {
if (e->isStaffLines()) {
if (el.size() > 2) { // is not first class drop target
continue;
}
2020-12-15 14:56:47 +01:00
e = Ms::toStaffLines(e)->measure();
}
if (e->acceptDrop(ed)) {
return e;
}
}
return nullptr;
}
//! NOTE Copied from ScoreView::dragMeasureAnchorElement
bool NotationInteraction::dragMeasureAnchorElement(const QPointF& pos)
{
int staffIdx;
2020-12-15 14:56:47 +01:00
Ms::Segment* seg;
Ms::MeasureBase* mb = score()->pos2measure(pos, &staffIdx, 0, &seg, 0);
if (!(m_dropData.ed.modifiers & Qt::ControlModifier)) {
staffIdx = 0;
}
int track = staffIdx * VOICES;
if (mb && mb->isMeasure()) {
2020-12-15 14:56:47 +01:00
Ms::Measure* m = Ms::toMeasure(mb);
Ms::System* s = m->system();
qreal y = s->staff(staffIdx)->y() + s->pos().y() + s->page()->pos().y();
QRectF b(m->canvasBoundingRect());
if (pos.x() >= (b.x() + b.width() * .5) && m != score()->lastMeasureMM()
&& m->nextMeasure()->system() == m->system()) {
m = m->nextMeasure();
}
QPointF anchor(m->canvasBoundingRect().x(), y);
setAnchorLines({ QLineF(pos, anchor) });
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
m_dropData.ed.dropElement->setTrack(track);
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
notifyAboutDropChanged();
return true;
}
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
setDropTarget(nullptr);
return false;
}
//! NOTE Copied from ScoreView::dragTimeAnchorElement
bool NotationInteraction::dragTimeAnchorElement(const QPointF& pos)
{
int staffIdx;
2020-12-15 14:56:47 +01:00
Ms::Segment* seg;
Ms::MeasureBase* mb = score()->pos2measure(pos, &staffIdx, 0, &seg, 0);
int track = staffIdx * VOICES;
if (mb && mb->isMeasure() && seg->element(track)) {
2020-12-15 14:56:47 +01:00
Ms::Measure* m = Ms::toMeasure(mb);
Ms::System* s = m->system();
qreal y = s->staff(staffIdx)->y() + s->pos().y() + s->page()->pos().y();
QPointF anchor(seg->canvasBoundingRect().x(), y);
setAnchorLines({ QLineF(pos, anchor) });
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
m_dropData.ed.dropElement->setTrack(track);
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
notifyAboutDragChanged();
return true;
}
m_dropData.ed.dropElement->score()->addRefresh(m_dropData.ed.dropElement->canvasBoundingRect());
setDropTarget(nullptr);
return false;
}
2020-07-09 14:31:34 +02:00
//! NOTE Copied from ScoreView::setDropTarget
void NotationInteraction::setDropTarget(Element* el)
{
if (m_dropData.dropTarget != el) {
if (m_dropData.dropTarget) {
m_dropData.dropTarget->setDropTarget(false);
m_dropData.dropTarget = nullptr;
}
m_dropData.dropTarget = el;
if (m_dropData.dropTarget) {
m_dropData.dropTarget->setDropTarget(true);
}
}
m_anchorLines.clear();
//! TODO
// if (dropRectangle.isValid()) {
// dropRectangle = QRectF();
// }
//! ---
notifyAboutDragChanged();
}
void NotationInteraction::setAnchorLines(const std::vector<QLineF>& anchorList)
{
m_anchorLines = anchorList;
}
void NotationInteraction::resetAnchorLines()
2020-06-16 10:33:18 +02:00
{
m_anchorLines.clear();
2020-06-16 10:33:18 +02:00
}
2020-06-16 10:48:13 +02:00
void NotationInteraction::drawAnchorLines(QPainter* painter)
2020-06-16 10:33:18 +02:00
{
if (m_anchorLines.empty()) {
2020-06-16 10:48:13 +02:00
return;
2020-06-16 10:33:18 +02:00
}
const auto dropAnchorColor = configuration()->anchorLineColor();
2020-06-16 10:48:13 +02:00
QPen pen(QBrush(dropAnchorColor), 2.0 / painter->worldTransform().m11(), Qt::DotLine);
2020-06-16 10:33:18 +02:00
for (const QLineF& anchor : m_anchorLines) {
2020-06-16 10:48:13 +02:00
painter->setPen(pen);
painter->drawLine(anchor);
2020-06-16 10:33:18 +02:00
2020-06-16 10:48:13 +02:00
qreal d = 4.0 / painter->worldTransform().m11();
QRectF rect(-d, -d, 2 * d, 2 * d);
2020-06-16 10:33:18 +02:00
2020-06-16 10:48:13 +02:00
painter->setBrush(QBrush(dropAnchorColor));
painter->setPen(Qt::NoPen);
rect.moveCenter(anchor.p1());
painter->drawEllipse(rect);
rect.moveCenter(anchor.p2());
painter->drawEllipse(rect);
2020-06-16 10:33:18 +02:00
}
}
void NotationInteraction::drawTextEditMode(QPainter* painter)
{
if (!isTextEditingStarted()) {
return;
}
m_textEditData.element->drawEditMode(painter, m_textEditData);
}
2020-11-10 08:03:27 +01:00
void NotationInteraction::drawSelectionRange(QPainter* painter)
{
if (!m_selection->isRange()) {
return;
}
painter->setBrush(Qt::NoBrush);
QColor selectionColor = configuration()->selectionColor();
qreal penWidth = 3.0 / painter->worldTransform().toAffine().m11();
QPen pen;
pen.setColor(selectionColor);
pen.setWidthF(penWidth);
pen.setStyle(Qt::SolidLine);
painter->setPen(pen);
2020-11-16 21:04:07 +01:00
std::vector<QRectF> rangeArea = m_selection->range()->boundingArea();
2020-11-10 08:03:27 +01:00
for (const QRectF& rect: rangeArea) {
QPainterPath path;
path.addRoundedRect(rect, 6, 6);
QColor fillColor = selectionColor;
fillColor.setAlpha(10);
painter->fillPath(path, fillColor);
painter->drawPath(path);
}
}
void NotationInteraction::moveSelection(MoveDirection d, MoveSelectionType type)
{
IF_ASSERT_FAILED(MoveDirection::Left == d || MoveDirection::Right == d) {
return;
}
IF_ASSERT_FAILED(MoveSelectionType::Undefined != type) {
return;
}
if (MoveSelectionType::Element == type) {
moveElementSelection(d);
return;
}
//! NOTE Previously, the `Score::move` method directly expected commands (actions)
//! Now the `Notation` provides only notation management methods,
//! and interpretation of actions is the responsibility of `NotationActionController`
auto typeToString = [](MoveSelectionType type) {
2020-12-23 10:26:43 +01:00
switch (type) {
case MoveSelectionType::Undefined: return QString();
case MoveSelectionType::Element: return QString();
case MoveSelectionType::Chord: return QString("chord");
case MoveSelectionType::Measure: return QString("measure");
case MoveSelectionType::Track: return QString("track");
}
return QString();
};
QString cmd;
if (MoveDirection::Left == d) {
cmd = "prev-";
}
if (MoveDirection::Right == d) {
cmd = "next-";
}
cmd += typeToString(type);
score()->move(cmd);
notifyAboutSelectionChanged();
}
void NotationInteraction::moveElementSelection(MoveDirection d)
{
Element* el = score()->selection().element();
if (!el && !score()->selection().elements().isEmpty()) {
el = score()->selection().elements().last();
}
if (!el) {
ChordRest* cr = score()->selection().currentCR();
if (cr) {
if (cr->isChord()) {
if (MoveDirection::Left == d) {
el = toChord(cr)->upNote();
} else {
el = toChord(cr)->downNote();
}
} else if (cr->isRest()) {
el = cr;
}
score()->select(el);
}
}
Element* toEl = nullptr;
if (el) {
toEl = (MoveDirection::Left == d) ? score()->prevElement() : score()->nextElement();
} else {
toEl = (MoveDirection::Left == d) ? score()->lastElement() : score()->firstElement();
}
if (toEl) {
score()->select(toEl, SelectType::SINGLE, 0);
if (toEl->type() == ElementType::NOTE || toEl->type() == ElementType::HARMONY) {
score()->setPlayNote(true);
}
}
notifyAboutSelectionChanged();
}
void NotationInteraction::movePitch(MoveDirection d, PitchMode mode)
{
IF_ASSERT_FAILED(MoveDirection::Up == d || MoveDirection::Down == d) {
return;
}
QList<Note*> el = score()->selection().uniqueNotes();
IF_ASSERT_FAILED(!el.isEmpty()) {
return;
}
startEdit();
bool isUp = MoveDirection::Up == d;
score()->upDown(isUp, mode);
apply();
notifyAboutDragChanged();
}
void NotationInteraction::moveText(MoveDirection d, bool quickly)
{
Element* el = score()->selection().element();
IF_ASSERT_FAILED(el && el->isTextBase()) {
return;
}
startEdit();
2020-12-15 14:56:47 +01:00
qreal step = quickly ? Ms::MScore::nudgeStep10 : Ms::MScore::nudgeStep;
step = step * el->spatium();
switch (d) {
case MoveDirection::Undefined:
IF_ASSERT_FAILED(d != MoveDirection::Undefined) {
return;
}
2020-06-26 15:09:20 +02:00
break;
case MoveDirection::Left:
2020-12-15 14:56:47 +01:00
el->undoChangeProperty(Ms::Pid::OFFSET, el->offset() - QPointF(step, 0.0), Ms::PropertyFlags::UNSTYLED);
break;
case MoveDirection::Right:
2020-12-15 14:56:47 +01:00
el->undoChangeProperty(Ms::Pid::OFFSET, el->offset() + QPointF(step, 0.0), Ms::PropertyFlags::UNSTYLED);
break;
case MoveDirection::Up:
2020-12-15 14:56:47 +01:00
el->undoChangeProperty(Ms::Pid::OFFSET, el->offset() - QPointF(0.0, step), Ms::PropertyFlags::UNSTYLED);
break;
case MoveDirection::Down:
2020-12-15 14:56:47 +01:00
el->undoChangeProperty(Ms::Pid::OFFSET, el->offset() + QPointF(0.0, step), Ms::PropertyFlags::UNSTYLED);
break;
}
apply();
notifyAboutDragChanged();
}
bool NotationInteraction::isTextEditingStarted() const
{
return m_textEditData.element != nullptr;
}
void NotationInteraction::startEditText(Element* element, const QPointF& cursorPos)
{
if (!element || !element->isEditable() || !element->isTextBase()) {
qDebug("The element cannot be edited");
return;
}
m_textEditData.startMove = cursorPos;
if (isTextEditingStarted()) {
// double click on a textBase element that is being edited - select word
2020-12-15 14:56:47 +01:00
Ms::TextBase* textBase = Ms::toTextBase(m_textEditData.element);
textBase->multiClickSelect(m_textEditData, Ms::MultiClick::Double);
textBase->endHexState(m_textEditData);
textBase->setPrimed(false);
} else {
m_textEditData.clearData();
m_textEditData.element = element;
if (m_textEditData.element->isTBox()) {
m_textEditData.element = toTBox(m_textEditData.element)->text();
}
element->startEdit(m_textEditData);
}
notifyAboutTextEditingStarted();
notifyAboutTextEditingChanged();
}
void NotationInteraction::editText(QKeyEvent* event)
{
IF_ASSERT_FAILED(m_textEditData.element) {
return;
}
m_textEditData.key = event->key();
m_textEditData.modifiers = event->modifiers();
m_textEditData.s = event->text();
m_textEditData.element->edit(m_textEditData);
score()->update();
notifyAboutTextEditingChanged();
}
void NotationInteraction::endEditText()
{
IF_ASSERT_FAILED(m_textEditData.element) {
return;
}
if (!isTextEditingStarted()) {
return;
}
m_textEditData.element->endEdit(m_textEditData);
m_textEditData.element = nullptr;
m_textEditData.clearData();
notifyAboutTextEditingChanged();
}
void NotationInteraction::changeTextCursorPosition(const QPointF& newCursorPos)
{
IF_ASSERT_FAILED(isTextEditingStarted() && m_textEditData.element) {
return;
}
m_textEditData.startMove = newCursorPos;
m_textEditData.element->mousePress(m_textEditData);
notifyAboutTextEditingChanged();
}
mu::async::Notification NotationInteraction::textEditingStarted() const
{
return m_textEditingStarted;
}
mu::async::Notification NotationInteraction::textEditingChanged() const
{
return m_textEditingChanged;
}
2020-10-13 14:06:26 +02:00
2020-11-06 13:50:21 +01:00
void NotationInteraction::splitSelectedMeasure()
{
Element* selectedElement = m_selection->element();
if (!selectedElement) {
return;
}
if (!selectedElement->isNote() && !selectedElement->isRest()) {
return;
}
if (selectedElement->isNote()) {
selectedElement = dynamic_cast<Note*>(selectedElement)->chord();
}
ChordRest* chordRest = dynamic_cast<ChordRest*>(selectedElement);
startEdit();
2020-11-06 13:50:21 +01:00
score()->cmdSplitMeasure(chordRest);
apply();
2020-11-06 13:50:21 +01:00
notifyAboutSelectionChanged();
2020-11-06 13:50:21 +01:00
}
void NotationInteraction::joinSelectedMeasures()
{
if (!m_selection->isRange()) {
return;
}
Measure* measureStart = score()->crMeasure(m_selection->range()->startMeasureIndex() - 1);
Measure* measureEnd = score()->crMeasure(m_selection->range()->endMeasureIndex() - 1);
startEdit();
2020-11-06 13:50:21 +01:00
score()->cmdJoinMeasure(measureStart, measureEnd);
apply();
2020-11-06 13:50:21 +01:00
notifyAboutSelectionChanged();
2020-11-06 13:50:21 +01:00
}
2020-11-27 12:47:39 +01:00
void NotationInteraction::addBoxes(BoxType boxType, int count, int beforeBoxIndex)
2020-11-06 13:40:25 +01:00
{
2020-11-27 12:47:39 +01:00
auto boxTypeToElementType = [](BoxType boxType) {
2020-12-23 10:26:43 +01:00
switch (boxType) {
case BoxType::Horizontal: return Ms::ElementType::HBOX;
case BoxType::Vertical: return Ms::ElementType::VBOX;
case BoxType::Text: return Ms::ElementType::TBOX;
case BoxType::Measure: return Ms::ElementType::MEASURE;
case BoxType::Unknown: return Ms::ElementType::INVALID;
}
return ElementType::INVALID;
};
2020-11-06 13:40:25 +01:00
2020-12-15 14:56:47 +01:00
Ms::ElementType elementType = boxTypeToElementType(boxType);
Ms::MeasureBase* beforeBox = beforeBoxIndex >= 0 ? score()->measure(beforeBoxIndex) : nullptr;
2020-11-06 13:40:25 +01:00
startEdit();
2020-11-27 12:47:39 +01:00
for (int i = 0; i < count; ++i) {
constexpr bool createEmptyMeasures = false;
constexpr bool moveSignaturesClef = true;
constexpr bool needDeselectAll = false;
2020-11-06 13:40:25 +01:00
2020-11-27 12:47:39 +01:00
score()->insertMeasure(elementType, beforeBox, createEmptyMeasures, moveSignaturesClef, needDeselectAll);
2020-11-06 13:40:25 +01:00
}
apply();
2020-11-06 13:40:25 +01:00
notifyAboutNotationChanged();
2020-11-06 13:40:25 +01:00
}
2020-11-10 08:03:27 +01:00
void NotationInteraction::copySelection()
{
if (!selection()->canCopy()) {
return;
}
QMimeData* mimeData = selection()->mimeData();
if (!mimeData) {
return;
}
QApplication::clipboard()->setMimeData(mimeData);
}
void NotationInteraction::pasteSelection(const Fraction& scale)
2020-11-10 08:03:27 +01:00
{
startEdit();
2020-11-10 08:03:27 +01:00
const QMimeData* mimeData = QApplication::clipboard()->mimeData();
score()->cmdPaste(mimeData, nullptr, scale);
2020-11-10 08:03:27 +01:00
apply();
2020-11-10 08:03:27 +01:00
notifyAboutSelectionChanged();
2020-11-10 08:03:27 +01:00
}
void NotationInteraction::swapSelection()
{
if (!selection()->canCopy()) {
return;
}
Ms::Selection& selection = score()->selection();
QString mimeType = selection.mimeType();
2020-12-15 14:56:47 +01:00
if (mimeType == Ms::mimeStaffListFormat) { // determine size of clipboard selection
const QMimeData* mimeData = this->selection()->mimeData();
2020-12-15 14:56:47 +01:00
QByteArray data = mimeData ? mimeData->data(Ms::mimeStaffListFormat) : QByteArray();
Ms::XmlReader reader(data);
reader.readNextStartElement();
Fraction tickLen = Fraction(0, 1);
int stavesCount = 0;
if (reader.name() == "StaffList") {
2020-12-15 14:56:47 +01:00
tickLen = Ms::Fraction::fromTicks(reader.intAttribute("len", 0));
stavesCount = reader.intAttribute("staves", 0);
}
2020-12-15 14:56:47 +01:00
if (tickLen > Ms::Fraction(0, 1)) { // attempt to extend selection to match clipboard size
Ms::Segment* segment = selection.startSegment();
Ms::Fraction startTick = selection.tickStart() + tickLen;
Ms::Segment* segmentAfter = score()->tick2leftSegment(startTick);
int staffIndex = selection.staffStart() + stavesCount - 1;
if (staffIndex >= score()->nstaves()) {
staffIndex = score()->nstaves() - 1;
}
startTick = selection.tickStart();
2020-12-15 14:56:47 +01:00
Ms::Fraction endTick = startTick + tickLen;
selection.extendRangeSelection(segment, segmentAfter, staffIndex, startTick, endTick);
selection.update();
}
}
QByteArray currentSelectionBackup(selection.mimeData());
pasteSelection();
QMimeData* mimeData = new QMimeData();
mimeData->setData(mimeType, currentSelectionBackup);
QApplication::clipboard()->setMimeData(mimeData);
}
2020-10-13 14:06:26 +02:00
void NotationInteraction::deleteSelection()
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
startEdit();
2020-10-13 14:06:26 +02:00
score()->cmdDeleteSelection();
apply();
2020-10-13 14:06:26 +02:00
notifyAboutSelectionChanged();
2020-10-13 14:06:26 +02:00
}
2020-11-06 09:58:13 +01:00
2020-11-25 14:36:39 +01:00
void NotationInteraction::flipSelection()
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
startEdit();
2020-11-25 14:36:39 +01:00
score()->cmdFlip();
apply();
2020-11-25 14:36:39 +01:00
notifyAboutSelectionChanged();
2020-11-25 14:36:39 +01:00
}
2020-11-25 19:03:54 +01:00
void NotationInteraction::addTieToSelection()
{
startEdit();
2020-11-25 19:03:54 +01:00
if (noteInput()->isNoteInputMode()) {
score()->cmdAddTie();
} else {
score()->cmdToggleTie();
}
apply();
2020-11-25 19:03:54 +01:00
notifyAboutSelectionChanged();
2020-11-25 19:03:54 +01:00
}
void NotationInteraction::addSlurToSelection()
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
startEdit();
2020-11-25 19:03:54 +01:00
doAddSlur();
apply();
2020-11-25 19:03:54 +01:00
notifyAboutSelectionChanged();
2020-11-25 19:03:54 +01:00
}
2020-11-30 12:38:33 +01:00
void NotationInteraction::addOttavaToSelection(OttavaType type)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-11-30 12:38:33 +01:00
startEdit();
score()->cmdAddOttava(type);
apply();
notifyAboutSelectionChanged();
}
void NotationInteraction::addHairpinToSelection(HairpinType type)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-11-30 12:38:33 +01:00
startEdit();
score()->addHairpin(type);
apply();
notifyAboutSelectionChanged();
}
2020-12-09 11:28:49 +01:00
void NotationInteraction::addAccidentalToSelection(AccidentalType type)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-12-09 11:28:49 +01:00
Ms::EditData editData;
editData.view = new ScoreCallbacks();
startEdit();
score()->toggleAccidental(type, editData);
apply();
notifyAboutSelectionChanged();
}
2020-12-01 15:19:42 +01:00
void NotationInteraction::changeSelectedNotesArticulation(SymbolId articulationSymbolId)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-12-15 14:56:47 +01:00
std::vector<Ms::Note*> notes = score()->selection().noteList();
2020-12-01 15:19:42 +01:00
2020-12-14 16:07:33 +01:00
auto updateMode = notesHaveActiculation(notes, articulationSymbolId)
? Ms::ArticulationsUpdateMode::Remove : Ms::ArticulationsUpdateMode::Insert;
2020-12-14 16:07:33 +01:00
std::set<Chord*> chords;
for (Note* note: notes) {
Chord* chord = note->chord();
if (chords.find(chord) == chords.end()) {
chords.insert(chord);
}
}
startEdit();
2020-12-14 16:07:33 +01:00
for (Chord* chord: chords) {
chord->updateArticulations({ articulationSymbolId }, updateMode);
2020-12-01 15:19:42 +01:00
}
apply();
notifyAboutSelectionChanged();
}
2020-12-01 19:11:36 +01:00
void NotationInteraction::addTupletToSelectedChords(const TupletOptions& options)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-12-01 19:11:36 +01:00
startEdit();
for (ChordRest* chordRest : score()->getSelectedChordRests()) {
if (!chordRest->isGrace()) {
score()->addTuplet(chordRest, options.ratio, options.numberType, options.bracketType);
}
}
apply();
notifyAboutSelectionChanged();
}
2020-11-06 09:58:13 +01:00
void NotationInteraction::setBreaksSpawnInterval(BreaksSpawnIntervalType intervalType, int interval)
{
interval = intervalType == BreaksSpawnIntervalType::MeasuresInterval ? interval : 0;
bool afterEachSystem = intervalType == BreaksSpawnIntervalType::AfterEachSystem;
startEdit();
2020-11-06 09:58:13 +01:00
score()->addRemoveBreaks(interval, afterEachSystem);
apply();
2020-11-06 09:58:13 +01:00
notifyAboutNotationChanged();
2020-11-06 09:58:13 +01:00
}
void NotationInteraction::transpose(const TransposeOptions& options)
{
startEdit();
score()->transpose(options.mode, options.direction, options.key, options.interval,
options.needTransposeKeys, options.needTransposeChordNames, options.needTransposeDoubleSharpsFlats);
apply();
notifyAboutNotationChanged();
}
2020-11-03 17:54:25 +01:00
void NotationInteraction::swapVoices(int voiceIndex1, int voiceIndex2)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-11-03 17:54:25 +01:00
if (voiceIndex1 == voiceIndex2) {
return;
}
if (!isVoiceIndexValid(voiceIndex1) || !isVoiceIndexValid(voiceIndex2)) {
return;
}
startEdit();
2020-11-03 17:54:25 +01:00
score()->cmdExchangeVoice(voiceIndex1, voiceIndex2);
apply();
2020-11-03 17:54:25 +01:00
notifyAboutNotationChanged();
2020-11-03 17:54:25 +01:00
}
void NotationInteraction::addIntervalToSelectedNotes(int interval)
{
if (!isNotesIntervalValid(interval)) {
return;
}
std::vector<Note*> notes;
if (score()->selection().isRange()) {
for (const ChordRest* chordRest : score()->getSelectedChordRests()) {
if (chordRest->isChord()) {
const Chord* chord = toChord(chordRest);
Note* note = interval > 0 ? chord->upNote() : chord->downNote();
notes.push_back(note);
}
}
} else {
notes = score()->selection().noteList();
}
if (notes.empty()) {
return;
}
startEdit();
score()->addInterval(interval, notes);
apply();
notifyAboutSelectionChanged();
}
2020-11-30 10:19:07 +01:00
void NotationInteraction::changeSelectedNotesVoice(int voiceIndex)
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
2020-11-30 10:19:07 +01:00
if (!isVoiceIndexValid(voiceIndex)) {
return;
}
startEdit();
2020-11-30 10:19:07 +01:00
score()->changeSelectedNotesVoice(voiceIndex);
apply();
2020-11-30 10:19:07 +01:00
notifyAboutSelectionChanged();
2020-11-30 10:19:07 +01:00
}
2020-11-30 12:38:33 +01:00
void NotationInteraction::addAnchoredLineToSelectedNotes()
2020-11-30 09:34:19 +01:00
{
2020-12-23 10:56:45 +01:00
if (selection()->isNone()) {
return;
}
startEdit();
2020-11-30 12:38:33 +01:00
score()->addNoteLine();
apply();
2020-11-30 09:34:19 +01:00
notifyAboutSelectionChanged();
2020-11-03 17:54:25 +01:00
}
2020-12-08 19:37:10 +01:00
void NotationInteraction::addText(TextType type)
{
if (!scoreHasMeasure()) {
LOGE() << "Need to create measure";
return;
}
if (m_noteInput->isNoteInputMode()) {
m_noteInput->endNoteInput();
}
startEdit();
2020-12-15 14:56:47 +01:00
Ms::TextBase* textBox = score()->addText(type);
2020-12-08 19:37:10 +01:00
apply();
if (textBox) {
select({ textBox }, SelectType::SINGLE);
startEditText(textBox, QPointF());
}
notifyAboutSelectionChanged();
}
bool NotationInteraction::needEndTextEditing(const std::vector<Element*>& newSelectedElements) const
{
if (!isTextEditingStarted()) {
return false;
}
if (newSelectedElements.empty()) {
return false;
}
if (newSelectedElements.size() > 1) {
return true;
}
return newSelectedElements.front() != m_textEditData.element;
}