/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rosegarden A MIDI and audio sequencer and musical notation editor. Copyright 2000-2021 the Rosegarden development team. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #include "InsertTriggerNoteCommand.h" #include "base/Event.h" #include "base/NotationTypes.h" #include "base/Segment.h" #include "base/SegmentNotationHelper.h" #include "base/Composition.h" #include "base/TriggerSegment.h" #include "document/BasicCommand.h" #include "gui/editors/notation/NotationProperties.h" #include "gui/editors/notation/NoteStyleFactory.h" #include "base/BaseProperties.h" #include "misc/Strings.h" namespace Rosegarden { using namespace BaseProperties; InsertTriggerNoteCommand::InsertTriggerNoteCommand(Segment &segment, timeT time, timeT duration, int pitch, int velocity, NoteStyleName noteStyle, TriggerSegmentId id, bool retune, std::string timeAdjust, Mark mark) : BasicCommand(tr("Insert Trigger Note"), segment, time, time + duration), m_time(time), m_duration(duration), m_pitch(pitch), m_velocity(velocity), m_noteStyle(noteStyle), m_id(id), m_retune(retune), m_timeAdjust(timeAdjust), m_mark(mark) { // nothing } InsertTriggerNoteCommand::~InsertTriggerNoteCommand() { // nothing } void InsertTriggerNoteCommand::modifySegment() { // Insert via a model event, so as to apply the note style. // This is a subset of the work done by NoteInsertionCommand Event *e = new Event(Note::EventType, m_time, m_duration); // Could e->set(PITCH, m_pitch); e->set(VELOCITY, m_velocity); e->set(TRIGGER_EXPAND, true); if (m_noteStyle != NoteStyleFactory::DefaultStyle) { e->set(NotationProperties::NOTE_STYLE, qstrtostr(m_noteStyle)); } Segment &s(getSegment()); Segment::iterator i = s.insert(e); SegmentNotationHelper(s).makeThisNoteViable(i); s.normalizeRests(m_time, m_time + m_duration); // Add these properties only after the note is possibly // split-and-tied. e->set(TRIGGER_SEGMENT_ID, m_id); e->set(TRIGGER_SEGMENT_RETUNE, m_retune); e->set(TRIGGER_SEGMENT_ADJUST_TIMES, m_timeAdjust); if (m_mark != Marks::NoMark) { Marks::addMark(*e, m_mark, true); } TriggerSegmentRec *rec = s.getComposition()->getTriggerSegmentRec(m_id); if (rec) rec->updateReferences(); } }