/* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2008 Guillaume Laurent , Chris Cannam , Richard Bown This file is Copyright 2006 D. Michael McIntyre 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 "PresetHandlerDialog.h" #include #include #include #include "misc/Debug.h" #include "document/ConfigGroups.h" #include "CategoryElement.h" #include "PresetElement.h" #include "PresetGroup.h" #include #include #include #include #include #include #include #include #include #include #include namespace Rosegarden { PresetHandlerDialog::PresetHandlerDialog(TQWidget *parent, bool fromNotation) : KDialogBase(parent, "presethandlerdialog", true, i18n("Load track parameters preset"), Ok | Cancel, Ok), m_config(kapp->config()), m_fromNotation(fromNotation) { m_presets = new PresetGroup(); m_categories = m_presets->getCategories(); if (m_fromNotation) setCaption(i18n("Convert notation for...")); initDialog(); } PresetHandlerDialog::~PresetHandlerDialog() { // delete m_presets if (m_presets != NULL) { delete m_presets; } } void PresetHandlerDialog::initDialog() { RG_DEBUG << "PresetHandlerDialog::initDialog()" << endl; TQVBox *vBox = makeVBoxMainWidget(); TQFrame *frame = new TQFrame(vBox); TQGridLayout *layout = new TQGridLayout(frame, 6, 5, 10, 5); TQLabel *title = new TQLabel(i18n("Select preset track parameters for:"), frame); if (m_fromNotation) title->setText(i18n("Create appropriate notation for:")); TQLabel *catlabel = new TQLabel(i18n("Category"), frame); m_categoryCombo = new KComboBox(frame); TQLabel *inslabel = new TQLabel(i18n("Instrument"), frame); m_instrumentCombo = new KComboBox(frame); TQLabel *plylabel = new TQLabel(i18n("Player Ability"), frame); m_playerCombo = new KComboBox(frame); m_playerCombo->insertItem(i18n("Amateur")); m_playerCombo->insertItem(i18n("Professional")); TQGroupBox *scopeBox = new TQButtonGroup (1, TQt::Horizontal, i18n("Scope"), frame); if (m_fromNotation) { TQRadioButton *onlySelectedSegments = new TQRadioButton(i18n("Only selected segments"), scopeBox); m_convertAllSegments = new TQRadioButton(i18n("All segments in this track"), scopeBox); onlySelectedSegments->setChecked(true); } else { TQRadioButton *onlyNewSegments = new TQRadioButton(i18n("Only for new segments"), scopeBox); m_convertSegments = new TQRadioButton(i18n("Convert existing segments"), scopeBox); onlyNewSegments->setChecked(true); } layout->addMultiCellWidget(title, 0, 0, 0, 1, AlignLeft); layout->addWidget(catlabel, 1, 0, AlignRight); layout->addWidget(m_categoryCombo, 1, 1); layout->addWidget(inslabel, 2, 0, AlignRight); layout->addWidget(m_instrumentCombo, 2, 1); layout->addWidget(plylabel, 3, 0, AlignRight); layout->addWidget(m_playerCombo, 3, 1); layout->addMultiCellWidget(scopeBox, 4, 4, 0, 1, AlignLeft); populateCategoryCombo(); // try to set to same category used previously m_config->setGroup(GeneralOptionsConfigGroup); m_categoryCombo->setCurrentItem(m_config->readNumEntry("category_combo_index", 0)); // populate the instrument combo slotCategoryIndexChanged(m_categoryCombo->currentItem()); // try to set to same instrument used previously m_config->setGroup(GeneralOptionsConfigGroup); m_instrumentCombo->setCurrentItem(m_config->readNumEntry("instrument_combo_index", 0)); // set to same player used previously (this one can't fail, unlike the // others, because the contents of this combo are static) m_playerCombo->setCurrentItem(m_config->readNumEntry("player_combo_index", 0)); if (m_fromNotation){ m_convertAllSegments->setChecked(m_config->readBoolEntry("convert_all_segments", 0)); } else { m_convertSegments->setChecked(m_config->readBoolEntry("convert_segments", 0)); } connect(m_categoryCombo, TQ_SIGNAL(activated(int)), TQ_SLOT(slotCategoryIndexChanged(int))); } TQString PresetHandlerDialog::getName() { return m_instrumentCombo->currentText(); } int PresetHandlerDialog::getClef() { PresetElement p = m_categories[m_categoryCombo->currentItem()]. getPresetByIndex(m_instrumentCombo->currentItem()); return p.getClef(); } int PresetHandlerDialog::getTranspose() { PresetElement p = m_categories[m_categoryCombo->currentItem()]. getPresetByIndex(m_instrumentCombo->currentItem()); return p.getTranspose(); } int PresetHandlerDialog::getLowRange() { PresetElement p = m_categories[m_categoryCombo->currentItem()]. getPresetByIndex(m_instrumentCombo->currentItem()); // 0 == amateur // 1 == pro if (m_playerCombo->currentItem() == 0) { return p.getLowAm(); } else { return p.getLowPro(); } } int PresetHandlerDialog::getHighRange() { PresetElement p = m_categories[m_categoryCombo->currentItem()]. getPresetByIndex(m_instrumentCombo->currentItem()); // 0 == amateur // 1 == pro if (m_playerCombo->currentItem() == 0) { return p.getHighAm(); } else { return p.getHighPro(); } } bool PresetHandlerDialog::getConvertAllSegments() { if (m_fromNotation) { return m_convertAllSegments && m_convertAllSegments->isChecked(); } else { return m_convertSegments && m_convertSegments->isChecked(); } } bool PresetHandlerDialog::getConvertOnlySelectedSegments() { if (m_fromNotation) { return m_convertAllSegments && !m_convertAllSegments->isChecked(); } else { return false; } } void PresetHandlerDialog::populateCategoryCombo() { RG_DEBUG << "PresetHandlerDialog::populateCategoryCombo()" << endl; for (CategoriesContainer::iterator i = m_categories.begin(); i != m_categories.end(); ++i) { RG_DEBUG << " adding category: " << (*i).getName() << endl; m_categoryCombo->insertItem((*i).getName()); } } void PresetHandlerDialog::slotCategoryIndexChanged(int index) { RG_DEBUG << "PresetHandlerDialog::slotCategoryIndexChanged(" << index << ")" << endl; CategoryElement e = m_categories[index]; ElementContainer c = e.getPresets(); m_instrumentCombo->clear(); for (ElementContainer::iterator i = c.begin(); i != c.end(); ++i) { RG_DEBUG << " adding instrument: " << (*i).getName() << endl; m_instrumentCombo->insertItem((*i).getName()); } } void PresetHandlerDialog::slotOk() { m_config->setGroup(GeneralOptionsConfigGroup); m_config->writeEntry("category_combo_index", m_categoryCombo->currentItem()); m_config->writeEntry("instrument_combo_index", m_instrumentCombo->currentItem()); m_config->writeEntry("player_combo_index", m_playerCombo->currentItem()); if (m_fromNotation) { m_config->writeEntry("convert_all_segments", m_convertAllSegments->isChecked()); } else { m_config->writeEntry("convert_segments", m_convertSegments->isChecked()); } TQDialog::accept(); } } #include "PresetHandlerDialog.moc"