/* -*- 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. 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 "SimpleEventEditDialog.h" #include #include "base/BaseProperties.h" #include "base/Event.h" #include "base/MidiTypes.h" #include "base/NotationTypes.h" #include "document/RosegardenGUIDoc.h" #include "gui/editors/guitar/Chord.h" #include "misc/Strings.h" #include "PitchDialog.h" #include "TimeDialog.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Rosegarden { SimpleEventEditDialog::SimpleEventEditDialog(TQWidget *parent, RosegardenGUIDoc *doc, const Event &event, bool inserting) : KDialogBase(parent, 0, true, i18n(inserting ? "Insert Event" : "Edit Event"), Ok | Cancel), m_event(event), m_doc(doc), m_type(event.getType()), m_absoluteTime(event.getAbsoluteTime()), m_duration(event.getDuration()), m_modified(false) { TQVBox *vbox = makeVBoxMainWidget(); TQGroupBox *groupBox = new TQGroupBox (1, Qt::Horizontal, i18n("Event Properties"), vbox); TQFrame *frame = new TQFrame(groupBox); TQGridLayout *tqlayout = new TQGridLayout(frame, 7, 3, 5, 5); tqlayout->addWidget(new TQLabel(i18n("Event type:"), frame), 0, 0); if (inserting) { m_typeLabel = 0; m_typeCombo = new KComboBox(frame); tqlayout->addWidget(m_typeCombo, 0, 1); m_typeCombo->insertItem(strtoqstr(Note::EventType)); m_typeCombo->insertItem(strtoqstr(Controller::EventType)); m_typeCombo->insertItem(strtoqstr(KeyPressure::EventType)); m_typeCombo->insertItem(strtoqstr(ChannelPressure::EventType)); m_typeCombo->insertItem(strtoqstr(ProgramChange::EventType)); m_typeCombo->insertItem(strtoqstr(SystemExclusive::EventType)); m_typeCombo->insertItem(strtoqstr(PitchBend::EventType)); m_typeCombo->insertItem(strtoqstr(Indication::EventType)); m_typeCombo->insertItem(strtoqstr(Text::EventType)); m_typeCombo->insertItem(strtoqstr(Note::EventRestType)); m_typeCombo->insertItem(strtoqstr(Clef::EventType)); m_typeCombo->insertItem(strtoqstr(::Rosegarden::Key::EventType)); m_typeCombo->insertItem(strtoqstr(Guitar::Chord::EventType)); // Connect up the combos // connect(m_typeCombo, TQT_SIGNAL(activated(int)), TQT_SLOT(slotEventTypeChanged(int))); } else { m_typeCombo = 0; m_typeLabel = new TQLabel(frame); tqlayout->addWidget(m_typeLabel, 0, 1); } m_timeLabel = new TQLabel(i18n("Absolute time:"), frame); tqlayout->addWidget(m_timeLabel, 1, 0); m_timeSpinBox = new TQSpinBox(INT_MIN, INT_MAX, Note(Note::Shortest).getDuration(), frame); m_timeEditButton = new TQPushButton("edit", frame); tqlayout->addWidget(m_timeSpinBox, 1, 1); tqlayout->addWidget(m_timeEditButton, 1, 2); connect(m_timeSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotAbsoluteTimeChanged(int))); connect(m_timeEditButton, TQT_SIGNAL(released()), TQT_SLOT(slotEditAbsoluteTime())); m_durationLabel = new TQLabel(i18n("Duration:"), frame); tqlayout->addWidget(m_durationLabel, 2, 0); m_durationSpinBox = new TQSpinBox(0, INT_MAX, Note(Note::Shortest).getDuration(), frame); m_durationEditButton = new TQPushButton("edit", frame); tqlayout->addWidget(m_durationSpinBox, 2, 1); tqlayout->addWidget(m_durationEditButton, 2, 2); connect(m_durationSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotDurationChanged(int))); connect(m_durationEditButton, TQT_SIGNAL(released()), TQT_SLOT(slotEditDuration())); m_pitchLabel = new TQLabel(i18n("Pitch:"), frame); tqlayout->addWidget(m_pitchLabel, 3, 0); m_pitchSpinBox = new TQSpinBox(frame); m_pitchEditButton = new TQPushButton("edit", frame); tqlayout->addWidget(m_pitchSpinBox, 3, 1); tqlayout->addWidget(m_pitchEditButton, 3, 2); connect(m_pitchSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotPitchChanged(int))); connect(m_pitchEditButton, TQT_SIGNAL(released()), TQT_SLOT(slotEditPitch())); m_pitchSpinBox->setMinValue(MidiMinValue); m_pitchSpinBox->setMaxValue(MidiMaxValue); m_controllerLabel = new TQLabel(i18n("Controller name:"), frame); m_controllerLabelValue = new TQLabel(i18n(""), frame); m_controllerLabelValue->setAlignment(TQLabel::AlignRight); tqlayout->addWidget(m_controllerLabel, 4, 0); tqlayout->addWidget(m_controllerLabelValue, 4, 1); m_velocityLabel = new TQLabel(i18n("Velocity:"), frame); tqlayout->addWidget(m_velocityLabel, 5, 0); m_velocitySpinBox = new TQSpinBox(frame); tqlayout->addWidget(m_velocitySpinBox, 5, 1); connect(m_velocitySpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotVelocityChanged(int))); m_velocitySpinBox->setMinValue(MidiMinValue); m_velocitySpinBox->setMaxValue(MidiMaxValue); m_metaLabel = new TQLabel(i18n("Meta string:"), frame); tqlayout->addWidget(m_metaLabel, 6, 0); m_metaEdit = new TQLineEdit(frame); tqlayout->addWidget(m_metaEdit, 6, 1); m_sysexLoadButton = new TQPushButton(i18n("Load data"), frame); tqlayout->addWidget(m_sysexLoadButton, 6, 2); m_sysexSaveButton = new TQPushButton(i18n("Save data"), frame); tqlayout->addWidget(m_sysexSaveButton, 4, 2); connect(m_metaEdit, TQT_SIGNAL(textChanged(const TQString &)), TQT_SLOT(slotMetaChanged(const TQString &))); connect(m_sysexLoadButton, TQT_SIGNAL(released()), TQT_SLOT(slotSysexLoad())); connect(m_sysexSaveButton, TQT_SIGNAL(released()), TQT_SLOT(slotSysexSave())); m_notationGroupBox = new TQGroupBox (1, Qt::Horizontal, i18n("Notation Properties"), vbox); frame = new TQFrame(m_notationGroupBox); tqlayout = new TQGridLayout(frame, 3, 3, 5, 5); m_lockNotationValues = new TQCheckBox(i18n("Lock to changes in performed values"), frame); tqlayout->addMultiCellWidget(m_lockNotationValues, 0, 0, 0, 2); m_lockNotationValues->setChecked(true); connect(m_lockNotationValues, TQT_SIGNAL(released()), TQT_SLOT(slotLockNotationChanged())); m_notationTimeLabel = new TQLabel(i18n("Notation time:"), frame); tqlayout->addWidget(m_notationTimeLabel, 1, 0); m_notationTimeSpinBox = new TQSpinBox(INT_MIN, INT_MAX, Note(Note::Shortest).getDuration(), frame); m_notationTimeEditButton = new TQPushButton("edit", frame); tqlayout->addWidget(m_notationTimeSpinBox, 1, 1); tqlayout->addWidget(m_notationTimeEditButton, 1, 2); connect(m_notationTimeSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotNotationAbsoluteTimeChanged(int))); connect(m_notationTimeEditButton, TQT_SIGNAL(released()), TQT_SLOT(slotEditNotationAbsoluteTime())); m_notationDurationLabel = new TQLabel(i18n("Notation duration:"), frame); tqlayout->addWidget(m_notationDurationLabel, 2, 0); m_notationDurationSpinBox = new TQSpinBox(0, INT_MAX, Note(Note::Shortest).getDuration(), frame); m_notationDurationEditButton = new TQPushButton("edit", frame); tqlayout->addWidget(m_notationDurationSpinBox, 2, 1); tqlayout->addWidget(m_notationDurationEditButton, 2, 2); connect(m_notationDurationSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotNotationDurationChanged(int))); connect(m_notationDurationEditButton, TQT_SIGNAL(released()), TQT_SLOT(slotEditNotationDuration())); setupForEvent(); } void SimpleEventEditDialog::setupForEvent() { using BaseProperties::PITCH; using BaseProperties::VELOCITY; if (m_typeCombo) { m_typeCombo->blockSignals(true); } m_timeSpinBox->blockSignals(true); m_notationTimeSpinBox->blockSignals(true); m_durationSpinBox->blockSignals(true); m_notationDurationSpinBox->blockSignals(true); m_pitchSpinBox->blockSignals(true); m_velocitySpinBox->blockSignals(true); m_metaEdit->blockSignals(true); m_pitchSpinBox->setMinValue(MidiMinValue); m_pitchSpinBox->setMaxValue(MidiMaxValue); // Some common settings // m_durationLabel->setText(i18n("Absolute time:")); m_timeLabel->show(); m_timeSpinBox->show(); m_timeEditButton->show(); m_timeSpinBox->setValue(m_event.getAbsoluteTime()); m_durationLabel->setText(i18n("Duration:")); m_durationLabel->show(); m_durationSpinBox->show(); m_durationEditButton->show(); m_durationSpinBox->setValue(m_event.getDuration()); m_notationGroupBox->hide(); m_lockNotationValues->setChecked(true); if (m_typeLabel) m_typeLabel->setText(strtoqstr(m_event.getType())); m_absoluteTime = m_event.getAbsoluteTime(); m_notationAbsoluteTime = m_event.getNotationAbsoluteTime(); m_duration = m_event.getDuration(); m_notationDuration = m_event.getNotationDuration(); m_sysexLoadButton->hide(); m_sysexSaveButton->hide(); if (m_type == Note::EventType) { m_notationGroupBox->show(); m_notationTimeSpinBox->setValue(m_notationAbsoluteTime); m_notationDurationSpinBox->setValue(m_notationDuration); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Note pitch:")); m_pitchSpinBox->show(); m_pitchEditButton->show(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->show(); m_velocityLabel->setText(i18n("Note velocity:")); m_velocitySpinBox->show(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get(PITCH)); } catch (Event::NoData) { m_pitchSpinBox->setValue(60); } try { m_velocitySpinBox->setValue(m_event.get(VELOCITY)); } catch (Event::NoData) { m_velocitySpinBox->setValue(100); } if (m_typeCombo) m_typeCombo->setCurrentItem(0); } else if (m_type == Controller::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Controller number:")); m_pitchSpinBox->show(); m_pitchEditButton->hide(); m_controllerLabel->show(); m_controllerLabelValue->show(); m_controllerLabel->setText(i18n("Controller name:")); m_velocityLabel->show(); m_velocityLabel->setText(i18n("Controller value:")); m_velocitySpinBox->show(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get (Controller::NUMBER)); } catch (Event::NoData) { m_pitchSpinBox->setValue(0); } try { m_velocitySpinBox->setValue(m_event.get (Controller::VALUE)); } catch (Event::NoData) { m_velocitySpinBox->setValue(0); } if (m_typeCombo) m_typeCombo->setCurrentItem(1); } else if (m_type == KeyPressure::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Key pitch:")); m_pitchSpinBox->show(); m_pitchEditButton->show(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->show(); m_velocityLabel->setText(i18n("Key pressure:")); m_velocitySpinBox->show(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get (KeyPressure::PITCH)); } catch (Event::NoData) { m_pitchSpinBox->setValue(0); } try { m_velocitySpinBox->setValue(m_event.get (KeyPressure::PRESSURE)); } catch (Event::NoData) { m_velocitySpinBox->setValue(0); } if (m_typeCombo) m_typeCombo->setCurrentItem(2); } else if (m_type == ChannelPressure::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Channel pressure:")); m_pitchSpinBox->show(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get (ChannelPressure::PRESSURE)); } catch (Event::NoData) { m_pitchSpinBox->setValue(0); } if (m_typeCombo) m_typeCombo->setCurrentItem(3); } else if (m_type == ProgramChange::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchSpinBox->setMinValue(MidiMinValue + 1); m_pitchSpinBox->setMaxValue(MidiMaxValue + 1); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Program change:")); m_pitchSpinBox->show(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get (ProgramChange::PROGRAM) + 1); } catch (Event::NoData) { m_pitchSpinBox->setValue(0); } if (m_typeCombo) m_typeCombo->setCurrentItem(4); } else if (m_type == SystemExclusive::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->show(); m_controllerLabelValue->show(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->show(); m_metaEdit->show(); m_sysexLoadButton->show(); m_sysexSaveButton->show(); m_controllerLabel->setText(i18n("Data length:")); m_metaLabel->setText(i18n("Data:")); try { SystemExclusive sysEx(m_event); m_controllerLabelValue->setText(TQString("%1"). arg(sysEx.getRawData().length())); m_metaEdit->setText(strtoqstr(sysEx.getHexData())); } catch (...) { m_controllerLabelValue->setText("0"); } if (m_typeCombo) m_typeCombo->setCurrentItem(5); } else if (m_type == PitchBend::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->show(); m_pitchLabel->setText(i18n("Pitchbend MSB:")); m_pitchSpinBox->show(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->show(); m_velocityLabel->setText(i18n("Pitchbend LSB:")); m_velocitySpinBox->show(); m_metaLabel->hide(); m_metaEdit->hide(); try { m_pitchSpinBox->setValue(m_event.get (PitchBend::MSB)); } catch (Event::NoData) { m_pitchSpinBox->setValue(0); } try { m_velocitySpinBox->setValue(m_event.get (PitchBend::LSB)); } catch (Event::NoData) { m_velocitySpinBox->setValue(0); } if (m_typeCombo) m_typeCombo->setCurrentItem(6); } else if (m_type == Indication::EventType) { m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->show(); m_metaEdit->show(); m_metaLabel->setText(i18n("Indication:")); try { Indication ind(m_event); m_metaEdit->setText(strtoqstr(ind.getIndicationType())); m_durationSpinBox->setValue(ind.getIndicationDuration()); } catch (...) { m_metaEdit->setText(i18n("")); } if (m_typeCombo) m_typeCombo->setCurrentItem(7); } else if (m_type == Text::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->show(); m_controllerLabelValue->show(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->show(); m_metaEdit->show(); m_controllerLabel->setText(i18n("Text type:")); m_metaLabel->setText(i18n("Text:")); // get the text event try { Text text(m_event); m_controllerLabelValue->setText(strtoqstr(text.getTextType())); m_metaEdit->setText(strtoqstr(text.getText())); } catch (...) { m_controllerLabelValue->setText(i18n("")); m_metaEdit->setText(i18n("")); } if (m_typeCombo) m_typeCombo->setCurrentItem(8); } else if (m_type == Note::EventRestType) { m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); if (m_typeCombo) m_typeCombo->setCurrentItem(9); } else if (m_type == Clef::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->show(); m_controllerLabelValue->show(); m_controllerLabel->setText(i18n("Clef type:")); try { Clef clef(m_event); m_controllerLabelValue->setText(strtoqstr(clef.getClefType())); } catch (...) { m_controllerLabelValue->setText(i18n("")); } m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); if (m_typeCombo) m_typeCombo->setCurrentItem(10); } else if (m_type == ::Rosegarden::Key::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->show(); m_controllerLabelValue->show(); m_controllerLabel->setText(i18n("Key name:")); try { ::Rosegarden::Key key(m_event); m_controllerLabelValue->setText(strtoqstr(key.getName())); } catch (...) { m_controllerLabelValue->setText(i18n("")); } m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); if (m_typeCombo) m_typeCombo->setCurrentItem(11); } else if (m_type == Guitar::Chord::EventType) { m_durationLabel->hide(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->hide(); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); // m_controllerLabel->setText(i18n("Text type:")); // m_metaLabel->setText(i18n("Chord:")); // get the fingering event try { Guitar::Chord chord( m_event ); } catch (...) { // m_controllerLabelValue->setText(i18n("")); // m_metaEdit->setText(i18n("")); } if (m_typeCombo) m_typeCombo->setCurrentItem(12); } else { m_durationLabel->setText(i18n("Unsupported event type:")); m_durationLabel->show(); m_durationSpinBox->hide(); m_durationEditButton->hide(); m_pitchLabel->hide(); m_pitchSpinBox->hide(); m_pitchEditButton->hide(); m_controllerLabel->hide(); m_controllerLabelValue->show(); m_controllerLabelValue->setText(strtoqstr(m_type)); m_velocityLabel->hide(); m_velocitySpinBox->hide(); m_metaLabel->hide(); m_metaEdit->hide(); if (m_typeCombo) m_typeCombo->setEnabled(false); } if (m_typeCombo) m_typeCombo->blockSignals(false); m_timeSpinBox->blockSignals(false); m_notationTimeSpinBox->blockSignals(false); m_durationSpinBox->blockSignals(false); m_notationDurationSpinBox->blockSignals(false); m_pitchSpinBox->blockSignals(false); m_velocitySpinBox->blockSignals(false); m_metaEdit->blockSignals(false); slotLockNotationChanged(); } Event SimpleEventEditDialog::getEvent() { bool useSeparateNotationValues = (m_event.getType() == Note::EventType); if (m_typeCombo) { int subordering = 0; if (m_type == Indication::EventType) { subordering = Indication::EventSubOrdering; } else if (m_type == Clef::EventType) { subordering = Clef::EventSubOrdering; } else if (m_type == ::Rosegarden::Key::EventType) { subordering = ::Rosegarden::Key::EventSubOrdering; } else if (m_type == Text::EventType) { subordering = Text::EventSubOrdering; } else if (m_type == Note::EventRestType) { subordering = Note::EventRestSubOrdering; } else if (m_type == PitchBend::EventType) { subordering = PitchBend::EventSubOrdering; } else if (m_type == Controller::EventType) { subordering = Controller::EventSubOrdering; } else if (m_type == KeyPressure::EventType) { subordering = KeyPressure::EventSubOrdering; } else if (m_type == ChannelPressure::EventType) { subordering = ChannelPressure::EventSubOrdering; } else if (m_type == ProgramChange::EventType) { subordering = ProgramChange::EventSubOrdering; } else if (m_type == SystemExclusive::EventType) { subordering = SystemExclusive::EventSubOrdering; } m_event = Event(m_type, m_absoluteTime, m_duration, subordering, (useSeparateNotationValues ? m_notationAbsoluteTime : m_absoluteTime), (useSeparateNotationValues ? m_notationDuration : m_duration)); // ensure these are set on m_event correctly slotPitchChanged(m_pitchSpinBox->value()); slotVelocityChanged(m_velocitySpinBox->value()); } Event event(m_event, m_absoluteTime, m_duration, m_event.getSubOrdering(), (useSeparateNotationValues ? m_notationAbsoluteTime : m_absoluteTime), (useSeparateNotationValues ? m_notationDuration : m_duration)); // Values from the pitch and velocity spin boxes should already // have been set on m_event (and thus on event) by slotPitchChanged // and slotVelocityChanged. Absolute time and duration were set in // the event ctor above; that just leaves the meta values. if (m_type == Indication::EventType) { event.set(Indication::IndicationTypePropertyName, qstrtostr(m_metaEdit->text())); } else if (m_type == Text::EventType) { event.set(Text::TextTypePropertyName, qstrtostr(m_controllerLabelValue->text())); event.set(Text::TextPropertyName, qstrtostr(m_metaEdit->text())); } else if (m_type == Clef::EventType) { event.set(Clef::ClefPropertyName, qstrtostr(m_controllerLabelValue->text())); } else if (m_type == ::Rosegarden::Key::EventType) { event.set(::Rosegarden::Key::KeyPropertyName, qstrtostr(m_controllerLabelValue->text())); } else if (m_type == SystemExclusive::EventType) { event.set(SystemExclusive::DATABLOCK, qstrtostr(m_metaEdit->text())); } return event; } void SimpleEventEditDialog::slotEventTypeChanged(int value) { m_type = qstrtostr(m_typeCombo->text(value)); m_modified = true; if (m_type != m_event.getType()) Event m_event(m_type, m_absoluteTime, m_duration); setupForEvent(); // update whatever pitch and velocity correspond to if (!m_pitchSpinBox->isHidden()) slotPitchChanged(m_pitchSpinBox->value()); if (!m_velocitySpinBox->isHidden()) slotVelocityChanged(m_velocitySpinBox->value()); } void SimpleEventEditDialog::slotAbsoluteTimeChanged(int value) { m_absoluteTime = value; if (m_notationGroupBox->isHidden()) { m_notationAbsoluteTime = value; } else if (m_lockNotationValues->isChecked()) { m_notationAbsoluteTime = value; m_notationTimeSpinBox->setValue(value); } m_modified = true; } void SimpleEventEditDialog::slotNotationAbsoluteTimeChanged(int value) { m_notationAbsoluteTime = value; m_modified = true; } void SimpleEventEditDialog::slotDurationChanged(int value) { m_duration = value; if (m_notationGroupBox->isHidden()) { m_notationDuration = value; } else if (m_lockNotationValues->isChecked()) { m_notationDuration = value; m_notationDurationSpinBox->setValue(value); } m_modified = true; } void SimpleEventEditDialog::slotNotationDurationChanged(int value) { m_notationDuration = value; m_modified = true; } void SimpleEventEditDialog::slotPitchChanged(int value) { m_modified = true; if (m_type == Note::EventType) { m_event.set(BaseProperties::PITCH, value); } else if (m_type == Controller::EventType) { m_event.set(Controller::NUMBER, value); } else if (m_type == KeyPressure::EventType) { m_event.set(KeyPressure::PITCH, value); } else if (m_type == ChannelPressure::EventType) { m_event.set(ChannelPressure::PRESSURE, value); } else if (m_type == ProgramChange::EventType) { if (value < 1) value = 1; m_event.set(ProgramChange::PROGRAM, value - 1); } else if (m_type == PitchBend::EventType) { m_event.set(PitchBend::MSB, value); } //!!!??? sysex? } void SimpleEventEditDialog::slotVelocityChanged(int value) { m_modified = true; if (m_type == Note::EventType) { m_event.set(BaseProperties::VELOCITY, value); } else if (m_type == Controller::EventType) { m_event.set(Controller::VALUE, value); } else if (m_type == KeyPressure::EventType) { m_event.set(KeyPressure::PRESSURE, value); } else if (m_type == PitchBend::EventType) { m_event.set(PitchBend::LSB, value); } } void SimpleEventEditDialog::slotMetaChanged(const TQString &) { m_modified = true; } void SimpleEventEditDialog::slotLockNotationChanged() { bool enable = !m_lockNotationValues->isChecked(); m_notationTimeSpinBox->setEnabled(enable); m_notationTimeEditButton->setEnabled(enable); m_notationDurationSpinBox->setEnabled(enable); m_notationDurationEditButton->setEnabled(enable); } void SimpleEventEditDialog::slotEditAbsoluteTime() { TimeDialog dialog(this, i18n("Edit Event Time"), &m_doc->getComposition(), m_timeSpinBox->value(), true); if (dialog.exec() == TQDialog::Accepted) { m_timeSpinBox->setValue(dialog.getTime()); } } void SimpleEventEditDialog::slotEditNotationAbsoluteTime() { TimeDialog dialog(this, i18n("Edit Event Notation Time"), &m_doc->getComposition(), m_notationTimeSpinBox->value(), true); if (dialog.exec() == TQDialog::Accepted) { m_notationTimeSpinBox->setValue(dialog.getTime()); } } void SimpleEventEditDialog::slotEditDuration() { TimeDialog dialog(this, i18n("Edit Duration"), &m_doc->getComposition(), m_timeSpinBox->value(), m_durationSpinBox->value(), true); if (dialog.exec() == TQDialog::Accepted) { m_durationSpinBox->setValue(dialog.getTime()); } } void SimpleEventEditDialog::slotEditNotationDuration() { TimeDialog dialog(this, i18n("Edit Notation Duration"), &m_doc->getComposition(), m_notationTimeSpinBox->value(), m_notationDurationSpinBox->value(), true); if (dialog.exec() == TQDialog::Accepted) { m_notationDurationSpinBox->setValue(dialog.getTime()); } } void SimpleEventEditDialog::slotEditPitch() { PitchDialog dialog(this, i18n("Edit Pitch"), m_pitchSpinBox->value()); if (dialog.exec() == TQDialog::Accepted) { m_pitchSpinBox->setValue(dialog.getPitch()); } } void SimpleEventEditDialog::slotSysexLoad() { TQString path = KFileDialog::getOpenFileName(":SYSTEMEXCLUSIVE", i18n("*.syx|System exclusive files (*.syx)"), this, i18n("Load System Exclusive data in File")); if (path.isNull()) return ; TQFile file(path); file.open(IO_ReadOnly); std::string s; unsigned char c; while (((c = (unsigned char)file.getch()) != 0xf0) && (file.status() == IO_Ok)) ; while ( file.status() == IO_Ok ) { s += c; if (c == 0xf7 ) break; c = (unsigned char)file.getch(); } file.close(); m_metaEdit->setText(strtoqstr(SystemExclusive::toHex(s))); } void SimpleEventEditDialog::slotSysexSave() { TQString path = KFileDialog::getSaveFileName(":SYSTEMEXCLUSIVE", i18n("*.syx|System exclusive files (*.syx)"), this, i18n("Save System Exclusive data to...")); if (path.isNull()) return ; TQFile file(path); file.open(IO_WriteOnly); SystemExclusive sysEx(m_event); file.writeBlock(sysEx.getRawData().c_str(), sysEx.getRawData().length()); file.close(); } } #include "SimpleEventEditDialog.moc"