/* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2008 Guillaume Laurent , Chris Cannam , Richard Bown The moral rights of Guillaume Laurent, Chris Cannam, and Richard Bown to claim authorship of this work have been asserted. 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 "RemapInstrumentDialog.h" #include "misc/Strings.h" #include "base/Device.h" #include "base/Instrument.h" #include "base/MidiDevice.h" #include "base/SoftSynthDevice.h" #include "base/Studio.h" #include "commands/studio/ModifyDeviceMappingCommand.h" #include "commands/studio/ModifyInstrumentMappingCommand.h" #include "document/MultiViewCommandHistory.h" #include "document/RosegardenGUIDoc.h" #include #include #include #include #include #include #include #include #include #include namespace Rosegarden { RemapInstrumentDialog::RemapInstrumentDialog(TQWidget *parent, RosegardenGUIDoc *doc): KDialogBase(parent, "", true, i18n("Remap Instrument assigments..."), Ok | Apply | Cancel), m_doc(doc) { TQVBox *vBox = makeVBoxMainWidget(); m_buttonGroup = new TQButtonGroup(1, TQt::Horizontal, i18n("Device or Instrument"), vBox); new TQLabel(i18n("Remap Tracks by all Instruments on a Device or by single Instrument"), m_buttonGroup); m_deviceButton = new TQRadioButton(i18n("Device"), m_buttonGroup); m_instrumentButton = new TQRadioButton(i18n("Instrument"), m_buttonGroup); connect(m_buttonGroup, TQ_SIGNAL(released(int)), this, TQ_SLOT(slotRemapReleased(int))); TQGroupBox *groupBox = new TQGroupBox(2, TQt::Horizontal, i18n("Choose Source and Destination"), vBox); new TQLabel(i18n("From"), groupBox); new TQLabel(i18n("To"), groupBox); m_fromCombo = new KComboBox(groupBox); m_toCombo = new KComboBox(groupBox); m_buttonGroup->setButton(0); populateCombo(0); } void RemapInstrumentDialog::populateCombo(int id) { m_fromCombo->clear(); m_toCombo->clear(); Studio *studio = &m_doc->getStudio(); if (id == 0) { DeviceList *devices = studio->getDevices(); DeviceListIterator it; m_devices.clear(); for (it = devices->begin(); it != devices->end(); it++) { MidiDevice *md = dynamic_cast(*it); if (md) { if (md->getDirection() == MidiDevice::Play) { m_devices.push_back(*it); m_fromCombo->insertItem(strtoqstr((*it)->getName())); m_toCombo->insertItem(strtoqstr((*it)->getName())); } } else { SoftSynthDevice *sd = dynamic_cast(*it); if (sd) { m_devices.push_back(*it); m_fromCombo->insertItem(strtoqstr((*it)->getName())); m_toCombo->insertItem(strtoqstr((*it)->getName())); } } } if (m_devices.size() == 0) { m_fromCombo->insertItem(i18n("")); m_toCombo->insertItem(i18n("")); } } else { m_instruments = studio->getPresentationInstruments(); InstrumentList::iterator it = m_instruments.begin(); for (; it != m_instruments.end(); it++) { m_fromCombo->insertItem(strtoqstr((*it)->getPresentationName())); m_toCombo->insertItem(strtoqstr((*it)->getPresentationName())); } } } void RemapInstrumentDialog::slotRemapReleased(int id) { populateCombo(id); } void RemapInstrumentDialog::slotOk() { slotApply(); accept(); } void RemapInstrumentDialog::slotApply() { if (m_buttonGroup->id(m_buttonGroup->selected()) == 0) // devices { ModifyDeviceMappingCommand *command = new ModifyDeviceMappingCommand (m_doc, m_devices[m_fromCombo->currentItem()]->getId(), m_devices[m_toCombo->currentItem()]->getId()); addCommandToHistory(command); } else // instruments { ModifyInstrumentMappingCommand *command = new ModifyInstrumentMappingCommand (m_doc, m_instruments[m_fromCombo->currentItem()]->getId(), m_instruments[m_toCombo->currentItem()]->getId()); addCommandToHistory(command); } emit applyClicked(); } void RemapInstrumentDialog::addCommandToHistory(KCommand *command) { getCommandHistory()->addCommand(command); } MultiViewCommandHistory* RemapInstrumentDialog::getCommandHistory() { return m_doc->getCommandHistory(); } } #include "RemapInstrumentDialog.moc"