/* -*- 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-2011 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 "AddMarkCommand.h" #include "misc/Strings.h" #include "base/Selection.h" #include "document/BasicSelectionCommand.h" #include "document/CommandRegistry.h" #include "base/BaseProperties.h" #include namespace Rosegarden { using namespace BaseProperties; QString AddMarkCommand::getGlobalName(Mark markType) { QString m = strtoqstr(markType); // Gosh, lots of collisions if (markType == Marks::Sforzando) m = tr("S&forzando"); else if (markType == Marks::Staccato) m = tr("Sta&ccato"); else if (markType == Marks::Rinforzando) m = tr("R&inforzando"); else if (markType == Marks::Tenuto) m = tr("T&enuto"); else if (markType == Marks::Trill) m = tr("Tri&ll"); else if (markType == Marks::LongTrill) m = tr("Trill &with Line"); else if (markType == Marks::TrillLine) m = tr("Trill Line"); else if (markType == Marks::Turn) m = tr("&Turn"); else if (markType == Marks::Accent) m = tr("&Accent"); else if (markType == Marks::Staccatissimo) m = tr("&Staccatissimo"); else if (markType == Marks::Marcato) m = tr("&Marcato"); else if (markType == Marks::Open) m = tr("&Open"); else if (markType == Marks::Stopped) m = tr("&Stopped"); else if (markType == Marks::Harmonic) m = tr("&Harmonic"); else if (markType == Marks::Pause) m = tr("&Pause"); else if (markType == Marks::UpBow) m = tr("&Up-Bow"); else if (markType == Marks::DownBow) m = tr("&Down-Bow"); else if (markType == Marks::Mordent) m = tr("Mo&rdent"); else if (markType == Marks::MordentInverted) m = tr("Inverted Mordent"); else if (markType == Marks::MordentLong) m = tr("Long Mordent"); else if (markType == Marks::MordentLongInverted) m = tr("Lon&g Inverted Mordent"); else m = tr("&%1%2").arg(m[0].toUpper()).arg(m.right(m.length() - 1)); // FIXME: That last i18n has very little chance of working, unless // by some miracle the exact same string was translated elsewhere already // but we'll leave it as a warning m = tr("Add %1").arg(m); return m; } void AddMarkCommand::registerCommand(CommandRegistry *r) { std::vector marks(Marks::getStandardMarks()); for (size_t i = 0; i < marks.size(); ++i) { Mark mark = marks[i]; r->registerCommand (getActionName(mark), new ArgumentAndSelectionCommandBuilder()); } } QString AddMarkCommand::getActionName(Mark mark) { return QString("add_%1").arg(strtoqstr(mark)); } QString AddMarkCommand::getShortcut(Mark mark) { return ""; } QString AddMarkCommand::getIconName(Mark mark) { return strtoqstr(mark); } Mark AddMarkCommand::getArgument(QString actionName, CommandArgumentQuerier &) { QString pfx = "add_"; if (actionName.startsWith(pfx)) { QString remainder = actionName.right(actionName.length() - pfx.length()); return qstrtostr(remainder); } return ""; } void AddMarkCommand::modifySegment() { EventSelection::eventcontainer::iterator i; for (i = m_selection->getSegmentEvents().begin(); i != m_selection->getSegmentEvents().end(); ++i) { // If we find a note in the selection with TIED_BACKWARD set, it should // be part of a chain of tied notes. Putting the same mark on an entire // chain of notes is definitely wrong, so we ignore these events. if ((*i)->has(BaseProperties::TIED_BACKWARD)) continue; // If the selection includes rests, check whether // the mark is applicable to this event. if ((*i)->isa(Note::EventRestType) && !Marks::isApplicableToRests(m_mark)) { continue; } long n = 0; (*i)->get(MARK_COUNT, n); (*i)->set(MARK_COUNT, n + 1); (*i)->set(getMarkPropertyName(n), m_mark); } } }